Interface IRowColumnIndexValueDictionaryCallbacks<T>
An interface for callback functions of a RowColumnIndexValueDictionary<T>. You should call SetCallback(IRowColumnIndexValueDictionaryCallbacks<T>) to register your object that implements this interface with the collection.
Namespace: Syncfusion.UI.Xaml.CellGrid.Styles
Assembly: Syncfusion.SfCellGrid.UWP.dll
Syntax
public interface IRowColumnIndexValueDictionaryCallbacks<T>
Type Parameters
Name |
---|
T |
Methods
OnMovedCell(RowColumnIndex, T)
Called from RowColumnIndexValueDictionary<T> when a cell is moved after a InsertRows, RemoveRows, InsertColumns or RemoveColumns method call.
Declaration
void OnMovedCell(RowColumnIndex cellRowColumnIndex, T value)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cellRowColumnIndex | |
T | value |
OnRemoveCell(RowColumnIndex, T)
Called when from RowColumnIndexValueDictionary<T> when a cell is removed either by a RemoveRows, RemoveColumns, Remove or RemoveAll call.
Declaration
void OnRemoveCell(RowColumnIndex cellRowColumnIndex, T value)
Parameters
Type | Name | Description |
---|---|---|
RowColumnIndex | cellRowColumnIndex | Index of the cell row column. |
T | value | The value. |