[]
Gets an instance of IFont which represents the font of this conditional format.
Use the returned IFont object to configure font settings that are applied when the top 10 conditional formatting rule is triggered.
IFont Font { get; }
ReadOnly Property Font As IFont
worksheet.Range["A1:A5"].Value = new object[,] {{10}, {30}, {20}, {50}, {40}};
ITop10 top10 = worksheet.Range["A1:A5"].FormatConditions.AddTop10();
top10.Rank = 2;
IFont font = top10.Font;
font.Bold = true;