Hand_Def Function

Acquires whether the hand has been defined.

Syntax
Hand_Def ({Hand Number | Hand Label})

Parameters
Hand Number Specify the number 1 to 15 of the hand to operate.
Hand Label Specify the label of the hand to operate.

Return Values
If the hand has been defined, returns “True”. If not, returns “False”.

See Also
Hand_Type Function, Hand_Label$ Function, Hand_Number Function

Hand_Def Function Example

' Display the label for hand 1 if set, display “Hand 1 is not defined”  
' in the Run window if not set  

If Hand_Def(1) = True Then  
	Print Hand_Label$(1)  
Else  
	Print "Hand 1 is not defined"  
Endif