How to determine the current column

Requirement: bBrowser 1.4

 

With the access bBrowser:CurrentColumn the number of the current column can be determined. Following with the method bBrowser:GetOpenColumn() the column object for the column number can be determined.

The following code fragment demonstrates the proceeding:

LOCAL iColNo AS DWORD

LOCAL oColumn AS bDataColumn

 

iColNo := oBrowser:CurrentColumn

IF iColNo>0

  oColumn := oBrowser:GetOpenColumn(iColNo)

ENDIF