DiscardGlobal (Object subroutine): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 2: Line 2:


This page is [[under construction]].
This page is [[under construction]].
==Syntax==
==Syntax==
{{Template:Object:DiscardGlobal syntax}}
{{Template:Object:DiscardGlobal syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th nowrap="true"><var>%(Object)</var></th>
<tr><th nowrap="true"><var>%(Object)</var></th>
<td>The class name in parentheses denotes a shared method. <var>DiscardGlobal</var> can also be invoked via a <var>Object</var> object variable, which may be <var>Null</var>.</td></tr>
<td>The class name in parentheses denotes a shared method. <var>DiscardGlobal</var> can also be invoked via an <var>Object</var> class object variable, which may be <var>Null</var>.</td></tr>
 
<tr><th>name</th>
<tr><th>name</th>
<td>string</td></tr>
<td>A string that specifies the name of the object to be discarded.</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
If the specified global name does not reference an object, this method does nothing.
If the specified global name does not reference an object, this method does nothing.


==Examples==
==Examples==
==See also==
==See also==
{{Template:Object:DiscardGlobal footer}}
{{Template:Object:DiscardGlobal footer}}

Revision as of 15:55, 7 August 2014

Discard a global object (Object class)


This page is under construction.

Syntax

%(Object):DiscardGlobal( name)

Syntax terms

%(Object) The class name in parentheses denotes a shared method. DiscardGlobal can also be invoked via an Object class object variable, which may be Null.
name A string that specifies the name of the object to be discarded.

Usage notes

If the specified global name does not reference an object, this method does nothing.

Examples

See also