CPF/CPF.ReoGrid/Core/PositionAbsoluteBits.cs
2024-06-24 10:15:59 +08:00

16 lines
242 B
C#

using System;
namespace CPF.ReoGrid.Core
{
internal static class PositionAbsoluteBits
{
internal const byte StartRow = 1;
internal const byte StartCol = 2;
internal const byte EndRow = 4;
internal const byte EndCol = 8;
}
}