Print the text contained between the start and the end mark. At the end of the text issues a break line.
1 lpr.println
<lpr.println trim='true|false'>
<text /> !
</lpr.println>
Attributes | |||||
---|---|---|---|---|---|
Name | Type | Required | Default | Description | |
Atrim | string | Indicates if the blank spaces are removed from the beginning of the text. |
Arguments | |||||
---|---|---|---|---|---|
Name | Type | Required | Unique | Nullable | Description |
Etext | String | The text which is sent. |
Returns | |
---|---|
Type | Description |
String | Returns the text which has been printed. |
Example
Printing with the break line.
Copy
<xsql-script name='exp_sample1'> <lpr host='w2ksrv1' user='dvt' queue='hplj_3330'> <for name='a' start='1' end='10'> <do> <lpr.println>Line <a/></lpr.println> </do> </for> </lpr> </xsql-script>