CurPos Function
Returns the current target position of the specified robot.
Syntax
CurPos
Return Values
A robot point representing the current target position of the specified robot.
See Also
InPos, FindPos, RealPos
CurPos Function Example
Function main
Xqt showPosition
Do
Jump P0
Jump P1
Loop
Fend
Function showPosition
Do
P99 = CurPos
Print CX(P99), CY(P99)
Loop
Fend