Class DiagramEventObjectCollection
DiagramCollectionObject is the interface for the diagram objects. MouseEventElement notifies whether it is node or connector or selector model.
Inheritance
System.Object
DiagramEventObjectCollection
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class DiagramEventObjectCollection : Object
Constructors
DiagramEventObjectCollection()
Declaration
public DiagramEventObjectCollection()
Properties
Connector
returns the collection of connectors ObservableCollection.
Declaration
public List<DiagramConnector> Connector { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DiagramConnector> |
Connectors
returns the collection of connector.
Declaration
public ObservableCollection<DiagramConnector> Connectors { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<DiagramConnector> |
Node
returns the collection of node ObservableCollection.
Declaration
public List<DiagramNode> Node { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.List<DiagramNode> |
Nodes
returns the collection of node.
Declaration
public ObservableCollection<DiagramNode> Nodes { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.ObjectModel.ObservableCollection<DiagramNode> |