Class PrintTitles
Represents the print titles, a set of rows and columns to be repeated at the top and left side of each printed page.
Inherited Members
Namespace: Telerik.Windows.Documents.Spreadsheet.Model.Printing
Assembly: Telerik.Windows.Documents.Spreadsheet.dll
Syntax
public class PrintTitles : CellRangeInsertedOrRemovedAwareCollectionBase
Properties
CellRanges
Gets the collection of the repeated rows and columns of the printed titles.
Declaration
protected override ICollection<CellRange> CellRanges { get; }
Property Value
System.Collections.Generic.ICollection<CellRange>
|
Overrides
RepeatedColumns
Gets or sets the columns to be repeated at the left side of each printed page. The range has to be continuous and cover an entire column or columns.
Declaration
public ColumnRange RepeatedColumns { get; set; }
Property Value
ColumnRange
|
RepeatedRows
Gets or sets the rows to be repeated at the top of each printed page. The range has to be continuous and cover an entire row or rows.
Declaration
public RowRange RepeatedRows { get; set; }
Property Value
RowRange
|
Methods
TranslateRange(CellRange, CellRange)
Translates the ranges of the print titles when a change has been made in the worksheet which affects the ranges.
Declaration
protected override void TranslateRange(CellRange oldRange, CellRange newRange)
Parameters
CellRange
oldRange
The range which was part of the print titles before the change. |
CellRange
newRange
The range which resulted after the change. |
Overrides
Exceptions
System.InvalidOperationException
|