constructor(owner?: FlexSheet, grid?: FlexGrid, sheetName?: string, rows?: number, cols?: number): Sheet
Initializes a new instance of the FlexSheet class.
The owner @see: 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 the associated FlexGrid control used to store the sheet data.
This event is triggered after the component has been initialized by Angular, that is all bound properties have been assigned and child components (if any) have been initialized.
Indicates whether the component has been initialized by Angular. Changes its value from false to true right before triggering the initialized event.
Gets or sets the array or ICollectionView for the FlexGrid instance of the sheet.
Angular (EventEmitter) version of the Wijmo nameChanged event for programmatic access. Use this event name if you want to subscribe to the Angular version of the event in code. In template bindings use the conventional nameChanged Wijmo event name.
Gets or sets a name of a property that this component is assigned to. Default value is ''.
created(): void
If you create a custom component inherited from a Wijmo component, you can override this method and perform necessary initializations that you usually do in a class constructor. This method is called in the last line of a Wijmo component constructor and allows you to not declare your custom component's constructor at all, thus preventing you from a necessity to maintain constructor parameters and keep them in synch with Wijmo component's constructor parameters.
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: EventArgs): void
Raises the nameChanged event.
onVisibleChanged(e: EventArgs): void
Raises the visibleChanged event.
Angular 2 component for the Sheet control.
The wj-sheet component must be contained in a WjFlexSheet component.
Use the wj-sheet component to add Sheet controls to your Angular 2 applications. For details about Angular 2 markup syntax, see Angular 2 Markup.
The WjSheet component is derived from the Sheet control and inherits all its properties, events and methods.