Font Property
Font
Returns the font settings of current text run.
Declaration
ReadOnly Property Font As IFont
Examples
IRichText richText = worksheet.Range["A1"].RichText;
ITextRun run = richText.Add("Document");
IFont font = run.Font;
font.Bold = true;