Class MouseMoveEventArgs
Specifies the event arguments for OnMouseMove event in the Maps.
Inheritance
System.Object
MouseMoveEventArgs
Namespace: Syncfusion.Blazor.Maps
Assembly: Syncfusion.Blazor.dll
Syntax
public class MouseMoveEventArgs : Object
Constructors
MouseMoveEventArgs()
Declaration
public MouseMoveEventArgs()
Properties
Latitude
Gets the current latitude value of the location over which the mouse pointer is moved.
Declaration
public double Latitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns double value. |
Longitude
Gets the current longitude value of the location over which the mouse pointer is moved.
Declaration
public double Longitude { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns double value. |
Target
Gets the DOM of the current target element over which the mouse is positioned on the Maps.
Declaration
public DOM Target { get; }
Property Value
Type | Description |
---|---|
DOM | Returns the DOM object. |
X
Gets the current horizontal position value of the location over which the mouse pointer is moved.
Declaration
public double X { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns double value. |
Y
Gets the current vertical position value of the location over which the mouse pointer is moved.
Declaration
public double Y { get; }
Property Value
Type | Description |
---|---|
System.Double | Returns double value. |