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