This property is True if the specified control inherits the font from its parent control.
object.ParentFont
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISControl interface |
bool
Display ParentFont for the specified control.
Dim aControl
Dim aControlInfo
Set aControl = Form.Controls_("chkMV")
set aFont = aControl.Font
aControlInfo =_
"Caption: " & aControl.Caption & vbNewLine &_
"TypeName: " & aControl.TypeName & vbNewLine &_
"Font Name: " & aFont.Name & vbNewLine &_
"Font Size:" & aFont.Size & vbNewLine &_
"Parent Font: " & aControl.ParentFont
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Parent Font can be found in
.