16 lines
242 B
C#
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;
|
|||
|
}
|
|||
|
}
|