CPF/CPF.ReoGrid/XML/RGXmlVBorder.cs
2024-06-24 10:15:59 +08:00

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;
}
}