26金币
spreadjs单元格内容赋值时需要换行,请问如何实现?
LabelCellType lbl = new LabelCellType();
sheet.cell[rowIndex,columnIndex].Value = "AAAA\r\nBBBB";
lbl.AllowWrap = true;
sheet.cell[rowIndex,columnIndex].CellType= lbl;
使用上面的写法"\r\n"没有用。
|
最佳答案
查看完整内容
设置Multiline [/backcolor]属性即可
|