IM目前使用這樣的事情在單元格中插入聯字符串:如何在OPENXML電子表格單元格中插入換行符?
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
}
如何將`CellFormat`對象或`Alignment`對象應用於給定的單元格? – Panzercrisis 2017-08-22 16:19:07