我的Excel电子表格中有一列,其内容我传播(合并)四行,如下所示:
private void AddDescription(String desc)
{
int curDescriptionBottomRow = _curDescriptionTopRow + 3;
var range = _xlSheet.Range[_xlSheet.Cells[_curDescriptionTopRow, ITEMDESC_COL], _xlSheet.Cells[curDescriptionBottomRow, ITEMDESC_COL]];
range.Merge();
range.Font.Bold = true;
range.VerticalAlignment = XlVAlign.xlVAlignCenter;
range.Value2 = desc;
}
我后来自动调整列的宽度足以显示所有内容:
_xlSheet.Columns.AutoFit();
问题在于,如果只有一个或几个"异常值"在比其他内容长得多的合并内容中,我想包装这些内容。在我认为过长的内容/文本的情况下,我怎么能把它分成两行(因为它要换行)?
我尝试添加这些:
range.ColumnWidth = 144;
range.WrapText = true;
...所以代码是:
private void AddDescription(String desc)
{
int curDescriptionBottomRow = _curDescriptionTopRow + 3;
var range = _xlSheet.Range[_xlSheet.Cells[_curDescriptionTopRow, ITEMDESC_COL], _xlSheet.Cells[curDescriptionBottomRow, ITEMDESC_COL]];
range.Merge();
range.Font.Bold = true;
range.ColumnWidth = 42;
range.WrapText = true;
range.VerticalAlignment = XlVAlign.xlVAlignCenter;
range.Value2 = desc;
}
...但是此修复程序没有任何解决方法。
你如何告诉它在什么时候包装文本?
答案 0 :(得分:0)
在某种程度上将WrapText设置为true确实有效 - 当您手动减小列的宽度时,文本会换行(但只有这样)。
对我来说有用的是这个自动换行的组合,以及通过在调用AutoFit之后指定的精确宽度来回收一列的自动调整:
private static readonly int WIDTH_FOR_ITEM_DESC_COL = 42;
. . .
_xlSheet.Columns.AutoFit();
// The AutoFitting works pretty well, but one column needs to be manually tweaked due to potentially over-long Descriptions
((Range)_xlSheet.Cells[1, 1]).EntireColumn.ColumnWidth = WIDTH_FOR_ITEM_DESC_COL;