43 lines
521 B
C#
43 lines
521 B
C#
![]() |
using System;
|
|||
|
|
|||
|
namespace CPF.ReoGrid
|
|||
|
{
|
|||
|
[Serializable]
|
|||
|
public struct RangeBorderInfo
|
|||
|
{
|
|||
|
public BorderPositions Pos
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return this.pos;
|
|||
|
}
|
|||
|
set
|
|||
|
{
|
|||
|
this.pos = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public RangeBorderStyle Style
|
|||
|
{
|
|||
|
get
|
|||
|
{
|
|||
|
return this.style;
|
|||
|
}
|
|||
|
set
|
|||
|
{
|
|||
|
this.style = value;
|
|||
|
}
|
|||
|
}
|
|||
|
|
|||
|
public RangeBorderInfo(BorderPositions pos, RangeBorderStyle style)
|
|||
|
{
|
|||
|
this.pos = pos;
|
|||
|
this.style = style;
|
|||
|
}
|
|||
|
|
|||
|
private BorderPositions pos;
|
|||
|
|
|||
|
private RangeBorderStyle style;
|
|||
|
}
|
|||
|
}
|