单元格中的新行

Aspose.Cells - 单元格中的新行

为了确保单元格中的文本可以被读取,可以应用明确的行尾和文本换行。文本换行将单元格中的一行变成了多行,而明确的行尾则将文本换行放在您想要的确切位置。

要在单元格中换行,请使用Aspose.Cells.Style.IsTextWrapped属性。

C#

 Workbook workbook = new Workbook(); // Creating a Workbook object

Worksheet sheet = workbook.Worksheets[0];

sheet.Cells[2,2].Value = "Use \n with word wrap on to create a new line";

//Get Cell's Style

Style style = sheet.Cells[2, 2].GetStyle();

//Set Text Wrap property to true

style.IsTextWrapped = true;

//Set Cell's Style

sheet.Cells[2, 2].SetStyle(style);

workbook.Save("test.xlsx");

NPOI - HSSF XSSF - 单元格中的新行

CellStyle.setWrapText应设置为true以包装文本。

C#

 IWorkbook workbook = new XSSFWorkbook();

ISheet sheet = workbook.CreateSheet("Sheet1");

IRow row = sheet.CreateRow(2);

ICell cell = row.CreateCell(2);

cell.SetCellValue("Use \n with word wrap on to create a new line");

//to enable newlines you need set a cell styles with wrap=true

ICellStyle cs = workbook.CreateCellStyle();

cs.WrapText = true;

cell.CellStyle = cs;

FileStream sw = File.Create("test.xlsx");

workbook.Write(sw);

sw.Close();

下载运行代码

从下面提到的任何社交编码网站下载 单元格中的新行