This property is True if the specified radio button inherits the font from its parent control.
object.ParentFont
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISRadioButton interface |
bool
Display ParentFont for the specified radio button.
Dim aControl
Dim aFont
Dim aControlInfo
Set aControl = Form.Controls_("rbCaseOne")
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
.