LoadParameterInfo (XmlDoc subroutine): Difference between revisions
mNo edit summary |
mNo edit summary |
||
Line 21: | Line 21: | ||
<td>This selects, from the sources specified or implied in the method's second argument, all system parameters that match the specified pattern. | <td>This selects, from the sources specified or implied in the method's second argument, all system parameters that match the specified pattern. | ||
Patterns are formed using an asterisk (*) as a wildcard character, where the asterisk stands for one or more characters before or after a specified character string (< | Patterns are formed using an asterisk (*) as a wildcard character, where the asterisk stands for one or more characters before or after a specified character string (<code>A*</code> or <code>*A</code>), or between two specified character strings (<code>A*BC</code>). A solitary asterisk selects all parameters (qualified by <var class="term">familyString</var>). | ||
If you omit the <var class="term">paramOrFam</var> argument, the default for the <var class="term">paramPattern</var> option is to select all parameters. </td></tr> | If you omit the <var class="term">paramOrFam</var> argument, the default for the <var class="term">paramPattern</var> option is to select all parameters. </td></tr> | ||
<tr><th>familyString</th> | <tr><th>familyString</th> | ||
<td>Either or both of the strings: < | <td>Either or both of the strings: <code>Base</code> and <code>Sirius</code>. <code>Base</code> means the <var class="product">Model 204</var> core product; <code>Sirius</code> means the Sirius-added parameters. | ||
If you omit the <var class="term">paramOrFam</var> argument, the default for the <var class="term">familyString</var> option is to select from both < | If you omit the <var class="term">paramOrFam</var> argument, the default for the <var class="term">familyString</var> option is to select from both <code>Base</code> and <code>Sirius</code> parameters. </td></tr> | ||
</table> | </table> | ||
Line 53: | Line 53: | ||
The following request displays all Sirius parameters beginning | The following request displays all Sirius parameters beginning | ||
with < | with <code>A</code> and resettable by the system manager. | ||
The SelectNodes method finds the < | The SelectNodes method finds the <code>reset</code> nodes that have | ||
< | <code><var>System</var> manager</code> descendants; the Print method displays | ||
the parents of those found nodes: | the parents of those found nodes: | ||
<p class="code">Begin | <p class="code">Begin | ||
Line 82: | Line 82: | ||
</p> | </p> | ||
<b>Note:</b> | <b>Note:</b> | ||
The above result displays the <var>XmlDoc</var> format from a <var class="product">Sirius Mods</var> | The above result displays the <var>XmlDoc</var> format from a <var class="product">Sirius Mods</var> version 7.6 request. | ||
Prior to version 7.6, the parameter name was the name of a document Element, | Prior to version 7.6, the parameter name was the name of a document Element, | ||
and the parameter description was the Element's text. | and the parameter description was the Element's text. |
Revision as of 03:14, 18 February 2011
Load parameter info into this XmlDoc (XmlDoc class)
This method loads an XmlDoc with information about Model 204 parameters
in CCA and Sirius products.
A "pattern" argument lets you select parameters
from one or both product families.
This method is primarily intended for User Language products delivered by Sirius Software, and the schema of the returned document may change from release to release.
Syntax
doc:LoadParameterInfo[( [string])]
Syntax terms
doc | An expression that points to the XmlDoc to contain the selected parameter information. This XmlDoc instance must be empty. | ||||
---|---|---|---|---|---|
paramOrFam | An optional argument that is a complement of, and that may be specified before or after, the famOrParam argument. This is a string (case ignored, leading and trailing blanks ignored, default null) that represents either of two options, which have the following forms:
| ||||
famOrParam | An optional argument that is a complement of, and that may be specified before or after, the paramOrFam argument. This argument has the same constituent options as paramOrFam, and it is interpreted as the alternative option type of the one you specify in paramOrFam. |
Usage notes
The parameters that your argument pattern selects are unsorted XML elements in doc, the XmlDoc method object. The information for each parameter currently includes:
- As XML attributes: two or more XML attributes that specify where to locate the parameter within internal data structures, maximum and minimum values (if applicable), and possibly other parameter-specific values.
- As XML child or grandchild elements: a text description of the parameter, where the parameter is set, whether it is a system or user parameter, and whether it is displayed as character, numeric, or hexadecimal.
Example
The following request displays all Sirius parameters beginning
with A
and resettable by the system manager.
The SelectNodes method finds the reset
nodes that have
System manager
descendants; the Print method displays
the parents of those found nodes:
Begin %d is Object Xmldoc %d = new %d:LoadParameterInfo('A*', 'Sirius') %l Object XmlNodelist %l = %d:SelectNodes('//reset[.="System manager"]') %i Float For %i From 1 To %l:Count %l:Item(%i):Print('..') End For End
The example result follows (the long first line is wrapped for display purposes).
<parameter name="ACTRDS" table="KZS" offset="036C" looseMin="-32,768" looseMax="32,767"> <description>ACTIVE RSA SUBTASKS</description> <reset additional="EXEC PARM and User 0"> System manager </reset> <viewClass>system</viewClass> <displayType>numeric</displayType> </parameter>
Note: The above result displays the XmlDoc format from a Sirius Mods version 7.6 request. Prior to version 7.6, the parameter name was the name of a document Element, and the parameter description was the Element's text.