Access the browse columns
- Last Updated: May 1, 2024
- 1 minute read
- OpenEdge
- Version 13.0
- Documentation
Each of the browse columns is an object in its own right, with its own handle. If you want to set individual column attributes at run time (for example, to enable columns for update), you set those attributes through the handle. Static browse columns are objects with handles as well, but you can also access those by name. Dynamic browse columns, like other dynamic objects, have no name, so you must use their handle.
READ-ONLY attribute to false. Browse columns do not use the
SENSITIVE attribute.The browse FIRST-COLUMN attribute returns the handle to the first
(leftmost) column in the browse. Each column’s NEXT-COLUMN attribute
returns the handle of the column next to it. For example, you can add this block of code
to the OlineFields LEAVE trigger:
|
When you run the procedure again and select fields, the following figure shows what you see.