New (ProcedureInfo constructor): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (Automatically generated page update)
 
mNo edit summary
Line 7: Line 7:
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%outProcedureInfo</th><td>procedureInfo</td></tr>
<tr><th>%outProcedureInfo</th><td>procedureInfo</td></tr>
<tr><th>(ProcedureInfo)</th>
<tr><th><var>[%(ProcedureInfo)]</var></th>
<td>The class name in parentheses denotes a shared method. New can also be invoked via a ProcedureInfo object variable, which may be <var>Null</var>.</td></tr>
<td>The optional class name in parentheses denotes a <var>[[Notation conventions for methods#Constructors|Constructor]]</var>. See [[#Usage notes|"Usage notes"]], below, for more information about invoking a <var>ProcedureInfo</var> <var>Constructor</var>.</td></tr>
<tr><th><var>In</var></th>
<tr><th><var>In</var></th>
<td>string</td></tr>
<td>string</td></tr>
Line 14: Line 14:
<td>string</td></tr>
<td>string</td></tr>
</table>
</table>
==Usage notes==
==Usage notes==
==Examples==
<ul>
<li>As described in [[Object variables#Using New or other Constructors|"Using New or other Constructors"]], <var>New</var> can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is <var>Null</var>:<p class="code">%procInf = new
 
%procInf = %(ProcedureInfo):new
 
%procInf = %procInf:new
</p>
</ul>
==See also==
==See also==
{{Template:ProcedureInfo:New footer}}
{{Template:ProcedureInfo:New footer}}

Revision as of 01:37, 23 August 2011

Create a new ProcedureInfo instance (ProcedureInfo class)

[Introduced in Sirius Mods 7.8]


This page is under construction

Syntax

%procedureInfo = [%(ProcedureInfo):]New( In= string, Name= string)

Syntax terms

%outProcedureInfoprocedureInfo
[%(ProcedureInfo)] The optional class name in parentheses denotes a Constructor. See "Usage notes", below, for more information about invoking a ProcedureInfo Constructor.
In string
Name string

Usage notes

  • As described in "Using New or other Constructors", New can be invoked with no object, with an explicit class name, or with an object variable in the class, even if that object is Null:

    %procInf = new %procInf = %(ProcedureInfo):new %procInf = %procInf:new

See also