bool GlobalVariableCheck(string name)
Returns TRUE if the global variable exists, otherwise, returns FALSE. To get the detailed error information, one has to call the GetLastError() function.
グローバル変数が存在する場合は、TRUE を返します。それ以外は FALSE を返します。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
1 2 | <b>name</b> - Global variable name. グローバル変数の名前。 |
Sample:
サンプル:
1 2 3 | // check variable before use if(!GlobalVariableCheck("g1")) GlobalVariableSet("g1",1); |