ASPxTrackBar.IncrementButtonImage Property
In This Article
Provides access to the settings that define an image of an increment button.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual TrackBarElementImageProperties IncrementButtonImage { get; }
#Property Value
Type | Description |
---|---|
Track |
An Track |
#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