This property is True if the specified checkbox is visible at runtime. It is not accessible in the Object Inspector.
object.isVisible
| Part | Attribute | Type | Description |
|---|---|---|---|
object |
Required | The object always implements the
ISCheckBox interface |
bool
Display isVisible for the specified checkbox.
Dim aCheckBox
Dim aControlInfo
set aCheckBox = Form.Controls_("chkMV")
aControlInfo =_
"Caption: " & aCheckBox.Caption & vbNewLine &_
"Is Visible: " & aCheckBox.isVisible
Profile.MsgBox(aControlInfo)