SympatheticHardwareControl.Controller.TSListAll C# (CSharp) Method

TSListAll() public method

public TSListAll ( ) : void
return void
        public void TSListAll()
        {
            try
            {
                tstage.ListAll();
            }
            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.");
            }
        }