This property is True if the specified image control is visible at runtime.
object.isVisible
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISImage interface |
bool
Display isVisible for the specified image control.
Dim aImage
Dim aImageInfo
Set aImage = Form.Controls_("Image1")
aImageInfo =_
"ShortName: " & aImage.ShortName & vbNewLine &_
"TypeName: " & aImage.TypeName & vbNewLine &_
"Align: " & aImage.Align & vbNewLine &_
"Width: " & aImage.Width & vbNewLine &_
"Height: " & aImage.Height & vbNewLine &_
"Hint: " & aImage.Hint & vbNewLine &_
"Left: " & aImage.Left & vbNewLine &_
"Top: " & aImage.Top & vbNewLine &_
"Is Visible: " & aImage.isVisible
Profile.MsgBox(aImageInfo)
In Profile Client v8 on User Interface is Visible cannot be found.