2016-07-06 470 views
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; 

回答

0
solution of your problem is here 

    here simply define new xssfcolor and assign it to xssfcellstyle  


var color = new XSSFColor(new byte[] { 0,255, 0 }); 
var rowstyle =(XSSFCellStyle)wb.CreateCellStyle(); 
rowstyle.SetFillForegroundColor(color) 
0

你必須確保你投你的字體XSSFFont第一,的IFont不提供訪問字體的RGB顏色屬性。

然後,您可以使用XSSColor來設置顏色,它可以由字節數組或System.Drawing.Color對象構造。

實施例的代碼,不同品種的構造方法中的註釋:

var wb = new XSSFWorkbook(); 
var sheet = wb.CreateSheet("Sheet 1"); 

// Create a colored font 
var font = (XSSFFont) wb.CreateFont(); 
// var color = new XSSFColor(ColorTranslator.FromHtml("#C88C14")); 
// var color = new XSSFColor(new Color(255, 255, 255)); 
var color = new XSSFColor(new byte[] {200, 140, 20}); 
font.SetColor(color); 

// Create a dedicated cell style using that font 
var style = wb.CreateCellStyle(); 
style.SetFont(font); 

// Create some cell values 
var row = sheet.CreateRow(0); 
row.CreateCell(0).SetCellValue("Standard text"); 
var cell = row.CreateCell(1); 
cell.SetCellValue("Colored text"); 

// Apply the cellstyle we created 
cell.CellStyle = style; 
相關問題