List (ProcedureInfo function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
Line 1: Line 1:
{{Template:ProcedureInfo:List subtitle}}
{{Template:ProcedureInfo:List subtitle}}


This page is [[under construction]]
This method returns the information of one, many, or all procedures in a specified procedure file or group.
 
==Syntax==
==Syntax==
{{Template:ProcedureInfo:List syntax}}
{{Template:ProcedureInfo:List syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
Line 10: Line 12:


<tr><th><var>%(ProcedureInfo)</var></th>
<tr><th><var>%(ProcedureInfo)</var></th>
<td>The class name in parentheses denotes a shared method. List can also be invoked via a <var>ProcedureInfo</var> object variable, which may be <var>Null</var>.</td></tr>
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method. List can also be invoked via a <var>ProcedureInfo</var> object variable, which may be <var>Null</var>.</td></tr>


<tr><th><var>In</var></th>
<tr><th><var>In</var></th>

Revision as of 20:53, 21 June 2012

Get list of procedures (ProcedureInfo class)

[Introduced in Sirius Mods 7.8]


This method returns the information of one, many, or all procedures in a specified procedure file or group.

Syntax

%procedureInfoList = %(ProcedureInfo):List( In= string, [Name= string])

Syntax terms

%procedureInfoList An Arraylist of Object ProcedureInfo object variable.
%(ProcedureInfo) The class name in parentheses denotes a shared method. List can also be invoked via a ProcedureInfo object variable, which may be Null.
In This required, name required parameter is a string that specifies the file or group that contains the procedure(s) to be listed.
Name This optional, name required, parameter is a string that identifies the procedure(s) whose information will be returned. The string may contain standard, non-regex, User Language wildcards.

Specifying no Name value is the same as specifying an asterisk (*), which returns information for all the procedures.

Usage notes

  • The List method does not have parameters to select procedures based on last update time or last updating user ID. You can accomplish the same thing by using the Arraylist subsetting methods, though this approach would be significantly more expensive if a large list were built only to select a small subset.

Examples

See "Example".

See also