在Excel

时间:2016-11-10 13:17:37

标签: c# asp.net asp.net-mvc excel

我有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时,看到属性包装文本设置为: enter image description here

以及我设置的foreach行:xlWorkSheet.Cells[y, x].EntireRow.WrapText = false;

0 个答案:

没有答案