- Code: Select all Expand view
oCol := oBrw:oCol( 3 ) --> Quantity column object, which is the 3rd column at the time of creation.
oCol := oBrw:oCol( "Quantity" ) --> Quantity column object, whose header is "Quantity"
oCol := oBrw:Quantity --> Same as above
Once we get the column object we want, then:
- Code: Select all Expand view
oCol:lHide --> Whether the column is hidden or not
oCol:nPos --> Visible column number at runtime if not hidden
Now, please explain what are you trying to do but having problems/confusion.