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 RGXmlHBorder : RGXmlBorder
|
|
{
|
|
public RGXmlHBorder()
|
|
{
|
|
}
|
|
|
|
internal RGXmlHBorder(int row, int col, int cols, RangeBorderStyle borderStyle, HBorderOwnerPosition pos) : base(row, col, borderStyle, XmlFileFormatHelper.EncodeHBorderOwnerPos(pos))
|
|
{
|
|
this.cols = cols;
|
|
}
|
|
|
|
[XmlAttribute]
|
|
public int cols;
|
|
}
|
|
}
|