ワークシート内の列を自動調整
Contents
[
Hide
]
Aspose.Cells - ワークシート内の列を自動調整
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 - ワークシート内の列を自動調整
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();
ランニングコードのダウンロード
以下のいずれかのソーシャルコーディングサイトから列の自動調整をダウンロードしてください:
詳細については、ワークシートの操作ページを参照してください。