24 lines
310 B
C#
24 lines
310 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid
|
|
{
|
|
public enum BorderPositions : short
|
|
{
|
|
None,
|
|
Top,
|
|
Bottom,
|
|
Left = 4,
|
|
Right = 8,
|
|
InsideHorizontal = 16,
|
|
InsideVertical = 32,
|
|
Slash = 256,
|
|
Backslash = 512,
|
|
LeftRight = 12,
|
|
TopBottom = 3,
|
|
Outside = 15,
|
|
InsideAll = 48,
|
|
All = 63,
|
|
X = 768
|
|
}
|
|
}
|