Font Property

Applies To

AxisTitle object, Characters object, ChartArea object, ChartTitle object, DataLabel object, DataLabels collection object, DataTable object, FormatCondition object, Legend object, LegendEntry object, Phonetic object, Range object, Style object, TickLabels object.

Description

Returns a Font object that represents the font of the specified object. Read-only.

See Also

Font object.

Example

This example sets the font in cell B5 on Sheet1 to 14-point bold italic.

With Worksheets("Sheet1").Range("B5").Font
    .Size = 14
    .Bold = True
    .Italic = True
End With