[]
Gets the IFontFormat object that represents character formatting for the text range.
IFontFormat Font { get; }
ReadOnly Property Font As IFontFormat
ITextRange textRange = shape.TextFrame.TextRange;
textRange.Text = "Sales Report";
textRange.Font.Bold = true;
bool bold = textRange.Font.Bold;