PauseOn Property

Description
Returns status of the Controller pause state.

Syntax
ReadOnly Property PauseOn As Boolean

Return Value
True if the Controller is in the pause state, False if not.

See Also
Continue Method, Pause Method

PauseOn Example
VB Example:

If m_spel.PauseOn Then  
    btnPause.Enabled = False  
    btnContinue.Enabled = True  
End If  

C# Example:

if (m_spel.PauseOn){  
    btnPause.Enabled = false;  
    btnContinue.Enabled = true;  
}