SympatheticHardwareControl.Controller.TSListAll C# (CSharp) 메소드

TSListAll() 공개 메소드

public TSListAll ( ) : void
리턴 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.");
            }
        }