[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.IUniqueValues.Font

Font Property

Font

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

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