Class EntryChangeType
Defines whether the history action contains any insert or remove operation.
Inheritance
System.Object
EntryChangeType
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public sealed class EntryChangeType : Enum
Remarks
The below code is an example to set the EntryChangeType to Insert.
Examples
HistoryEntry Entry = new HistoryEntry() {
BlazorHistoryEntryType = HistoryEntryType.Object,
Category = EntryCategory.External,ChangeType = EntryChangeType.Insert
};
Diagram.AddCustomHistoryEntry(Entry);
Fields
Insert
specifies the history entry created for the insert action.
Declaration
public const EntryChangeType Insert
Field Value
Type | Description |
---|---|
EntryChangeType |
Remove
specifies the history entry created for the removal action.
Declaration
public const EntryChangeType Remove
Field Value
Type | Description |
---|---|
EntryChangeType |
value__
Declaration
public int value__
Field Value
Type | Description |
---|---|
System.Int32 |