onColumnClick (Callback)


onColumnClick (idControl, iColumn)

This callback is invoked when the user clicks a column in a list view control

Parameter Description
idControl The id of the list view control the user clicked
iColumn The 0 based index of the column in the list view control that the user clicked

Returns

0

Remarks

This is a callback function. You must supply it yourself. To register this callback, use the WinXRegOnColumnClick function.

Examples

' A simpe onColumnClick callback
FUNCTION onColumnClick (idControl, iColumn)

PRINT "You clicked column: ";iColumn

END FUNCITON

Related Links

List View Controls
WinXRegOnColumnClick