[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.Drawing.ITextRange.Font

Font Property

Font

Gets the IFontFormat object that represents character formatting for the text range.

Declaration
IFontFormat Font { get; }
ReadOnly Property Font As IFontFormat
Examples
ITextRange textRange = shape.TextFrame.TextRange;
textRange.Text = "Sales Report";
textRange.Font.Bold = true;
bool bold = textRange.Font.Bold;