Arguments (System function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
mNo edit summary
mNo edit summary
Line 1: Line 1:
{{Template:System:Arguments subtitle}}  
{{Template:System:Arguments subtitle}}  
The <var>Arguments</var> shared function returns the arguments passed in the INCLUDE command for the procedure that contained the <var>Begin</var> statement for the current request.
The <var>Arguments</var> shared function returns the arguments passed in the <var>INCLUDE</var> command for the procedure that contained the <var>Begin</var> statement for the current request.
   
   
==Syntax==
==Syntax==
{{Template:System:Arguments syntax}}
{{Template:System:Arguments syntax}}
===Syntax terms===
===Syntax terms===
<table class="syntaxTable">
<table class="syntaxTable">
<tr><th>%string</th><td>A string to receive the arguments passed on the INCLUDE command.</td></tr>
<tr><th>%string</th>
<tr><th><var>%(System)</var></th><td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method.</td></tr>
<td>A string to receive the arguments passed on the INCLUDE command.</td></tr>
<tr><th><var>%(System)</var></th>
<td>The class name in parentheses denotes a [[Notation conventions for methods#Shared methods|shared]] method.</td></tr>
</table>
</table>



Revision as of 00:06, 23 February 2012

The arguments passed to this request (System class)

The Arguments shared function returns the arguments passed in the INCLUDE command for the procedure that contained the Begin statement for the current request.

Syntax

%string = %(System):Arguments

Syntax terms

%string A string to receive the arguments passed on the INCLUDE command.
%(System) The class name in parentheses denotes a shared method.

Usage Notes

  • Arguments provides functionality similar to that provided by ?? dummy string arguments, with some important differences:
    • It is processed at evaluation time, not compile time.
    • The entire argument string is returned in one string, providing much more flexibility in how the argument list is parsed.
    • Arguments does not "eat" the arguments. That is, it can be invoked as often as you want, and it always returns the same values for a particular request invocation.
    • Arguments does not prompt the user for arguments if none were specified; it simply returns a null. This makes it possible for arguments to be optional.
    • Arguments makes request invocation arguments available to procedures Included by the outermost evaluating procedure.
  • As shown in the "Examples" section, below, the Arguments method returns everything after the INCLUDEd procedure name, including any blanks or commas after the procedure name.
  • Arguments is available in Sirius Mods Version 7.2 and later.

Examples

  1. If procedure FOO contains the following:

    begin printText {~} = '{%(system):arguments}' end

    The requests (preceded by >) below produce the outputs shown on the line that follows the request:

    > I FOO This is a test %(system):arguments = ' This is a test' > I FOO,This is a test %(system):arguments = ',This is a test' > I FOO This is a test %(system):arguments = ' This is a test' > I FOO This,is,a,test %(system):arguments = ' This,is,a,test' > I FOO %(system):arguments = ''

  2. Note that the same values, above, would be printed if FOO contained:

    begin i fooInner end

    and procedure FOOINNER contained:

    printText {~} = '{%(system):arguments}'

See also