alexa
menu

Blazor

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

    Show / Hide Table of Contents

    Enum CollectionChangedAction

    Specifies whether an object is added/removed from the diagram.

    Namespace: Syncfusion.Blazor.Diagram
    Assembly: Syncfusion.Blazor.dll
    Syntax
    public enum CollectionChangedAction
    Examples
    <SfDiagramComponent  SelectionChanging="@OnSelectionChanging">
    </SfDiagramComponent>
    @code
    {
        private void OnSelectionChanging(SelectionChangingEventArgs args)
        {
            if ((args != null) && (args.NewValue != null) && (args.OldValue != null))
            {
                CollectionChangedAction type = args.Type;
            }
        }
    }

    Fields

    Name Description
    Add

    Indicates that the object has been added to the diagram.

    Remove

    Indicates that the object has been removed from the diagram.

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