NullifyGlobals (Object subroutine)

From m204wiki
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Clear global object references (Object class)


Syntax

%(Object):NullifyGlobals( matchString)

Syntax terms

%(Object) The class name in parentheses denotes a shared method. NullifyGlobals can also be invoked via an Object class object variable, which may be Null.
matchString A "wildcard" string that is applied to the set of global names. The object references of all global names that are matched by matchString are nullified.

If the matchString value is an asterisk (*), all object references of global names are nullified.

Usage notes

If no global names matched by matchString reference an object, this method does nothing.

Examples

See Using system class methods to access global and session objects.

See also