41 lines
660 B
C#
41 lines
660 B
C#
using System;
|
|
|
|
namespace CPF.ReoGrid.Core
|
|
{
|
|
[Serializable]
|
|
internal class ReoGridVBorder : BaseBorder
|
|
{
|
|
internal VBorderOwnerPosition Pos
|
|
{
|
|
get
|
|
{
|
|
return this.pos;
|
|
}
|
|
set
|
|
{
|
|
this.pos = value;
|
|
}
|
|
}
|
|
|
|
public static ReoGridVBorder Clone(ReoGridVBorder source)
|
|
{
|
|
ReoGridVBorder result;
|
|
if (source != null)
|
|
{
|
|
ReoGridVBorder reoGridVBorder = new ReoGridVBorder();
|
|
reoGridVBorder.Span = source.Span;
|
|
reoGridVBorder.pos = source.Pos;
|
|
result = reoGridVBorder;
|
|
reoGridVBorder.Style = source.Style;
|
|
}
|
|
else
|
|
{
|
|
result = null;
|
|
}
|
|
return result;
|
|
}
|
|
|
|
private VBorderOwnerPosition pos;
|
|
}
|
|
}
|