alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Enum HistoryEntryChangeType

    Defines the change type from which the history will be entered.

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

    Fields

    Name Description
    Insert

    Represents the history inserted into the entry.

    None

    Represents none of the history entries to insert/remove.

    Remove

    Represents the history removed from the entry.

    Replace

    Represents the history replaced from the entry.

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