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; } }