2016-06-20 8 views
1

Ecxel 문서의 셀에 대해 내 자신의 스타일을 만들고 싶습니다. 셀 텍스트를 '기울임 꼴'로 표시하려면 'blablabla'과 같이 입력해야합니다. 내가 어떻게 해? 나는이 같은 시도 :어떻게 NPOI 2.2.1.0을 사용하여 '기울임 꼴'로 글꼴을 지정할 수 있습니까?

wb = new XSSFWorkbook(stream); 
var font = wb.CreateFont(); 
font.SetItalic(true) 

을하지만 NPOI의 API에는 'SetItalic'방법, 단지 readoly 'IsItalic'속성이 없습니다.

+0

당신이 먼저 적절한 장소에 요청 했 : 여기

는 특정 셀에 이탤릭체를 적용하는 방법을 보여주는 작은 코드 샘플입니다 npoi? –

답변

2

documentation에 따르면 IsItalic은 읽기/쓰기 속성입니다. https://github.com/tonyqus/에 표시된대로

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

// Create an italic font 
var font = wb.CreateFont(); 
font.IsItalic = true; 

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

var row = sheet.CreateRow(0); 

row.CreateCell(0).SetCellValue("Username"); 

var cell = row.CreateCell(1); 
cell.SetCellValue("Email"); 
// Apply the cellstyle we craeted 
cell.CellStyle = style; 

using (var fileData = new FileStream(@"G:\scratch\sheet2.xlsx", FileMode.Create)) 
{ 
    wb.Write(fileData); 
} 
+0

Thx, 그 intellisence 코멘트에 혼란 스러웠다. 나는 아무런 세터도 없다고 생각했다. '이탤릭체 사용 여부를 얻는다. * @return italics or not' – monstr