gui_linesize

Sets the line heights for the next window() open call.

Available in:

Apps (win) Apps (char) Reportwriter RPC Standalone PL
X        

Syntax

void gui_linesize(sizes)
string            sizes

Description

Sets the line heights for the next window() open. Sizes are in pixels and can be either absolute or relative values. The sizes are blank deliniated.
sizes specifies the line heights

Notes

Once the next window() open occurs, the line height values return to the original values.

Example

Change the line height of the first three lines to 10, +3, and -5 pixels.
gui_linesize("10 +3 -5");
This means that the first line will be 10 pixels, the second the cell height plus 3 pixels, and the third line the cell height minus 5 pixels. The rest of the lines in the window will be cell height. The values +/-0 can be used as fillers to skip lines.