Skip to main content

TrackBarControl.MoveLeft() Method

Moves the thumb to the left by the SmallChange value.

Namespace: DevExpress.XtraEditors

Assembly: DevExpress.XtraEditors.v23.2.dll

NuGet Package: DevExpress.Win.Navigation

Declaration

public virtual void MoveLeft()

Remarks

Users can use the Left or Down arrow key to move the focused slider to the left by the SmallChange value. In the Vertical orientation mode, MoveLeft method and Left / Down arrow key key move the thumb to the bottom.

public Form1() {
    InitializeComponent();
    trackBarControl1.Properties.SmallChange = 1;
}
void btnLeft_Click(object sender, EventArgs e) {
    trackBarControl1.MoveLeft();
}
See Also