Class DiagramEventObject
DiagramObject is the interface for the diagram object
Inheritance
System.Object
DiagramEventObject
Implements
System.IEquatable<DiagramEventObject>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class DiagramEventObject : Object, IEquatable<DiagramEventObject>
Constructors
DiagramEventObject()
Declaration
public DiagramEventObject()
Properties
Connector
returns the connector
Declaration
public DiagramConnector Connector { get; set; }
Property Value
Type | Description |
---|---|
DiagramConnector |
Node
returns the node
Declaration
public DiagramNode Node { get; set; }
Property Value
Type | Description |
---|---|
DiagramNode |
Methods
Equals(DiagramEventObject)
Indicates whether the DiagramEventObject object is equal to another object of the same type.
Declaration
public bool Equals(DiagramEventObject diagramEventObject)
Parameters
Type | Name | Description |
---|---|---|
DiagramEventObject | diagramEventObject | DiagramObject is the interface for the diagram object |
Returns
Type | Description |
---|---|
System.Boolean | Returns node or connector that is being dropped |
Implements
System.IEquatable<>