23 lines
265 B
C#
23 lines
265 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
public enum BorderLineStyle : byte
|
|||
|
{
|
|||
|
None,
|
|||
|
Solid,
|
|||
|
Dotted,
|
|||
|
Dashed,
|
|||
|
DoubleLine,
|
|||
|
Dashed2,
|
|||
|
DashDot,
|
|||
|
DashDotDot,
|
|||
|
BoldDashDot,
|
|||
|
BoldDashDotDot,
|
|||
|
BoldDashed,
|
|||
|
BoldDotted,
|
|||
|
BoldSolid,
|
|||
|
BoldSolidStrong
|
|||
|
}
|
|||
|
}
|