alexa
menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Search Results for

    Show / Hide Table of Contents

    Enum HistoryChangedAction

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

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

    Fields

    Name Description
    CustomAction

    Defines the history of action as custom action.

    Redo

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

    Undo

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

    In this article
    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved