Skip to main content
A newer version of this page is available. .
All docs
V22.2

DxHtmlPainterContext.GetCursor(DxHtmlHitInfo) Method

Returns the cursor assigned to this HTML element in a CSS stylesheet.

Namespace: DevExpress.Utils.Html

Assembly: DevExpress.Utils.v22.2.dll

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

Declaration

public Cursor GetCursor(
    DxHtmlHitInfo hitInfo
)

Parameters

Name Type Description
hitInfo DevExpress.Utils.Html.DxHtmlHitInfo

The hit information related to the target HTML element.

Returns

Type Description
Cursor

The cursor related to the target HTML element.

Remarks

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

.button { cursor: pointer; }
See Also