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
Implements
System.IEquatable<DiagramEventObjectCollection>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class DiagramEventObjectCollection : Object, IEquatable<DiagramEventObjectCollection>
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> |
Methods
Equals(DiagramEventObjectCollection)
Indicates whether the DiagramEventObjectCollection object is equal to another object of the same type.
Declaration
public bool Equals(DiagramEventObjectCollection diagramEventObjectCollection)
Parameters
Type | Name | Description |
---|---|---|
DiagramEventObjectCollection | diagramEventObjectCollection | DiagramCollectionObject is the interface for the diagram objects. |
Returns
Type | Description |
---|---|
System.Boolean | Returns the collection of nodes and connectors that have to be added/removed to selection list |
Implements
System.IEquatable<>