The parent control of the specified image control.
object.Parent
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISImage interface |
Display the short name and type name of the parent control associated with the specified image control.
Dim aImage
Dim aParentControl
Dim aImageInfo
Set aImage = Form.Controls_("Image1")
set aParentControl = aImage.Parent
aImageInfo = "Parent Info: " & vbNewLine &_
"ShortName: " & aParentControl.ShortName & vbNewLine &_
"TypeName: " & aParentControl.TypeName
Profile.MsgBox(aImageInfo)
In Profile Client v8 on User Interface Parent can be found in
.