[]
Gets an instance of IFont which represents the font of this conditional format.
IFont Font { get; }
ReadOnly Property Font As IFont
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {20}, {30}, {40}, {50}};
IAboveAverage format = worksheet.Range["A1:A5"].FormatConditions.AddAboveAverage();
IFont font = format.Font;
font.Bold = true;