Skip to main content
All docs
V23.2

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.v23.2.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