14 lines
142 B
C#
14 lines
142 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Graphics
|
|
{
|
|
public enum LineStyles : byte
|
|
{
|
|
Solid = 1,
|
|
Dash,
|
|
Dot,
|
|
DashDot,
|
|
DashDotDot
|
|
}
|
|
}
|