Skip to main content
All docs
V25.1
  • RangeTrackBarControl.MoveEnd() Method

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

    Namespace: DevExpress.XtraEditors

    Assembly: DevExpress.XtraEditors.v25.1.dll

    NuGet Package: DevExpress.Win.Navigation

    Declaration

    public override void MoveEnd()

    Remarks

    The animation below demonstrates how the MoveEnd method works:

    WinForms RangeTrackBar - Move End

    void buttonEnd_Click(object sender, EventArgs e) {
        rangeTrackBarControl1.MoveEnd();
    }
    

    Users can use the End key to move the slider to the end of the track bar.

    See Also