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