

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