menu

Blazor

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

    Show / Hide Table of Contents

    Class HistoryEntryChangeType

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

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

    Fields

    Insert

    Represents the history inserted into the entry.

    Declaration
    public const HistoryEntryChangeType Insert
    Field Value
    Type
    HistoryEntryChangeType

    None

    Represents none of the history entries to insert/remove.

    Declaration
    public const HistoryEntryChangeType None
    Field Value
    Type
    HistoryEntryChangeType

    Remove

    Represents the history removed from the entry.

    Declaration
    public const HistoryEntryChangeType Remove
    Field Value
    Type
    HistoryEntryChangeType

    Replace

    Represents the history replaced from the entry.

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