Type | Description | |||
IFontDisp | A Font object that's applied to items or columns. |
You can change directly the font attributes, like follows:
The following VB sample changes the font for ALL cells in the first column:
With ComboBox1.ConditionalFormats.Add("1") .ApplyTo = 0 Set .Font = New StdFont With .Font .Name = "Comic Sans MS" End With End With