Interface DataTableTracker.ICellValueChangedCallbackReceiver
An interface describing the functionality needed for an object to get a callback when a a cell values changes in a DataTableBase.
Namespace: GDX.Editor
Syntax
public interface ICellValueChangedCallbackReceiver
Methods
| Improve this Doc View SourceOnCellValueChanged(Int32, Int32)
A cell value change has occured.
Declaration
void OnCellValueChanged(int rowIdentifier, int columnIdentifier)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIdentifier | The affected row's unique identifier. |
System.Int32 | columnIdentifier | The affected column's unique identifier. |