Ny rad i celler
Contents
[
Hide
]
Aspose.Cells - Ny rad i celler
För att säkerställa att texten i en cell kan läsas, kan explicita radbrytningar och textomslag appliceras. Textomslag gör att en rad blir flera i en cell, medan explicita radbrytningar sätts in precis där du vill ha dem.
För att vira text i en cell, använd Aspose.Cells.Style.IsTextWrapped egenskapen.
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 - Ny rad i celler
CellStyle.setWrapText bör vara sann för vikta text.
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();
Ladda ned körbar kod
Hämta Ny rad i celler från någon av de nedan nämnda sociala kodningssidorna:
För mer detaljer, besök Radbrytningar och Textmärkning.