ASPxTrackBar.IncrementButtonImage Property
Provides access to the settings that define an image of an increment button.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
TrackBarElementImageProperties | An TrackBarElementImageProperties object that contains image settings. |
Remarks
This property is a wrapper of the TrackBarProperties.IncrementButtonImage property.
Example
This example demonstrates how to change increment and decrement buttons images with the IncrementButtonImage and DecrementButtonImage properties.
<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" ScalePosition="LeftOrTop">
<IncrementButtonImage Url="imgs/increment_button.gif" Width="13" Height="13">
</IncrementButtonImage>
<DecrementButtonImage Url="imgs/decrement_button.gif" Width="13" Height="13">
</DecrementButtonImage>
</dx:ASPxTrackBar>
See Also