DeleteLocalString(object, string)

オブジェクトに定義された文字列型変数を削除・開放する

void DeleteLocalString(
    object oObject,
    string sVarName
);

Parameters

oObject

変数を保存する対象オブジェクト

sVarName

削除する変数の名称


Description

oObjectに定義されたsVarNameという名称の文字列型変数を削除・開放する



Version

1.22

Example

// sTeamNameという文字列型変数を削除する
DeleteLocalString(OBJECT_SELF, "sTeamName");

See Also

categories: Local Variables Functions


author: Michael Nork, editor: Jeff Lindsey, JP team: ngtaicho
Send comments on this topic.