Represents a sheet within the FlexSheet control.
constructor(owner?: FlexSheet, grid?: FlexGrid, sheetName?: string, rows?: number, cols?: number): Sheet
Initializes a new instance of the Sheet class.
The owner FlexSheet control.
The associated FlexGrid control used to store the sheet data. If not specified then the new FlexGrid control will be created.
The name of the sheet within the FlexSheet control.
The row count for the sheet.
The column count for the sheet.
Gets or sets the array or ICollectionView for the FlexGrid instance of the sheet.
Gets the collection of the Table objects on this Sheet. It allows to insert/remove Table on this Sheet via the tables collection.
addTableFromArray(row: number, column: number, array: any[], properties?: string[], tableName?: string, tableStyle?: TableStyle, options?: ITableOptions, shift?: boolean): Table
Add table from an object array.
The row position of the table.
The column position of the table.
The object array load to the table.
It allows to retrieve only a subset of columns from the object of the array. If it is omitted, the table will load all the keys of the object of the array.
The name of the table.
The table style is applied to the table.
The options ITableOptions of the table.
Indicates whether cells beneath the table should be shifted or not. If not specified cells beneath will be shifted.
dispose(): void
Dispose sheet instance.
findTable(rowIndex: number, columnIndex: number): Table
Finds the table via the cell location.
the row index of the specified cell.
the column index of the specified cell.
getCellStyle(rowIndex: number, columnIndex: number): ICellStyle
Gets the style of specified cell.
the row index of the specified cell.
the column index of the specified cell.
onNameChanged(e: PropertyChangedEventArgs): void
Raises the nameChanged event.
onVisibleChanged(e: EventArgs): void
Raises the visibleChanged event.