Skip to main content
A newer version of this page is available. .
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.v18.2.dll

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.

Property Paths

You can access this nested property as listed below:

Object Type Path to Cursor
HtmlEditorPasteOptionsBarStyles
.PasteOptionsBar.Cursor

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