The font of the specified control.
object.Font
Part | Attribute | Type | Description |
---|---|---|---|
object |
Required | The object always implements the
ISControl interface |
StdFont
Display some information about the specified control, including its font name and font size.
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
Profile.MsgBox(aControlInfo)
In Profile Client v8 on User Interface Font can be found in
.