Class MouseEventArgs
Specifies the event arguments for mouse move event in maps.
Inherited Members
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MouseEventArgs : MapsBaseEventArgs
Constructors
MouseEventArgs()
Declaration
public MouseEventArgs()
Properties
IsShapeSelected
Gets or sets a value indicating whether or not the shape is selected or not.
Declaration
public bool IsShapeSelected { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
|
Latitude
Gets or sets the current latitude value of maps location.
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Longitude
Gets or sets the current longitude value of maps location.
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Target
Gets or sets the current mouse event target id.
Declaration
public DOM Target { get; set; }
Property Value
Type | Description |
---|---|
DOM | A DOM object representing the target element of current mouse event. |
X
Gets or sets the current mouse x location.
Declaration
public double X { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |
Y
Gets or sets the current mouse y location.
Declaration
public double Y { get; set; }
Property Value
Type | Description |
---|---|
System.Double | Accepts the double value. |