[]
        
(Showing Draft Content)

GrapeCity.Documents.Excel.ITableStyleElement.Font

Font Property

Font

Gets the font settings for this table style element.

Use the returned IFont object to configure text formatting for the current table style element, such as bold, italic, or font color.

Declaration
IFont Font { get; }
ReadOnly Property Font As IFont
Examples
ITableStyle tableStyle = workbook.TableStyles.Add("CustomTableStyle");
ITableStyleElement element = tableStyle.TableStyleElements[TableStyleElementType.HeaderRow];
IFont font = element.Font;
font.Bold = true;