[]
Initializes a new instance of the FlexSheetPanel class.
The FlexGrid object that owns the panel.
The type of cell in the panel.
The rows displayed in the panel.
The columns displayed in the panel.
The HTMLElement that hosts the cells in the control.
Gets the active cell in this panel.
Gets the type of cell contained in the panel.
Gets the panel's column collection.
Gets the grid that owns the panel.
Gets the total height of the content in this panel.
Gets the host element for the panel.
Gets the panel's row collection.
Gets a CellRange that indicates the range of cells currently visible on the panel.
Gets the total width of the content in the panel.
Gets a cell's bounds in viewport coordinates.
The returned value is a Rect object which contains the position and dimensions of the cell in viewport coordinates. The viewport coordinates are the same as those used by the getBoundingClientRect method.
The index of the row that contains the cell.
The index, name, or binding of the column that contains the cell.
Whether to return the rectangle in raw panel coordinates as opposed to viewport coordinates.
Gets the value stored in a cell in the panel.
The row index of the cell.
The index, name, or binding of the column that contains the cell.
Whether to format the value for display.
Gets the element that represents a cell within this GridPanel.
If the cell is not currently in view, this method returns null.
The index of the row that contains the cell.
The index, name, or binding of the column that contains the cell.
Returns the last visible column present in the panel upto and including the end position. return -1 if no visible column is present
Last index of column to check.
Returns the last visible row present in the panel upto and including the end position. return -1 if no visible row is present
Last index of row to check.
Returns the next visible column present in the panel including the start position. return -1 if no visible column is present
Starting index of column.
Returns the next visible row present in the panel including the start position. return -1 if no visible row is present
Starting index of row.
Gets a SelectedState value that indicates the selected state of a cell.
Overrides this method to support multiple selection showSelectedHeaders for FlexSheet
Row index of the cell to inspect.
Column index of the cell to inspect.
CellRange that contains the cell to inspect.
Checks whether a given CellRange is valid for this panel's row and column collections.
Range to check.
Sets the content of a cell in the panel.
The index of the row that contains the cell.
The index, name, or binding of the column that contains the cell.
The value to store in the cell.
A value indicating whether to change the value automatically to match the column's data type.
Whether to invalidate the FlexSheet to show the change.
value passed is already key value of dataMap, don't need re-find.
Returns true if the value is stored successfully, otherwise false (failed cast).
Defines the extension of the GridPanel class, which is used by FlexSheet where the base FlexGrid class uses GridPanel. For example, the cells property returns an instance of this class.