bool ObjectDelete(string name)
Deletes object having the specified name. If the function succeeds, the returned value will be TRUE. Otherwise, it will be FALSE.
指定された名前を持つオブジェクトを削除します。もし、関数が正常終了した場合、返される値は TRUE です。それ以外の場合、FALSE になります。
To get the detailed error information, one has to call the GetLastError() function.
詳細なエラー情報を受け取るためには、GetLastError() 関数を呼び出さなくてはなりません。
Parameters:
パラメータ:
1 2 | <b>name</b> - Name of the object to be deleted. 削除するオブジェクトの名前 |
Sample:
サンプル:
1 | ObjectDelete("text_object"); |