Parameter | Description |
---|---|
iColumnID | The column Id for which to return the handle |
The column object handle of the passed column ID
Function GetColumnObject Integer iColumnID Returns Handle
Call: | Get GetColumnObject iColumnID to HandleVariable |
Returns the column object handle of the passed column ID.
This sample shows how to use GetColumnObject to get the handle of a specific column object.
Handle hoColumn Integer iMyColumn Move 5 to iMyColumn Get GetColumnObject iMyColumn to hoColumn If (hoColumn) Begin // do something End