Skip to main content
Tab

ASPxTrackBar.DecrementButtonStyle Property

Gets the style settings that define the decrement button‘s appearance.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual TrackBarButtonStyle DecrementButtonStyle { get; }

Property Value

Type Description
TrackBarButtonStyle

An TrackBarButtonStyle object that contains style settings.

Remarks

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

Example

This example demonstrates how to define a decrement button‘s style.

trackbar_example_decrement_button_style

<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server">
                <DecrementButtonStyle BackColor="#FF8000">
                    <Border BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" /> 
                </DecrementButtonStyle>
</dx:ASPxTrackBar>
See Also