Skip to main content
A newer version of this page is available. .
Tab

ASPxTrackBar.DecrementButtonImage Property

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

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v20.2.dll

NuGet Package: DevExpress.Web

Declaration

public virtual TrackBarElementImageProperties DecrementButtonImage { get; }

Property Value

Type Description
TrackBarElementImageProperties

An TrackBarElementImageProperties object that contains image settings.

Remarks

This property is a wrapper of the TrackBarProperties.DecrementButtonImage 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