Skip to main content
Tab

ASPxTrackBar.IncrementButtonImage Property

Provides access to the settings that define an image of an increment button.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual TrackBarElementImageProperties IncrementButtonImage { get; }

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.

trackbar_example_increment-decrement_button

<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