Print (Arraylist subroutine)

From m204wiki
Revision as of 23:58, 19 January 2011 by Wiccan (talk | contribs) (1 revision)
Jump to navigation Jump to search

Print Arraylist (Arraylist class)

Print is a member of the Arraylist class.

This subroutine displays the contents of an Arraylist on the user's standard output device, typically a terminal. The list item values, displayed in ascending order by their position, are preceded by their item number, which by default is followed by a colon (:) and a blank.

Syntax

al:Print[( [itemFunction], [NumWidth= number], [Separator= string], - [Start= number], [MaxItems= number], [Label= string])]

Syntax terms

al An Arraylist object.
method The method that is applied to al items to produce the printed output. The method must take no parameters and produce an intrinsic (Float, String, Fixed, Unicode) value. It may be a system or user-written method, a class variable or property, a local method, or a method variable. The default value of method is ToString.
numWidth The number of bytes in the display of each item to use for the item number. This is an optional parameter; if you specify a value, the parameter name NumWidth is required.

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. The width must be a number between -1 and 10 inclusive. If you specify a value of 0, the item number is not displayed.

If numWidth is -1, the default, the method uses the minimum number of bytes required to show the item number. For example, one byte is required for item number 5, while five bytes are required for item number 98764.
separator A string, 15 characters or less, to be used to separate the item number from the item value. This is an optional argument whose default is a colon (:). A blank always follows the separator string. If you specify a value, the parameter name Separator is required.
start The item number of the initial item in the output display. This is an optional argument, and it defaults to 1. If you specify a value, the parameter name Start is required.
maxItems The maximum number of items to display. A zero or negative value means to display all the items. This is an optional argument, and it defaults to zero. If you specify a value, the parameter name MaxItems is required.
label A literal string that gets output before each line. This is useful for "tagging" lines to make them more identifiable. This is an optional argument whose default is a null string. If you specify a value, the parameter name Label is required.

Usage notes

  • All errors in Print result in request cancellation.
  • Audit and Trace are the same as Print except they send their output to the audit trail and selected trace destination, respectively.
  • For examples of Print method calls, see Printing a collection.