Skip to main content
Tab

ASPxTrackBar.DecrementButtonToolTip Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("Decrement")]
public string DecrementButtonToolTip { get; set; }

Property Value

Type Default Description
String "Decrement"

A String object that specifies a tooltip text.

Remarks

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

Example

This example demonstrates how to set a decrement button‘s tooltip.

trackbar_example_decrement_button_tooltip

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" 
                DecrementButtonToolTip="Decrement Me">
</dx:ASPxTrackBar>
See Also