[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITextRun.Font

Font Property

Font

Returns the font settings of current text run.

Declaration
IFont Font { get; }
ReadOnly Property Font As IFont
Examples
IRichText richText = worksheet.Range["A1"].RichText;
ITextRun run = richText.Add("Document");
IFont font = run.Font;
font.Bold = true;