使用 GemBox 电子表格在 excel 单元格内换行
LineBreak within an excel cell using GemBox Spreadsheet
是否可以使用 GemBox 电子表格 API 在 excel 单元格中添加换行符?例如,如果您在 Excel 中,您可以按 Alt+Enter 并转到单元格中的新行。我无法在 GemBox 中的 CellStyle class 上找到允许此操作的 属性。可能吗?
谢谢
是的,这是可能的,例如尝试以下操作:
var ef = new ExcelFile();
var ws = ef.Worksheets.Add("Sheet1");
ws.Cells["A1"].Value = "Sample";
ws.Cells["A1"].Value += "\n" + "Sample";
ef.Save("Sample.xlsx");
总之就是用ExcelCell.Value
中的换行符即可。
请注意,当您分配这样的值时,GemBox.Spreadsheet 会自动将 ExcelCell.Style.WrapText
属性 设置为 true
。
是否可以使用 GemBox 电子表格 API 在 excel 单元格中添加换行符?例如,如果您在 Excel 中,您可以按 Alt+Enter 并转到单元格中的新行。我无法在 GemBox 中的 CellStyle class 上找到允许此操作的 属性。可能吗?
谢谢
是的,这是可能的,例如尝试以下操作:
var ef = new ExcelFile();
var ws = ef.Worksheets.Add("Sheet1");
ws.Cells["A1"].Value = "Sample";
ws.Cells["A1"].Value += "\n" + "Sample";
ef.Save("Sample.xlsx");
总之就是用ExcelCell.Value
中的换行符即可。
请注意,当您分配这样的值时,GemBox.Spreadsheet 会自动将 ExcelCell.Style.WrapText
属性 设置为 true
。