Enum HistoryEntryChangeType
Defines the change type from which the history will be entered.
Namespace: Syncfusion.Blazor.Diagram
Assembly: Syncfusion.Blazor.dll
Syntax
public enum HistoryEntryChangeType
Examples
<SfDiagramComponent HistoryChanged="@OnHistoryChanged">
</SfDiagramComponent>
private void OnHistoryChanged(HistoryChangedEventArgs arg)
{
if (arg.Entry != null)
{
HistoryEntryChangeType historyEntryChangeType = arg.CollectionChangedAction;
}
}
Fields
| Name | Description |
|---|---|
| Insert | Represents the history inserted into the entry. |
| None | Represents none of the history entries to insert/remove. |
| Remove | Represents the history removed from the entry. |
| Replace | Represents the history replaced from the entry. |