menu

Blazor

  • Code Examples
  • Upgrade Guide
  • User Guide
  • Demos
  • Support
  • Forums
  • Download
Class MouseEventArgs - Blazor API Reference | Syncfusion

    Show / Hide Table of Contents

    Class MouseEventArgs

    Specifies the event arguments for mouse move event in maps.

    Inheritance
    System.Object
    MapsBaseEventArgs
    MouseEventArgs
    Inherited Members
    MapsBaseEventArgs.Cancel
    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 the shape is currently selected.

    Declaration
    public bool IsShapeSelected { get; set; }
    Property Value
    Type Description
    System.Boolean

    true if the shape is selected; otherwise, false.

    Remarks

    This property is useful for determining the selection state of shapes during map interactions.

    Latitude

    Gets or sets the current latitude value of the map's location.

    Declaration
    public double Latitude { get; set; }
    Property Value
    Type Description
    System.Double

    A double representing the latitude coordinate.

    Remarks

    Use this property to determine the geographic latitude at the point of interaction.

    Longitude

    Gets or sets the current longitude value of the map's location.

    Declaration
    public double Longitude { get; set; }
    Property Value
    Type Description
    System.Double

    A double representing the longitude coordinate.

    Remarks

    Use this property to determine the geographic longitude at the point of interaction.

    Target

    Gets or sets the current mouse event's target DOM element.

    Declaration
    public DOM Target { get; set; }
    Property Value
    Type Description
    DOM

    A DOM object representing the event target.

    Remarks

    This allows for identification and manipulation of the target element within the map interface.

    X

    Gets or sets the current mouse's x-coordinate location.

    Declaration
    public double X { get; set; }
    Property Value
    Type Description
    System.Double

    A double representing the horizontal position of the mouse.

    Remarks

    Use this to track or act upon horizontal positions of mouse events on the map.

    Y

    Gets or sets the current mouse's y-coordinate location.

    Declaration
    public double Y { get; set; }
    Property Value
    Type Description
    System.Double

    A double representing the vertical position of the mouse.

    Remarks

    Use this to track or act upon vertical positions of mouse events on the map.

    Back to top Generated by DocFX
    Copyright © 2001 - 2025 Syncfusion Inc. All Rights Reserved