Print (Stringlist function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (typos)
mNo edit summary
Line 12: Line 12:
<td>The <var>Stringlist</var> object. </td></tr>
<td>The <var>Stringlist</var> object. </td></tr>
<tr><th>NumWidth</th>
<tr><th>NumWidth</th>
<td>The number of bytes in the display of each line to use for the item number. The parameter name, <var class="term">NumWidth</var>, is optional. The length must be a number between 0 and 10 inclusive; if it is greater than 0, a blank is placed after the item number. Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it. This is an optional argument; it defaults to zero, which means the item numbers are not displayed. </td></tr>
<td>The number of bytes in the display of each line to use for the item number. The parameter name, <var class="term">NumWidth</var>, is optional. The length must be a number between 0 and 10 inclusive; if it is greater than 0, a blank is placed after the item number. Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it. <p>This is an optional argument; it defaults to zero, which means the item numbers are not displayed. </p></td></tr>
<tr><th>LenWidth</th>
<tr><th>LenWidth</th>
<td>The number of bytes in the display of each line to use for the item length. The parameter name, <var class="term">LenWidth</var>, is optional. The length must be a number between 0 and 4 inclusive; if it is greater than 0, a blank is placed after the item length. Item lengths are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item length exceeds the space allocated for it. This is an optional argument; it defaults to zero, which means the item lengths are not displayed. </td></tr>
<td>The number of bytes in the display of each line to use for the item length. The parameter name, <var class="term">LenWidth</var>, is optional. The length must be a number between 0 and 4 inclusive; if it is greater than 0, a blank is placed after the item length. Item lengths are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item length exceeds the space allocated for it. <p>This is an optional argument; it defaults to zero, which means the item lengths are not displayed. </p></td></tr>
<tr><th>Start</th>
<tr><th>Start</th>
<td>This is the number of the initial item to display. This is an optional argument, and it defaults to 1. </td></tr>
<td>The number of the initial item to display. The parameter name, <var class="term">Start</var>, is optional. <p>This is an optional argument, and it defaults to 1. </p></td></tr>
<tr><th>MaxItems</th>
<tr><th>MaxItems</th>
<td>This is the maximum number of items to display. A zero or negative value means to display all the <var class="term">sl</var> items. This is an optional argument; it defaults to zero, which means display to the end of <var class="term">sl</var>.</td></tr>
<td>The maximum number of items to display. The parameter name, <var class="term">MaxItems</var>, is optional. A zero or negative value means to display all the <var class="term">sl</var> items. <p>This is an optional argument; it defaults to zero, which means display to the end of <var class="term">sl</var>.</p></td></tr>
</table>
</table>



Revision as of 19:38, 28 January 2011

Display contents of a Stringlist (Stringlist class)


This callable method displays the contents of a Stringlist on the user's standard output device, typically a terminal.

Syntax

[%count =] sl:Print[( [[NumWidth=] number], [[LenWidth=] number], - [[Start=] number], [[MaxItems=] number])]

Syntax terms

%count A numeric variable that is set to the number of Stringlist items displayed.
sl The Stringlist object.
NumWidth The number of bytes in the display of each line to use for the item number. The parameter name, NumWidth, is optional. The length must be a number between 0 and 10 inclusive; if it is greater than 0, a blank is placed after the item number. Item numbers are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item number exceeds the space allocated for it.

This is an optional argument; it defaults to zero, which means the item numbers are not displayed.

LenWidth The number of bytes in the display of each line to use for the item length. The parameter name, LenWidth, is optional. The length must be a number between 0 and 4 inclusive; if it is greater than 0, a blank is placed after the item length. Item lengths are right-justified within the indicated number of bytes, and they are truncated on the left if the length of the item length exceeds the space allocated for it.

This is an optional argument; it defaults to zero, which means the item lengths are not displayed.

Start The number of the initial item to display. The parameter name, Start, is optional.

This is an optional argument, and it defaults to 1.

MaxItems The maximum number of items to display. The parameter name, MaxItems, is optional. A zero or negative value means to display all the sl items.

This is an optional argument; it defaults to zero, which means display to the end of sl.

Usage notes

  • All errors in Print result in request cancellation.
  • The parameter names were introduced in Sirius Mods Version 7.0; for versions prior to that, the parameters can only be specified positionally. For example, to display the contents of a Stringlist with 6 bytes to be used for the column containing the item width, and limiting the display to 20 items, you can use positional parameters:

    %listrint(,6,,20)

  • Under Sirius Mods 7.0 and later, you can do the same thing with named parameters:

    %listrint(lenWidth=6, maxItems=20)

See also