ASPxTrackBar.SecondaryDragHandleImage Property
In This Article
Provides access to the settings that define an image of a secondary drag handle.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual TrackBarElementImageProperties SecondaryDragHandleImage { get; }
#Property Value
Type | Description |
---|---|
Track |
An Track |
#Remarks
This property is a wrapper of the TrackBarProperties.SecondaryDragHandleImage property.
#Example
This example demonstrates how to set your own drag handle images using the ASPxTrackBar.MainDragHandleImage and ASPxTrackBar.SecondaryDragHandleImage
properties.
<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" ScalePosition="Both"
AllowRangeSelection="True">
<MainDragHandleImage Height="20px" Url="~/imgs/main_draghandle_img.png" Width="14px">
</MainDragHandleImage>
<SecondaryDragHandleImage Height="20px" Url="~/imgs/sec_draghandle_img.png" Width="14px">
</SecondaryDragHandleImage>
</dx:ASPxTrackBar>
See Also