CGXGridCore::StoreRemoveRows
virtual BOOL StoreRemoveRows(ROWCOL nFromRow, ROWCOL nToRow, BOOL bProcessed = FALSE);?
nFromRow
Specifies the first row.
nToRow
Specifies the last row.
bProcessed
Specifies if removing rows has been processed in an overridden method. You should set this value to TRUE when you call the base-class version.
Return Value
TRUE if data have been actualized; it is FALSE if removing rows is not supported.
Remarks
Overridable method which removes rows from the data-structure.
You should override this method if you do maintain the data in your own classes.
Please note that if you do override this method, you should call the base-class version of this method setting bProcessed to TRUE. See StoreInsertCols for an example.
The base-class version removes rows from the internal row-heights-map, the selected ranges-list, the covered cells-list and the cell formattings-map.