Article: AN0001669Updated:
This object is list of objects ColumnClassDefUserSet.
Object properties
All the functions are associated with the list of objects, over which the function is called.
Example of hiding a column with code 'description' in the detail form with data (DataDetail.aspx):
OGColumns.GetByCode('description').Visible = false;
OGColumns['description'].Visible = false;
Example of setting up read-only mode for column with code 'color' in the detail form with data (DataDetail.aspx):
OGColumns.GetByCode('color').ReadOnly = true;
Example of renaming column with code 'color' in the detail form with data (DataDetail.aspx):
OGColumns.GetByCode('color').Name = 'New name';