我有asp.net mvc项目,其中我创建了包含模型数据的excel文档,现在尝试使用它的外观。我有唯一的问题 - 在极少数情况下我的xlWorkSheet.Cells[y, x].WrapText = false;
被忽略了......
我的项目描述字段代码:
...//other fields
if (model.ColumnsNeeded.ProjectDescriptionBool)
{
xlWorkSheet.Cells[y, x].Style.WrapText = false;
xlWorkSheet.Cells[y, x++] = projItem.ProjectDescription;
}
...//other fields
和excel结果我得到,当点击包装文本字段cas时,看到属性包装文本设置为:
以及我设置的foreach行:xlWorkSheet.Cells[y, x].EntireRow.WrapText = false;