GML::SET_COLUMN_WIDTH - Set Column Width
Syntax
CALL "GML::SET_COLUMN_WIDTH"
Description
This procedure sets the width of the columns in the grid.
The value in GML_TPL$ template variable GML_TPL.COL$[c] is used to designate the width of each individual column in the grid.
Example
Set the first two columns in a grid to a width of 50 pixels, and the remaining two to 20 pixels.
2400 GML.SET%=1
2410 CALL "GML::TPL_PREP"
2420 GML_TPL.COL$[1]="50"
2430 GML_TPL.COL$[2]="50"
2440 GML_TPL.COL$[3]="20"
2450 GML_TPL.COL$[4]="20"
2460 CALL "GML::SET_COLUMN_WIDTH"