CPF/CPF.ReoGrid/Graphics/LineStyles.cs

14 lines
142 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
using System;
namespace CPF.ReoGrid.Graphics
{
public enum LineStyles : byte
{
Solid = 1,
Dash,
Dot,
DashDot,
DashDotDot
}
}