ASPxTrackBar.SecondaryDragHandleStyle Property
In This Article
Gets the style settings which define the secondary drag handle appearance.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
NuGet Package: DevExpress.Web
#Declaration
public virtual TrackBarButtonStyle SecondaryDragHandleStyle { get; }
#Property Value
Type | Description |
---|---|
Track |
An Track |
#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