回复 1楼tingche的帖子
tingche 你好,
Spread 目前没有暴露换行接口,无法设置。
不过,可以通过遍历单元格文本,在逗号后面添加 “\n” 换行符。
- protected void Button1_Click(object sender, EventArgs e)
- {
- FarPoint.Web.Spread.TextCellType txType=new FarPoint.Web.Spread.TextCellType();
- this.FpSpread1.Sheets[0].DefaultStyle.CellType = txType;
- txType.AllowWrap = true;
- txType.Multiline = true;
- this.FpSpread1.Sheets[0].Cells[0, 0].Text = "aaaa,\naa,\naa,\naaaaa";
- }
复制代码 |