GetColumnObject - cWebList

Returns the column object handle of the passed column ID

Type: Function

Return Data Type: Handle

Parameters: Integer iColumnID

ParameterDescription
iColumnIDThe column Id for which to return the handle


Return Value

The column object handle of the passed column ID


Syntax
Function GetColumnObject Integer iColumnID Returns Handle

Call: Get GetColumnObject iColumnID to HandleVariable


Description

Returns the column object handle of the passed column ID.


Sample

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