ig.spreadsheet.SpreadsheetPane
Dependencies
-
columnScrollRegion
- .columnScrollRegion( );
- Return Type:
- ig.spreadsheet.SpreadsheetColumnScrollRegion
- Return Type Description:
- Returns a SpreadsheetColumnScrollRegion.
Returns the SpreadsheetColumnScrollRegion that contains the pane.
-
rowScrollRegion
- .rowScrollRegion( );
- Return Type:
- ig.spreadsheet.SpreadsheetRowScrollRegion
- Return Type Description:
- Returns a SpreadsheetRowScrollRegion.
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( );
- Return Type:
- ig.spreadsheet.SpreadsheetSelection
- Return Type Description:
- Returns a SpreadsheetSelection.
Returns an object that represents the selection within the pane.
Remarks
Note: Only the selection of the active pane is rendered.
See Also
-
visibleRange
- .visibleRange( );
- Return Type:
- ig.spreadsheet.SpreadsheetCellRange
- Return Type Description:
- Returns a SpreadsheetCellRange.
Returns a range that represents the current visible range.
See Also