Class IMouseEventArgs
Inheritance
System.Object
IMouseEventArgs
Implements
System.IEquatable<IMouseEventArgs>
Namespace: Syncfusion.Blazor.Charts
Assembly: Syncfusion.Blazor.dll
Syntax
public class IMouseEventArgs : Object, IEquatable<IMouseEventArgs>
Constructors
IMouseEventArgs()
Declaration
public IMouseEventArgs()
Properties
Cancel
Defines the event cancel status
Declaration
public bool Cancel { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Name
Defines the name of the event
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Target
Defines current mouse event target id
Declaration
public string Target { get; set; }
Property Value
Type | Description |
---|---|
System.String |
X
Defines current mouse x location
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Y
Defines current mouse y location
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Methods
Equals(IMouseEventArgs)
Returns a boolean by comparing iMouseEventArgs
Declaration
public bool Equals(IMouseEventArgs iMouseEventArgs)
Parameters
Type | Name | Description |
---|---|---|
IMouseEventArgs | iMouseEventArgs |
Returns
Type | Description |
---|---|
System.Boolean |
Implements
System.IEquatable<>