This property is True if the specified combo box is visible at runtime. This property is not accessible in the Object Inspector.
object.isVisible
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISComboBox interface |
bool
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)