Xbasic
{LF}
Syntax
{LF [ = Lines ] }
Arguments
- Lines
Numeric. The number of lines to advance. The line height is by default based on the default font, which is Arial, 8 point.
Description
The {LF} command inserts one or more carriage return line feed sequences.
Example
The following script puts a blank line after the Lastname row and puts two blank lines between the Zip row and the OK button:
result=ui_dlg_box("Title",<<%dlg% First name:| [.32firstname]; Last name:| [.32lastname]; {lf}; Address 1:| [.32address1]; Address 2:| [.32address2]; City:| [.32City]; State:| [State]; Zip:| [Zip]; {lf}; {lf}; %dlg%)
ui_dlg_box("Xdialog Sample", <<%dlg% {lf}<*Click Here>; {lf=10}; %dlg%)
Limitations
Desktop applications only
See Also