Skip to main content
All docs
V25.1
  • 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.v25.1.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