CPF/CPF.ReoGrid/PlainStyleFlag.cs

39 lines
749 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid
{
public enum PlainStyleFlag : long
{
None,
FontName,
FontSize,
FontStyleBold = 4L,
FontStyleItalic = 8L,
FontStyleStrikethrough = 16L,
FontStyleUnderline = 32L,
TextColor = 64L,
BackColor = 128L,
LineColor = 256L,
LineStyle = 512L,
LineWeight = 1024L,
LineStartCap = 2048L,
LineEndCap = 4096L,
HorizontalAlign = 8192L,
VerticalAlign = 16384L,
FillPatternColor = 524288L,
FillPatternStyle = 1048576L,
TextWrap = 2097152L,
Indent = 4194304L,
Padding = 8388608L,
RotationAngle = 16777216L,
FontStyleAll = 60L,
FontAll = 63L,
LineAll = 7936L,
LayoutAll = 27262976L,
AlignAll = 24576L,
FillPattern = 1572864L,
BackAll = 1572992L,
All = 28868607L
}
}