CPF/CPF.ReoGrid/BorderPositions.cs

24 lines
310 B
C#
Raw Normal View History

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