CPF/CPF.ReoGrid/RangeBorderInfo.cs

43 lines
521 B
C#
Raw Normal View History

2024-06-24 10:15:59 +08:00
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;
}
}