Class HistoryChangedEventArgs
Provides the information about the HistoryChanged event callback.
Inheritance
Namespace: Syncfusion.Blazor.ImageEditor
Assembly: Syncfusion.Blazor.dll
Syntax
public class HistoryChangedEventArgs : Object
Constructors
HistoryChangedEventArgs()
Declaration
public HistoryChangedEventArgs()
Properties
ActionTrigger
Gets the value whether the event is triggered is for an undo or a redo action in the SfImageEditor.
Declaration
public HistoryChangedAction ActionTrigger { get; set; }
Property Value
Type | Description |
---|---|
HistoryChangedAction | A string value that returns the status such as undo or redo. |
ImageAction
Gets the action being undone or redone, aiding in providing context to the user about what is happening in the SfImageEditor.
Declaration
public HistoryEntryAction ImageAction { get; set; }
Property Value
Type | Description |
---|---|
HistoryEntryAction | A string value that returns the action such as rotate, flip, crop, finetune, filter. |
Index
Gets the index of the current action in the sequence of undo/redo steps. It shows which step you're currently at within the undo/redo history in the SfImageEditor
Declaration
public int Index { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that returns the current action in the sequence of the history. |
Length
Gets the total number of steps or actions that can be undone or redone.
Declaration
public int Length { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | An integer value that returns the total number of steps to be undone or redone. |