Skip to main content
All docs
V25.2
  • DxHtmlPainterContext.GetCursor(Point, Object) Method

    Finds an HTML element located at the given coordinates, and retrieves a cursor associated with this element.

    Namespace: DevExpress.Utils.Html

    Assembly: DevExpress.Utils.v25.2.dll

    NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core

    Declaration

    public Cursor GetCursor(
        Point pt,
        object interactivityKey = null
    )

    Parameters

    Name Type Description
    pt Point

    The coordinates of a template instance to check.

    Optional Parameters

    Name Type Default Description
    interactivityKey Object null

    The ID that allows you to identify the required instance of a custom-drawn template.

    Returns

    Type Description
    Cursor

    The cursor associated with this element.

    Remarks

    To specify which cursor an HTML element should display upon hover, use the cursor CSS property:

    .button { cursor: pointer; }
    
    See Also