Class IBlazorCustomHistoryChangeArgs
Notifies when a custom entry change is reverted or restored.
Inheritance
System.Object
IBlazorCustomHistoryChangeArgs
Implements
System.IEquatable<IBlazorCustomHistoryChangeArgs>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class IBlazorCustomHistoryChangeArgs : Object, IEquatable<IBlazorCustomHistoryChangeArgs>
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 |
Methods
Equals(IBlazorCustomHistoryChangeArgs)
Indicates whether the IBlazorCustomHistoryChangeArgs object is equal to another object of the same type.
Declaration
public bool Equals(IBlazorCustomHistoryChangeArgs iBlazorCustomHistoryChangeArgs)
Parameters
Type | Name | Description |
---|---|---|
IBlazorCustomHistoryChangeArgs | iBlazorCustomHistoryChangeArgs | Diagram custom history change event arguments |
Returns
Type | Description |
---|---|
System.Boolean | Returns the label of an element under goes editing |
Implements
System.IEquatable<>