Class VerticalPageBreaksRecord.TVPageBreak
Structure that contains information about a vertical page break.
Inheritance
System.Object
VerticalPageBreaksRecord.TVPageBreak
Implements
System.ICloneable
Namespace: Syncfusion.XlsIO.Parser.Biff_Records
Assembly: Syncfusion.XlsIO.UWP.dll
Syntax
public class TVPageBreak : Object, ICloneable
Constructors
TVPageBreak()
Default constructor
Declaration
public TVPageBreak()
TVPageBreak(UInt16, UInt16, UInt16)
Constructs class instance and fills it with specified values.
Declaration
public TVPageBreak(ushort Col, ushort StartRow, ushort EndRow)
Parameters
Type | Name | Description |
---|---|---|
System.UInt16 | Col | Column of the break. |
System.UInt16 | StartRow | Starting row of the break. |
System.UInt16 | EndRow | Ending row of the break. |
Properties
Column
The column of the break.
Declaration
public ushort Column { get; set; }
Property Value
Type |
---|
System.UInt16 |
EndRow
The ending row of the break.
Declaration
public uint EndRow { get; set; }
Property Value
Type |
---|
System.UInt32 |
StartRow
The starting row of the break.
Declaration
public uint StartRow { get; set; }
Property Value
Type |
---|
System.UInt32 |
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