Table Column
Used to define the width of columns as part of a table layout.
In the example below there are 3 columns. The first is 25 pixels wide. The two remaining columns are proportional and share the remaining space equally.
Define_Com Class(#prim_tblo) Name(#TableLayout)
Define_Com Class(#Prim_tblo.Column) Name(#Column1) Parent(#TableLayout) Units(Pixels) Width(25)
Define_Com Class(#Prim_tblo.Column) Name(#Column2) Parent(#TableLayout)
Define_Com Class(#Prim_tblo.Column) Name(#Column3) Parent(#TableLayout)