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);
}
당신이 먼저 적절한 장소에 요청 했 : 여기
는 특정 셀에 이탤릭체를 적용하는 방법을 보여주는 작은 코드 샘플입니다 npoi? –