menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class HistoryChangedAction - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class HistoryChangedAction

    Specifies the state of history actions such as undo and redo.

    Inheritance
    System.Object
    HistoryChangedAction
    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public sealed class HistoryChangedAction : Enum
    Examples
    <SfDiagramComponent  HistoryChanged="@OnHistoryChanged">
    </SfDiagramComponent>
    private void OnHistoryChanged(HistoryChangedEventArgs arg)
    {
        if (arg.Entry != null)
        {
            HistoryChangedAction historyChangeArgs = arg.ActionTrigger;
        }
    }

    Fields

    CustomAction

    Defines the history of action as custom action.

    Declaration
    public const HistoryChangedAction CustomAction
    Field Value
    Type
    HistoryChangedAction

    Redo

    Sets the history action as Redo when performing the redo action.

    Declaration
    public const HistoryChangedAction Redo
    Field Value
    Type
    HistoryChangedAction

    Undo

    Sets the history action as Undo when performing an undo action.

    Declaration
    public const HistoryChangedAction Undo
    Field Value
    Type
    HistoryChangedAction
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved