RebootController Method

Description
Reboot the currently connected controller.

Syntax
Sub RebootController (ShowStatusDialog As Boolean)

Parameters

  • ShowStatusDialog
    Sets whether to display the status screen until the restart is complete.
    True = show a dialog False = do not show a dialog

Remarks
Use ShowStatusDialog to show a dialog with a progress bar. You can abort the operation from the status dialog or by executing the Abort method.

See Also
Stop Method

RebootController Example
VB Example:

m_spel.RebootController(True)  

C# Example:

m_spel.RebootController(true);