ASPxTrackBar.SecondaryDragHandleImage Property
Provides access to the settings that define an image of a secondary drag handle.
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.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