Skip to main content
A newer version of this page is available. .
Tab

ASPxTrackBar.DragHandleToolTip Property

Gets or sets a string value that specifies the drag handle‘s tooltip text.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("Drag")]
public string DragHandleToolTip { get; set; }

Property Value

Type Default Description
String "Drag"

A String value that specifies a tooltip text.

Remarks

This property is a wrapper of the TrackBarProperties.DragHandleToolTip property.

Example

This example demonstrates how to set the drag handle‘s tooltip.

trackbar_example_drag_handle_tooltip

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" 
                DragHandleToolTip="Drag Me">
</dx:ASPxTrackBar>
See Also