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.v24.1.dll
NuGet Packages: DevExpress.Utils, DevExpress.Wpf.Core
Declaration
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