SympatheticHardwareControl.Controller.TSGo C# (CSharp) Method

TSGo() public method

public TSGo ( ) : void
return void
        public void TSGo()
        {
            try
            {
                tstage.Move();
            }
            catch (NullReferenceException)
            {
                MessageBox.Show("Translation stage is not connected.\nPress Connect button first.");
            }
            catch (ObjectDisposedException)
            {
                MessageBox.Show("Translation stage has been disconnected.\nPress the Connect button to reconnect.");
            }
        }