public static FluentCell LargeHeaderStyle(this FluentCell cell) { return cell.SolidFill(HSSFColor.Grey25Percent.Index) .FontWeight(FontBoldWeight.Bold) .Italic(true) .FontHeightInPoints(20); }
public static FluentCell SummaryStyle(this FluentCell cell) { return cell.SolidFill(HSSFColor.Grey25Percent.Index) .FontWeight(FontBoldWeight.Bold) .BorderAll(BorderStyle.Thin); }
public static FluentCell HeaderStyle(this FluentCell cell) { return cell.SolidFill(HSSFColor.Grey25Percent.Index) .FontWeight(FontBoldWeight.Bold); }