The parent control of the specified signature control.
object.Parent
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISSignature interface |
Display the short name and type name of the parent control associated with the specified signature control.
Dim aSignature
Dim aParentControl
Dim aSignatureInfo
Set aSignature = Form.Controls_("Signature1")
set aParentControl = aSignature.Parent
aSignatureInfo =_
"PARENT CONTROL: " & vbNewLine &_
"Short Name: " & aParentControl.ShortName & vbNewLine &_
"Type Name: " & aParentControl.TypeName
Profile.MsgBox(aSignatureInfo)
In Profile Client v8 on User Interface Parent can be found in
.