Ajuster automatiquement les colonnes dans la feuille de calcul
Contents
[
Hide
]
Aspose.Cells - Ajuster automatiquement les colonnes dans la feuille de calcul
C#
//Instantiating a Workbook object
Workbook workbook = new Workbook();
//Accessing the first worksheet in the Excel file
Worksheet worksheet = workbook.Worksheets[0];
//Auto-fitting the 1st column of the worksheet
//Adding a string value to the cell
worksheet.Cells["A1"].PutValue("This is a test input");
//Adding a double value to the cell
worksheet.Cells["B1"].PutValue(20.5);
//Adding an integer value to the cell
worksheet.Cells["C1"].PutValue(15);
//Adding a boolean value to the cell
worksheet.Cells["D1"].PutValue(true);
worksheet.AutoFitColumn(0);
worksheet.AutoFitColumn(1);
worksheet.AutoFitColumn(2);
worksheet.AutoFitColumn(3);
//Saving the modified Excel file in bin/debug folder
workbook.Save("AutoFiltRowsandColumns.xls");
NPOI - HSSF XSSF - Ajuster automatiquement les colonnes dans la feuille de calcul
C#
HSSFWorkbook hssfworkbook = new HSSFWorkbook();
ISheet sheet=hssfworkbook.CreateSheet("Sheet1");
IRow row=sheet.CreateRow(0);
row.CreateCell(0).SetCellValue("This is a test input");
row.CreateCell(1).SetCellValue("Hello");
row.CreateCell(2).SetCellValue("1234.0023");
sheet.AutoSizeColumn(0);
sheet.AutoSizeColumn(1);
sheet.AutoSizeColumn(2);
FileStream file = new FileStream(@"AutoFiltRowsandColumns(NPOI).xls", FileMode.Create);
hssfworkbook.Write(file);
file.Close();
Télécharger le code en cours d’exécution
Télécharger le formulaire Ajuster automatiquement les colonnes à partir de l’un des sites de codage social mentionnés ci-dessous :
Pour plus de détails, visitez Travailler avec les feuilles de calcul.