如何在OPENXML电子表格单元格中插入换行符?

时间:2009-04-08 22:03:14

标签: c# cell openxml spreadsheet line-breaks

我目前正在使用类似的东西在单元格中插入内联字符串:

new Cell() 
{ 
    CellReference = "E2", 
    StyleIndex = (UInt32Value)4U, 
    DataType = CellValues.InlineString, 
    InlineString = new InlineString(new Text( "some text")) 
}

但是\n无法插入换行符,我该怎么做?

由于


回复

new Cell(
         new CellValue("string \n string")
        ) 
    { 
        CellReference = "E2", 
        StyleIndex = (UInt32Value)4U, 
        DataType = CellValues.String         
    }

2 个答案:

答案 0 :(得分:10)

你需要做两件事:

1。)将单元格标记为“Wrapped Text”。如果您使用现有电子表格作为模板,则可以手动在电子表格中执行此操作。只需右键单击单元格并选择“格式化单元格.. ”,单击“对齐”选项卡并选中“自动换行文本< / em>“checkbox。
OR ... 您可以通过编程方式设置CellFormat。如果您有一个名为“ cf ”的CellFormat对象,您可以执行以下操作:

cf.ApplyAlignment = true;//Set this so that Excel knows to use it.
if (cf.Alignment == null)//If no pre-existing Alignment, then add it.
  cf.Alignment = new Alignment() { WrapText = true };
Alignment a = cf.Alignment;
if (a.WrapText == null || a.WrapText.Value == false)
  a.WrapText = new BooleanValue(true);//Update pre-existing Alignment.

2。)您不应该使用“\ n”,而应该使用标准的回车+换行组合:“\ r \ n”

如果你混合两个(即“\ n”而没有前面的“\ r”和“\ r \ n”),这应该在填充单元格值之前修复它:

sHeaderText = sHeaderText.Replace("\r\n", "\n").Replace("\n", "\r\n");

我,我自己,不要使用 CellValues.String 甚至 CellValues.InlineString
相反,我使用 CellValues.SharedString 构建我的文本单元格(就像Excel一样)。
对于Bool,我使用“ CellValues.Boolean ”,对于所有其他人(数字和日期)我没有将单元格的 DataType 设置为任何东西 - 因为这就是Excel在查看它创建的标记时所做的事情。

答案 1 :(得分:6)

尝试使用CellValues.String而不是CellValues.InlineString。