ID : 174
CurFig
Function
To return the current robot figure (FIG) value.
Description
The current robot figure value is returned.
For figure value, refer to "Robot Figure (6th-Axis, 4th-Axis)."
Attention
-
Example
'!TITLE "Acquiring Robot Figure"
' Display the current robot figure on the message output window
Sub Sample_CurFig
Dim aaa As Integer
' Assign the current robot figure to aaa
aaa = CurFig
' Display robot figure on the message output window
PrintDbg aaa
End Sub
ID : 174