bool GlobalVariableDel(string name)
Deletes the global variable. If the function succeeds, the returned value will be TRUE, otherwise, it will be FALSE. To get the detailed error information, one has to call the GetLastError() function.
グローバル変数を削除します。正常終了した場合は、返される値は TURE になります。それ以外の場合は、FALSE になります。詳細なエラー情報を取得するには、GetLastError() 関数を呼び出します。
Parameters:
パラメータ:
1 2 | <b>name</b> - Global variable name. グローバル変数の名前。 |
Sample:
サンプル:
1 2 | // deleting of the global variable named "gvar_1" GlobalVariableDel("gvar_1"); |