[]
        
(Showing Draft Content)

GrapeCity.Spreadsheet.UI.UIManager.OnDataChanged

OnDataChanged Method

OnDataChanged(IWorksheet, int, int)

Called when cell's value is changed.

Declaration
protected abstract void OnDataChanged(IWorksheet worksheet, int row, int column)
Protected MustOverride Sub OnDataChanged(worksheet As IWorksheet, row As Integer, column As Integer)
Parameters
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.

OnDataChanged(IWorksheet, int, int, int, int, ActionCategory)

Called when cell range's values are changed.

Declaration
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)
Parameters
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