ASPxTrackBar.IncrementButtonStyle Property
Gets the style settings which define the Increment Button‘s appearance.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
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.
<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server">
<IncrementButtonStyle BackColor="#FF8000">
<Border BorderColor="Black" BorderStyle="Solid" BorderWidth="1px" />
</IncrementButtonStyle>
</dx:ASPxTrackBar>
See Also