[]
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.
IFont Font { get; }
ReadOnly Property Font As IFont
ITableStyle tableStyle = workbook.TableStyles.Add("CustomTableStyle");
ITableStyleElement element = tableStyle.TableStyleElements[TableStyleElementType.HeaderRow];
IFont font = element.Font;
font.Bold = true;