Skip to content

IsColumnVisible - DfBaseEntryList

Determine if a particular column is visible

Type: Property
Access: Read-Only
Data Type: Integer
Parameters: None

Parameters

Parameter Type Description
iColumn Integer The column number

Syntax

Property Integer IsColumnVisible
Access Type Syntax
Read Access: Get IsColumnVisible to IntegerVariable

Description

IsColumnVisible can be called to determine if a particular column is visible. You can use this to determine if you need to perform a scroll by sending the DoMakeColumnVisible message.

Procedure CheckCol integer iCol
    Boolean bVisible

    Get IsColumnVisible iCol to bVisible
    If not bVisible Begin
        Send DoMakeColumnVisible iCol
    End
End_Procedure