Print the text contained between the start and the end mark.
1 lpr.print
<lpr.print trim='true|false'>
<text /> !
</lpr.print>
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 printed text. |
Example
Printing without 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.print>Word <a/></lpr.print> </do> </for> </lpr> </xsql-script>