如何使用 npoi在cell backgroudn
使用类中设置 RGB 颜色xssfworkbook
?
byte[] rgb = new byte[3] { 192, 50, 90 };
XSSFCellStyle HeaderCellStyle1 = (XSSFCellStyle)wb.CreateCellStyle();
HeaderCellStyle1.SetFillForegroundColor(new XSSFColor(new Color(255, 255, 255)));
Run Code Online (Sandbox Code Playgroud)
我不想使用这种模式:
titlestyle.BottomBorderColor = IndexedColors.Grey25Percent.Index;
Run Code Online (Sandbox Code Playgroud)