Forces one or more line break. The print cursor is positioned at coordinates (0, current line + 1). By default, the line skip is performed according to the size (height) of the last printed line.
The print is not started (only
iEndPrinting can be used to start the print).
Remark: This function must not be used in the reports created with the report editor.
// Print a text
iPrint("Hello")
// Line break
iSkipLine()
// Print a text
iPrint("We are" + DateSys())
// Start the print
iEndPrinting()
Syntax
iSkipLine([<Number of Lines to Skip>])
<Number of Lines to Skip>: Optional integer
Number of lines to skip when printing. By default, this number is set to 1.