SympatheticHardwareControl.Controller.TSCheckStatus C# (CSharp) Méthode

TSCheckStatus() public méthode

public TSCheckStatus ( ) : void
Résultat void
        public void TSCheckStatus()
        {
            try
            {
                tstage.CheckStatus();
            }
            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.");
            }
        }