2
如何使用npoi設置cell backgroudn
中的RGB顏色xssfworkbook
使用npoi?如何在字體中設置RGB顏色使用xssfworkbook npoi
byte[] rgb = new byte[3] { 192, 50, 90 };
XSSFCellStyle HeaderCellStyle1 = (XSSFCellStyle)wb.CreateCellStyle();
HeaderCellStyle1.SetFillForegroundColor(new XSSFColor(new Color(255, 255, 255)));
我不想使用此模式:
titlestyle.BottomBorderColor = IndexedColors.Grey25Percent.Index;