PageBreak
Class
Defines a horizontal or vertical page break at a specific row or column index, controlling where pages split during printing.
Definition
Namespace:Telerik.Windows.Documents.Spreadsheet.Model.Printing
Assembly:Telerik.Windows.Documents.Spreadsheet.dll
Syntax:
C#
public class PageBreak
Inheritance: objectPageBreak
Methods
Properties
Gets the starting column index (for horizontal breaks) or row index (for vertical breaks) where the break applies.
C#
public int FromIndex { get; }
The starting index.
Gets the row or column index where the page break occurs.
C#
public int Index { get; }
The index.
Gets the ending column index (for horizontal breaks) or row index (for vertical breaks) where the break applies.
C#
public int ToIndex { get; }
The ending index.
Gets whether this is a horizontal (row) or vertical (column) page break.
C#
public PageBreakType Type { get; }
The type.