Name
ClearObjectData -- clear private data key in an object (V5.0)
Synopsis
ClearObjectData(type, id[, key$])
Function
This function can be used to remove private data from an object. You have to pass the type and identifier of the object whose private data you would like to modify. If the optional argument key$ is specified, ClearObjectData() will remove the data associated with this key only. If key$ is omitted, ClearObjectData() will remove the private data of all keys in this object.

See Object types for a list of all object types.

Inputs
type
type of the object
id
identifier of the object
key$
optional: key which shall be removed from object; if this argument is omitted, all keys will be removed from this object

Show TOC