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