Hand[n].OrgState
Function
To present the origin return status.
Syntax
Hand[n].OrgState
Return value
Return the status of whether or not the origin return is completed by integer type data.
Description
The origin return status is presented.
Only Get is available. Put is not available.
| Return value | Hand status |
|---|---|
| -1(True) | Origin return complete |
| 0(False) | Origin return incomplete |
Related Terms
Attention
-
Example
'!TITLE "Display the status of origin return"
' Display current status of origin return on the message output window
Sub Sample_HandOrgState
Dim aaa As Integer
' Assign current status of origin return to aaa
aaa = Hand[0].OrgState
' Display the value of current status of origin return on the message output window
PrintDbg aaa
End Sub

