Function Reference


IsKeyword

Checks if a variable is a keyword (for example, Default).

IsKeyword ( variable )

Parameters

variable The variable to check.

Return Value

Success: Returns 1 if variable is a keyword.
Failure: Returns 0 if variable is not a keyword.

Remarks


Related

Default, VarGetType

Example


Local $a = Default
If IsKeyword($a) Then MsgBox(0, "Ok", "Yes it is")