Font Properties

Determines the font object for an eliment of the control.


Syntax

object.CBFont [= font ]
object.RLFont [= font ]
object.LLFont [= font ]

The syntax of the Font properties has these parts:

PartDescription
objectA DCombo control.
font  A font object.

Remarks

Fonts can be set independently for each list and the combo box itself.

Note: When changing the properties of a font object such as DCombo1.CBFont.Bold = True, the CBFont property will imediately be updated.  The RLFont and LLFont properties will not.  When changing these font properties use the appropriate Refresh Method as in the following example.

DCombo1.RLFont.Bold = True
DCombo1.RLFont.Italic = True
DCombo1.RLRefresh

Data Type

Font