Class PageBreaks
Represents a collection of page breaks.
Inheritance
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Printing
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class PageBreaks
Properties
HorizontalPageBreaks
Gets the horizontal page breaks.
Declaration
public IEnumerable<PageBreak> HorizontalPageBreaks { get; }
Property Value
System. The horizontal page breaks. |
VerticalPageBreaks
Gets the vertical page breaks.
Declaration
public IEnumerable<PageBreak> VerticalPageBreaks { get; }
Property Value
System. The vertical page breaks. |
Methods
Clear()
Clears this instance.
Declaration
public void Clear()
TryInsertHorizontalPageBreak(Int32, Int32)
Tries to insert horizontal page break.
Declaration
public bool TryInsertHorizontalPageBreak(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |
TryInsertPageBreaks(Int32, Int32)
Tries to insert page breaks.
Declaration
public bool TryInsertPageBreaks(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |
TryInsertVerticalPageBreak(Int32, Int32)
Tries to insert vertical page break.
Declaration
public bool TryInsertVerticalPageBreak(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |
TryRemoveHorizontalPageBreak(Int32, Int32)
Tries to remove horizontal page break.
Declaration
public bool TryRemoveHorizontalPageBreak(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |
TryRemovePageBreaks(Int32, Int32)
Tries to remove page breaks.
Declaration
public bool TryRemovePageBreaks(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |
TryRemoveVerticalPageBreak(Int32, Int32)
Tries to remove vertical page break.
Declaration
public bool TryRemoveVerticalPageBreak(int rowIndex, int columnIndex)
Parameters
System. Index of the row. |
System. Index of the column. |
Returns
System. True if succeeded. |