ISComboBox.isVisible

Description

This property is True if the specified combo box is visible at runtime. This property is not accessible in the Object Inspector.

Syntax

object.isVisible

Part Attribute Type Description
object Required
The object always implements the ISComboBox interface

Return Value

bool

Example

Display isVisible for the specified combo box.

Dim aControl
Dim aControlInfo

Set aControl = Form.Controls_("cmbInform")
aControlInfo =_
  "Caption: " & aControl.Caption & vbNewLine &_ 
  "Short Name: " & aControl.ShortName & vbNewLine &_
  "TypeName: " & aControl.TypeName & vbNewLine &_
  "Is Visible: " & aControl.isVisible              
  
Profile.MsgBox(aControlInfo) 
Note: This macro should be executed in any event handler of the form control.

Version information

Added in v7.8.0