在VSTO和Aspose.Cells中包裹单元格文本

要创建一个包含两个单元格的工作表,一个包含换行文本,一个不包含:

  1. 设置工作表:
    1. 创建一个工作簿。
    2. 访问第一个工作表。
  2. 添加文本:
    1. 添加文本到A1单元格。
    2. 在A5单元格中添加包裹文本。
  3. 保存电子表格。 下面的代码示例展示了使用VSTO和C#执行这些步骤的方法。紧接着的代码示例展示了如何使用Aspose.Cells for .NET再次使用C#执行同样的事情。

运行该代码会生成一个电子表格,其中包括两个单元格,一个包含未换行的文本,另一个包含:

使用VSTO Excel的输出

todo:image_alt_text

使用Aspose.Cells for .NET的输出

todo:image_alt_text

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);

}

下载示例代码