[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IAboveAverage.Font

Font Property

Font

Gets an instance of IFont which represents the font of this conditional format.

Declaration
IFont Font { get; }
ReadOnly Property Font As IFont
Examples
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;