[]
Gets an instance of IFont that represents the font of this conditional format.
IFont Font { get; }
ReadOnly Property Font As IFont
worksheet.Range["A1:A5"].Value = new object[,] {
{100}, {100}, {200}, {300}, {400}
};
IUniqueValues condition = worksheet.Range["A1:A5"].FormatConditions.AddUniqueValues();
IFont font = condition.Font;
font.Bold = true;