ISBevel.Parent

Description

The parent control of the specified bevel.

Syntax

object.Parent

Part Attribute Type Description
object Required
The object always implements the ISBevel interface
Restriction: This property is readonly.

Return Value

ISControl

Example

Display the short name and type name of the parent control associated with the specified bevel.

Dim aBevel
Dim aParentControl
Dim aControlInfo

Set aBevel = Form.Controls_("Bevel2")
set aParentControl = aBevel.Parent
aControlInfo =_
  "ShortName: " & aParentControl.ShortName & vbNewLine &_
  "TypeName: " & aParentControl.TypeName
  
Profile.MsgBox(aControlInfo) 
Note: This macro should be executed in any event handler of the form control.

In Profile Client v8 on User Interface Parent can be found in Maintain > Templates > Health Record Collection Templates > Open the selected form template > Open form editor > Object Inspector.

Version information

Added in v7.8.0