This property is True if the specified radio button 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
ISRadioButton interface |
bool
Display isVisible for the specified radio button.
Dim aRadioButton
Dim aControlInfo
Set aRadioButton = Form.Controls_("rbCaseOne")
aControlInfo =_
"Caption: " & aRadioButton.Caption & vbNewLine &_
"ShortName: " & aRadioButton.ShortName & vbNewLine &_
"TypeName: " & aRadioButton.TypeName & vbNewLine &_
"Is Visible: " & aRadioButton.isVisible
Profile.MsgBox(aControlInfo)