ASPxTrackBar.SecondaryDragHandleStyle Property
Gets the style settings which define the secondary drag handle appearance.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Property Value
Type | Description |
---|---|
TrackBarButtonStyle | An TrackBarButtonStyle object that contains style settings. |
Remarks
This property is a wrapper of the TrackBarProperties.SecondaryDragHandleStyle property.
Example
This example demonstrates how to customize the drag handles‘ style using the MainDragHandleStyle and the SecondaryDragHandleStyle properties.
<dx:ASPxTrackBar ID="ASPxTrackBar1" runat="server" ScalePosition="LeftOrTop"
AllowRangeSelection="True" >
<MainDragHandleStyle BackColor="Red">
<Border BorderColor="Black" BorderStyle="Dashed" BorderWidth="1px" />
</MainDragHandleStyle>
<SecondaryDragHandleStyle BackColor="Lime">
<Border BorderColor="Black" BorderStyle="Dashed" BorderWidth="1px" />
</SecondaryDragHandleStyle>
</dx:ASPxTrackBar>
See Also