GlobalList (Object function): Difference between revisions
Jump to navigation
Jump to search
mNo edit summary |
m (→Examples) |
||
Line 29: | Line 29: | ||
==Examples== | ==Examples== | ||
See [[Global and session objects#Using system class methods to access global and session objects|Using system class methods to access global and session objects]]. | See [[Global and session objects#Using system class methods to access global and session objects|Using system class methods to access global and session objects]] and see the <var>PersistentObjectInfo</var> class <var>GlobalList</var> [[GlobalList (PersistentObjectInfo function)#Examples|Examples]]. | ||
==See also== | ==See also== | ||
{{Template:Object:GlobalList footer}} | {{Template:Object:GlobalList footer}} |
Latest revision as of 19:29, 27 August 2014
Get list of global objects (Object class)
[Introduced in Sirius Mods 7.8]
Syntax
%persObjList = %(Object):GlobalList[( [matchString])]
Syntax terms
%persObjList | An Arraylist of Object PersistentObjectInfo object variable. |
---|---|
%(Object) | The class name in parentheses denotes a shared method. GlobalList can also be invoked via an Object class object variable, which may be Null. |
matchString | An optional, case-sensitive, pattern-matching string that identifies the name(s) of the global(s) whose information is to be returned to %persObjList. The default if no string is provided is to return the information of all global objects. |
Usage notes
GlobalList is also a shared method in the PersistentObjectInfo class. Consequently:
- Both of these statements are valid:
%persInfoList = %(object):globalList %persInfoList = %(persistentObjectInfo):globalList
- You can use the Object class GlobalList method the same way the the PersistentObjectInfo class GlobalList method is used in the example in Using GlobalList or SessionList.
Examples
See Using system class methods to access global and session objects and see the PersistentObjectInfo class GlobalList Examples.