ASPxTrackBar.IncrementButtonStyle Property
In This Article
Gets the style settings which define the Increment Button‘s appearance.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual TrackBarButtonStyle IncrementButtonStyle { get; }
#Property Value
Type | Description |
---|---|
Track |
A Track |
#Remarks
This property is a wrapper of the TrackBarProperties.IncrementButtonStyle property.
#Example
This example demonstrates how to define the increment button‘s style.
<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server">
<IncrementButtonStyle BackColor="#FF8000">
<Border BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" />
</IncrementButtonStyle>
</dx:ASPxTrackBar>
See Also