Skip to main content
Tab

AppearanceStyleBase.Cursor Property

Gets or sets the type of cursor to display when the mouse pointer is over the object which the current style applies to.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public virtual string Cursor { get; set; }

Property Value

Type Default Description
String String.Empty

A string that specifies the type of cursor to display.

Remarks

This property can be set in the same manner as the cursor property/attribute of HTML objects.

Example

ASPxTreeList:

<dx:ASPxTreeList ID="TreeList" runat="server" DataSourceID="ods" ...>
    <Styles>
        <Node Cursor="pointer">
        </Node>
        <Indent Cursor="default">
        </Indent>
    </Styles>
    ...
</dx:ASPxTreeList>
See Also