CPF/CPF.ReoGrid/Core/PositionAbsoluteBits.cs

16 lines
242 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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;
}
}