This property is True if the specified memo control 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
ISMemo interface |
bool
Display isVisible for the specified memo control.
Dim aMemo
Dim aMemoInfo
Set aMemo = Form.Controls_("memComment")
aMemoInfo =_
"Short Name: " & aMemo.ShortName & vbNewLine &_
"Type Name: " & aMemo.TypeName & vbNewLine &_
"Is Visible: " & aMemo.IsVisible
Profile.MsgBox(aMemoInfo)