62,268
社区成员
发帖
与我相关
我的任务
分享
HSSFCellStyle style_size = hssfworkbook.CreateCellStyle();
style_size.WrapText = true;
row1 = sheet1.CreateRow(1);
row1.HeightInPoints = 23;
cell = row1.CreateCell(2);
cell.SetCellValue(varString);
cell.CellStyle = style_size;