[]
Called when cell's value is changed.
protected abstract void OnDataChanged(IWorksheet worksheet, int row, int column)
Protected MustOverride Sub OnDataChanged(worksheet As IWorksheet, row As Integer, column As Integer)
Type | Name | Description |
---|---|---|
IWorksheet | worksheet | A IWorksheet indicates the worksheet contains the changed cell. |
int | row | An integer value indicates the row index of the cell. |
int | column | An integer value indicates the column index of the cell. |
Called when cell range's values are changed.
protected abstract void OnDataChanged(IWorksheet worksheet, int row, int column, int row2, int column2, ActionCategory invalidateCategory = ActionCategory.General)
Protected MustOverride Sub OnDataChanged(worksheet As IWorksheet, row As Integer, column As Integer, row2 As Integer, column2 As Integer, Optional invalidateCategory As ActionCategory = ActionCategory.General)
Type | Name | Description |
---|---|---|
IWorksheet | worksheet | A IWorksheet indicates the worksheet contains changed cells. |
int | row | An integer value indicates the top row index of cell range. |
int | column | An integer value indicates the left column index of cell range. |
int | row2 | An integer value indicates the bottom row index of cell range. |
int | column2 | An integer value indicates the right column index of cell range. |
ActionCategory | invalidateCategory |