isCOBOL Evolve : User Interface : Controls Reference : ENTRY-FIELD : Properties : [ Col | Column | Pos | Position ]
[ Col | Column | Pos | Position ]
This property allows you to specify the Entry-Field control’s horizontal position. The value is specified in cells. Decimal values are allowed.
When the Entry-Field control is part of a Screen Section, you may specify 'PLUS', '+' or '-' between the property name and its value. The horizontal position of the Entry-Field control will be relative to the ending position of the prior Screen Section item.
When the Entry-Field control is part of a Screen Section and the COL Property is omitted, COL + 1 is implied.
03 Label, COL 2, SIZE 12, (more screen options).
03 Entry-Field, COL + 1, (more screen options).
The second control will be placed at column 14.
 
Example - Position a entry-field at column 5.0 on the screen section definition screen section.
screen section.
...
  03 screen-1-ef-2 Entry-Field
     line 8.0
     column 5.0
     color 7
     size 45.0 cells 
     id 2
     .