Class
PageBreak

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:

cs-api-definition
public class PageBreak

Inheritance: objectPageBreak

Properties

FromIndex

Gets the starting column index (for horizontal breaks) or row index (for vertical breaks) where the break applies.

Declaration

cs-api-definition
public int FromIndex { get; }

Property Value

int

The starting index.

Index

Gets the row or column index where the page break occurs.

Declaration

cs-api-definition
public int Index { get; }

Property Value

int

The index.

ToIndex

Gets the ending column index (for horizontal breaks) or row index (for vertical breaks) where the break applies.

Declaration

cs-api-definition
public int ToIndex { get; }

Property Value

int

The ending index.

Type

Gets whether this is a horizontal (row) or vertical (column) page break.

Declaration

cs-api-definition
public PageBreakType Type { get; }

Property Value

PageBreakType

The type.

Methods

ToString()

Returns a string that represents the current object.

Declaration

cs-api-definition
public override string ToString()

Returns

string

A string that represents the current object.

Overrides object.ToString()