This property is True if the specified control 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
ISControl interface |
bool
Display isVisible for the specified control.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("chkMV")
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"IsVisible: " & aControl.isVisible & vbNewLine &_
"TypeName: " & aControl.TypeName
Profile.MsgBox(aControlInfo)