[]
Gets the IFont object that represents this style's font.
Use this property to access font settings such as bold, size, color, and font name for the style.
IFont Font { get; }
ReadOnly Property Font As IFont
IStyle style = workbook.Styles.Add("headerStyle");
style.Font.Bold = true;
worksheet.Range["A1"].Style = style;
IFont font = style.Font;