The appendline statement appends a text string to a field or variable on a new line.
Parameters
This statement has two parameters:data – Name of field or variable.
text – Text to be appended to field or variable.
Description
This statement appends a text string to a field or variable on a new line. If the field or variable doesn’t have a value yet, the text string is simply assigned to it.
This example creates a mailing label in the local variable mytext.
local mytext
appendline mytext,"Acme Hi Tech Wizards"
appendline mytext,"123 First Avenue"
appendline mytext,"Anytown, USA"
History
Version | Status | Notes |
10.0 | No Change | Carried over from Panorama 6.0. |