Skip to main content
All docs
V23.2

RangeTrackBarControl.MoveBegin() Method

If the left slider has focus, this method moves the slider to the beginning of the track bar (Minimum). If the right thumb has focus, the method moves the slider to the left slider position.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public override void MoveBegin()

Remarks

The animation below demonstrates how the MoveBegin method works:

WinForms RangeTrackBar - Move Begin

void buttonBegin_Click(object sender, EventArgs e) {
    rangeTrackBarControl1.MoveBegin();
}

Users can use the Home key to move the slider to the beginning of the track bar.

See Also