Class DiagramMouseEventObject
MouseEventElement notifies whether it is node or connector or selector model
Inheritance
System.Object
DiagramMouseEventObject
Implements
System.IEquatable<DiagramMouseEventObject>
Namespace: Syncfusion.Blazor.Diagrams
Assembly: Syncfusion.Blazor.dll
Syntax
public class DiagramMouseEventObject : Object, IEquatable<DiagramMouseEventObject>
Constructors
DiagramMouseEventObject()
Declaration
public DiagramMouseEventObject()
Properties
Connector
returns the new source node or target node of the connector
Declaration
public DiagramConnector Connector { get; set; }
Property Value
Type | Description |
---|---|
DiagramConnector |
Node
returns the new source node or target node of the connector
Declaration
public DiagramNode Node { get; set; }
Property Value
Type | Description |
---|---|
DiagramNode |
Selector
Defines the collection of selected items in the diagram
Declaration
public SelectorModel Selector { get; set; }
Property Value
Type | Description |
---|---|
SelectorModel |
Methods
Equals(DiagramMouseEventObject)
Indicates whether the DiagramMouseEventObject object is equal to another object of the same type.
Declaration
public bool Equals(DiagramMouseEventObject diagramMouseEventObject)
Parameters
Type | Name | Description |
---|---|---|
DiagramMouseEventObject | diagramMouseEventObject | MouseEventElement notifies whether it is node or connector or selector model |
Returns
Type | Description |
---|---|
System.Boolean | Returns the node or connector or selector model |
Implements
System.IEquatable<>