BoxClr Statement

Clears the definition of approach check area.

Syntax
BoxClr AreaNum[, robotNumber]

Parameters

AreaNum
Specify the entry detection area number (an integer from 1 to 15) to clear the setting, either as an expression or a numeric value.
robotNumber
Specify the robot number as an integer value. If omitted, currently selected robot will be used.

See Also
Box, BoxDef, GetRobotInsideBox, InsideBox

BoxClr Statement Example
This example uses BoxClr function in a program.

Function ClearBox

   If BoxDef(1) = True Then
      BoxClr 1
   EndIf
Fend