Skip to content

GetColumnObject - cWebList

Returns the column object handle of the passed column ID

Type: Function
Return Data Type: Handle

Parameters

Parameter Type Description
iColumnID Integer The column Id for which to return the handle

Syntax

Function GetColumnObject Integer iColumnID Returns Handle

Call Example

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

Return Value

The column object handle of the passed column ID