1. 程式人生 > >Aspose.Cells設定單元格格式

Aspose.Cells設定單元格格式

使用Aspose.Cells操作Excel時,填寫的引數是這樣的,顯然要不得!

這需要像Excel中的“轉換為數字”操作,強大的Aspose.Cells可輕鬆解決這個問題。

//預設寫法
worksheet.Cells["A1"].PutValue(10);  
worksheet.Cells["A1"].PutValue("10"); 

//轉為化數字
worksheet.Cells["A1"].PutValue(10,true);  
worksheet.Cells["A1"].PutValue("10",true); 

//設定單元格格式
Style  style = worksheet.Cells["A1"].GetStyle();
style.Number = 1;
worksheet.Cells["A1"].SetStyle(style);

//填充並設定單元格格式
worksheet.Cells["A1"].PutValue("10",true,style);