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

ASPxTrackBar.IncrementButtonToolTip Property

Gets or sets a string value that specifies the increment button‘s tooltip text .

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v18.2.dll

Declaration

[DefaultValue("Increment")]
public string IncrementButtonToolTip { get; set; }

Property Value

Type Default Description
String "Increment"

A String value that specifies a tooltip text.

Remarks

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

Example

This example demonstrates how to define the increment button‘s tooltip.

trackbar_example_increment_button_tooltip

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" 
                IncrementButtonToolTip="Increment Me">
</dx:ASPxTrackBar>
See Also