gridcolumn property: Grid class

Description

If a grid column name is used as a property, it accesses the grid column with that name. This means the following code:

&Mycolumn = &MyGrid.gridcolumnname;

acts the same as

&Mycolumn = &MyGrid.GetColumn(columnname);

This property is read-only.