在 VSTO 和 Aspose.Cells 中包装文本 Cell
Contents
[
Hide
]
要创建一个包含两个单元格的工作表,一个包含环绕文本,一个不包含:
- 设置工作表:
- 创建工作簿。
- 访问第一个工作表。
- 添加文字:
- 向单元格 A1 添加文本。
- 将换行文本添加到单元格 A5。
- 保存电子表格。 下面的代码示例显示了如何使用带有 C# 的 VSTO 执行这些步骤。显示如何使用 Aspose.Cells for .NET 执行相同操作的代码示例,紧接着再次使用 C#。
运行代码会生成一个包含两个单元格的电子表格,一个包含未换行的文本,另一个包含:
使用 VSTO Excel 输出
输出使用 Aspose.Cells for .NET
VSTO
//Access vsto application
Microsoft.Office.Interop.Excel.Application app = Globals.ThisAddIn.Application;
//Access workbook
Microsoft.Office.Interop.Excel.Workbook workbook = app.ActiveWorkbook;
//Access worksheet
Microsoft.Office.Interop.Excel.Worksheet m_sheet = workbook.Worksheets[1];
//Access vsto worksheet
Microsoft.Office.Tools.Excel.Worksheet sheet = Globals.Factory.GetVstoObject(m_sheet);
//Place some text in cell A1 without wrapping
Microsoft.Office.Interop.Excel.Range cellA1 = sheet.Cells.get_Range("A1");
cellA1.Value = "Sample Text Unwrapped";
//Place some text in cell A5 with wrapping
Microsoft.Office.Interop.Excel.Range cellA5 = sheet.Cells.get_Range("A5");
cellA5.Value = "Sample Text Wrapped";
cellA5.WrapText = true;
//Save the workbook
workbook.SaveAs("OutputVsto.xlsx");
//Quit the application
app.Quit();
Aspose.Cells
private static void WrappingCellText()
{
//Create workbook
Workbook workbook = new Workbook();
//Access worksheet
Worksheet worksheet = workbook.Worksheets[0];
//Place some text in cell A1 without wrapping
Cell cellA1 = worksheet.Cells["A1"];
cellA1.PutValue("Some Text Unwrapped");
//Place some text in cell A5 wrapping
Cell cellA5 = worksheet.Cells["A5"];
cellA5.PutValue("Some Text Wrapped");
Style style = cellA5.GetStyle();
style.IsTextWrapped = true;
cellA5.SetStyle(style);
//Autofit rows
worksheet.AutoFitRows();
//Save the workbook
workbook.Save("OutputAspose.xlsx", SaveFormat.Xlsx);
}
下载示例代码
- Github
- [Sourceforge](https://sourceforge.net/projects/asposevsto/files/Aspose.Cells%20Vs%20VSTO%20Excel/Wrapping%20Cell%20Text%20(Aspose.Cells).zip/下载)
- [比特桶](https://bitbucket.org/asposemarketplace/aspose-for-vsto/downloads/Wrapping%20Cell%20Text%20(Aspose.Cells)。压缩)