PowerHigh Property
Description
Sets and returns the power state for the current robot.
Syntax
Property PowerHigh As Boolean
Default Value
False
Return Value
True if the current robot power is high, False if not.
See Also
MotorsOn Property
PowerHigh Example
VB Example:
If Not m_spel.PowerHigh Then
m_spel.PowerHigh = True
End If
C# Example:
if (\!m_spel.PowerHigh)
m_spel.PowerHigh = true;