Skip to main content
Tab

ASPxTrackBar.IncrementButtonStyle Property

Gets the style settings which define the Increment Button‘s appearance.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual TrackBarButtonStyle IncrementButtonStyle { get; }

Property Value

Type Description
TrackBarButtonStyle

A TrackBarButtonStyle object that contains style settings.

Remarks

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

Example

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

trackbar_example_increment_button_style

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