ig.spreadsheet.SpreadsheetPane
Dependencies
-
columnScrollRegion
- .columnScrollRegion( );
Returns the SpreadsheetColumnScrollRegion that contains the pane.
-
rowScrollRegion
- .rowScrollRegion( );
Returns the SpreadsheetRowScrollRegion that contains the pane.
-
scrollCellIntoView
- .scrollCellIntoView( cell:ig.spreadsheet.SpreadsheetCell );
Used to ensure that a specified cell is fully in view within the SpreadsheetPane.visibleRange.
- cell
- Type:ig.spreadsheet.SpreadsheetCell
- The cell that is to be brought into view
-
scrollCellIntoView
- .scrollCellIntoView( cellAddress:string );
Used to ensure that a specified cell is fully in view within the SpreadsheetPane.visibleRange.
- cellAddress
- Type:string
- The A1 style address of the cell that is to be brought into view
-
scrollColumnIntoView
- .scrollColumnIntoView( index:number );
Used to ensure that a specified column is fully in view within the SpreadsheetPane.visibleRange.
- index
- Type:number
- 0 based index of the column to be brought into view.
Exceptions
Exception Description ig.ArgumentOutOfRangeException The index must be 0 or greater. -
scrollRangeIntoView
- .scrollRangeIntoView( range:ig.spreadsheet.SpreadsheetCellRange );
Used to ensure that a specified cell is fully in view within the SpreadsheetPane.visibleRange.
- range
- Type:ig.spreadsheet.SpreadsheetCellRange
- The cell range that is to be brought into view
-
scrollRangeIntoView
- .scrollRangeIntoView( rangeAddress:string );
Used to ensure that a specified cell is fully in view within the SpreadsheetPane.visibleRange.
- rangeAddress
- Type:string
- The A1 style address of the cell range that is to be brought into view
-
scrollRowIntoView
- .scrollRowIntoView( index:number );
Used to ensure that a specified row is fully in view within the SpreadsheetPane.visibleRange.
- index
- Type:number
- 0 based index of the row to be brought into view.
Exceptions
Exception Description ig.ArgumentOutOfRangeException The index must be 0 or greater. -
selection
- .selection( );
Returns an object that represents the selection within the pane.
Remarks
Note: Only the selection of the active pane is rendered.
-
visibleRange
- .visibleRange( );
Returns a range that represents the current visible range.