NewFromGlobal (PersistentObjectInfo function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 6: Line 6:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%persObjInfo</th><td>A <var>PersistentObjectInfo</var> object variable.</td></tr>
<tr><th>%persObjInfo</th><td>A <var>PersistentObjectInfo</var> object variable.</td></tr>
<tr><th><var>[(PersistentObjectInfo)]</var></th>
<tr><th><var>[%(PersistentObjectInfo)]</var></th>
<td>For a shared function, this optional specification of the class in parentheses denotes a [[Notation conventions for methods#Shared methods|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking <var>NewFromGlobal</var>.</td></tr>
<td>For a shared function, this optional specification of the class in parentheses denotes a [[Notation conventions for methods#Shared methods|virtual constructor]]. See [[#Usage notes|"Usage notes"]], below, for more information about invoking <var>NewFromGlobal</var>.</td></tr>
<tr><th>string</th>
<tr><th>string</th>

Revision as of 19:39, 23 August 2011

Get info about global object (PersistentObjectInfo class)

[Introduced in Sirius Mods 7.8]


Syntax

%persObjInfo = [%(PersistentObjectInfo):]NewFromGlobal( name)

Syntax terms

%persObjInfoA PersistentObjectInfo object variable.
[%(PersistentObjectInfo)] For a shared function, this optional specification of the class in parentheses denotes a virtual constructor. See "Usage notes", below, for more information about invoking NewFromGlobal.
string A string that identifies the name of the global variable whose information is returned to %persObjInfo.

Usage notes

  • As described in "Virtual Constructor methods", NewFromGlobal can be invoked with no method object, with an explicit class specification, or with an object variable of the class, even if that object is Null:

    %persObjInf = NewFromGlobal('PART') %persObjInf = %(PersistentObjectInfo):NewFromGlobal('PART') %persObjInf = %persObjInf:NewFromGlobal('PART')

Examples

See also