Class HorizontalPageBreaksRecord.THPageBreak
This class contains information about single page break.
Inheritance
System.Object
HorizontalPageBreaksRecord.THPageBreak
Implements
System.ICloneable
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class THPageBreak : Object, ICloneable
Constructors
THPageBreak()
Default constructor
Declaration
public THPageBreak()
THPageBreak(UInt16, UInt16, UInt16)
Constructs class instance and fills fields with values.
Declaration
public THPageBreak(ushort Row, ushort StartCol, ushort EndCol)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | Row | Row of the break. |
System.UInt16 | StartCol | Starting column of the break. |
System.UInt16 | EndCol | Ending column of the break. |
Properties
EndColumn
The ending column of the break.
Declaration
public ushort EndColumn { get; set; }
Property Value
Type |
---|
System.UInt16 |
Row
The row of the break.
Declaration
public ushort Row { get; set; }
Property Value
Type |
---|
System.UInt16 |
StartColumn
The starting column of the break.
Declaration
public ushort StartColumn { get; set; }
Property Value
Type |
---|
System.UInt16 |
Methods
Clone()
Creates a new object that is a copy of the current instance.
Declaration
public object Clone()
Returns
Type | Description |
---|---|
System.Object | A new object that is a copy of this instance. |
Implements
System.ICloneable