TrackBarEdit.IncrementSmall(TrackBarIncrementTargetEnum) Method
Increments the specified range parameter by the RangeBaseEdit.SmallStep property’s value.
Namespace: DevExpress.Xpf.Editors
Assembly: DevExpress.Xpf.Core.v24.2.dll
NuGet Package: DevExpress.Wpf.Core
#Declaration
public void IncrementSmall(
TrackBarIncrementTargetEnum target
)
#Parameters
Name | Type | Description |
---|---|---|
target | Track |
A Track |
#Remarks
A track bar editor supports four built-in styles which define its appearance and behavior:
Native
A scrollable control used to slide a small thumb along a continuous line. The IncrementSmall method increases the RangeBaseEdit.Value property. The target parameter is ignored.
Range
A range track bar, allowing a range of values to be specified. The IncrementSmall method increases the specified range parameter. For example, if the target parameter is set to TrackBarIncrementTargetEnum.SelectionStart, the editor’s TrackBarEdit.SelectionStart property is increased by RangeBaseEdit.SmallStep.
Zoom
A zooming track bar. The IncrementSmall method adds RangeBaseEdit.SmallStep to the RangeBaseEdit.Value property. The target parameter is ignored.
ZoomRange
A zooming range track bar, allowing a range of values to be specified. The IncrementSmall method increases the specified range parameter. For example, if the target parameter is set to TrackBarIncrementTargetEnum.SelectionRange, the editor’s TrackBarEditRange.SelectionStart and TrackBarEdit.SelectionEnd properties are increased by RangeBaseEdit.SmallStep.