Class IBlazorCustomHistoryChangeArgs
Notifies when a custom entry change is reverted or restored.
Inheritance
System.Object
IBlazorCustomHistoryChangeArgs
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class IBlazorCustomHistoryChangeArgs : Object
Constructors
IBlazorCustomHistoryChangeArgs()
Declaration
public IBlazorCustomHistoryChangeArgs()
Properties
EntryType
Returns the type of entry such as undo, redo.
Declaration
public string EntryType { get; set; }
Property Value
Type | Description |
---|---|
System.String |
NewValue
Returns the collection of objects where each object represents changed made in current undo, redo.
Declaration
public HistoryChangeEventObject NewValue { get; set; }
Property Value
Type | Description |
---|---|
HistoryChangeEventObject |
OldValue
Returns the collection of objects where each object represents changes made in last undo, redo.
Declaration
public HistoryChangeEventObject OldValue { get; set; }
Property Value
Type | Description |
---|---|
HistoryChangeEventObject |