Example #1
0
 public static FluentCell LargeHeaderStyle(this FluentCell cell)
 {
     return cell.SolidFill(HSSFColor.Grey25Percent.Index)
                .FontWeight(FontBoldWeight.Bold)
                .Italic(true)
                .FontHeightInPoints(20);
 }
Example #2
0
 public static FluentCell SummaryStyle(this FluentCell cell)
 {
     return cell.SolidFill(HSSFColor.Grey25Percent.Index)
                .FontWeight(FontBoldWeight.Bold)
                .BorderAll(BorderStyle.Thin);
 }
Example #3
0
 public static FluentCell HeaderStyle(this FluentCell cell)
 {
     return cell.SolidFill(HSSFColor.Grey25Percent.Index)
                .FontWeight(FontBoldWeight.Bold);
 }
Example #4
0
 public static FluentCell FormatPercentage(this FluentCell styledCell)
 {
     return styledCell.Format("0.00%");
 }