Enum HistoryChangedAction
Specifies the state of history actions such as undo and redo.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum HistoryChangedAction
Examples
<SfDiagramComponent HistoryChanged="@OnHistoryChanged">
</SfDiagramComponent>
private void OnHistoryChanged(HistoryChangedEventArgs arg)
{
if (arg.Entry != null)
{
HistoryChangedAction historyChangeArgs = arg.ActionTrigger;
}
}
Fields
| Name | Description |
|---|---|
| CustomAction | Defines the history of action as custom action. |
| Redo | Sets the history action as Redo when performing the redo action. |
| Undo | Sets the history action as Undo when performing an undo action. |