22 lines
436 B
C#
22 lines
436 B
C#
using System;
|
|
using System.Xml.Serialization;
|
|
using CPF.ReoGrid.Core;
|
|
|
|
namespace CPF.ReoGrid.XML
|
|
{
|
|
public class RGXmlVBorder : RGXmlBorder
|
|
{
|
|
public RGXmlVBorder()
|
|
{
|
|
}
|
|
|
|
internal RGXmlVBorder(int row, int col, int rows, RangeBorderStyle borderStyle, VBorderOwnerPosition pos) : base(row, col, borderStyle, XmlFileFormatHelper.EncodeVBorderOwnerPos(pos))
|
|
{
|
|
this.rows = rows;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public int rows;
|
|
}
|
|
}
|