Interface DataTableTracker.IUndoRedoEventCallbackReceiver
An interface describing the functionality needed for an object to get a callback when Unity performs an undo/redo operation on a DataTableBase.
Namespace: GDX.Editor
Syntax
public interface IUndoRedoEventCallbackReceiver
Methods
| Improve this Doc View SourceOnUndoRedoCellValueChanged(Int32, Int32)
An undo/redo of a cell value change has occured.
Declaration
void OnUndoRedoCellValueChanged(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. |
OnUndoRedoColumnDefinitionChange(Int32)
An undo/redo of a ColumnDescription change has occured.
Declaration
void OnUndoRedoColumnDefinitionChange(int columnIdentifier)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | columnIdentifier | The affected column's unique identifier. |
OnUndoRedoRowDefinitionChange(Int32)
An undo/redo of a RowDescription change has occured.
Declaration
void OnUndoRedoRowDefinitionChange(int rowIdentifier)
Parameters
Type | Name | Description |
---|---|---|
System.Int32 | rowIdentifier | The affected row's unique identifier. |
OnUndoRedoSettingsChanged()
An undo/redo of a settings change has occured.
Declaration
void OnUndoRedoSettingsChanged()