using IronXL;
// Create new Excel WorkBook document
WorkBook workBook = WorkBook.Create();
// Convert XLSX to XLS
WorkBook xlsWorkBook = WorkBook.Create(ExcelFileFormat.XLS);
// Create a blank WorkSheet
WorkSheet workSheet = workBook.CreateWorkSheet("new_sheet");
// Add data and styles to the new worksheet
workSheet["A1"].Value = "Hello World";
workSheet["A1"].Style.WrapText = true;
workSheet["A2"].BoolValue = true;
workSheet["A2"].Style.BottomBorder.Type = IronXL.Styles.BorderType.Double;
// Save the excel file as XLS, XLSX, CSV, TSV, JSON, XML, HTML and streams
workBook.SaveAs("sample.xlsx");
Imports IronXL
' Create new Excel WorkBook document
Private workBook As WorkBook = WorkBook.Create()
' Convert XLSX to XLS
Private xlsWorkBook As WorkBook = WorkBook.Create(ExcelFileFormat.XLS)
' Create a blank WorkSheet
Private workSheet As WorkSheet = workBook.CreateWorkSheet("new_sheet")
' Add data and styles to the new worksheet
Private workSheet("A1").Value = "Hello World"
Private workSheet("A1").Style.WrapText = True
Private workSheet("A2").BoolValue = True
Private workSheet("A2").Style.BottomBorder.Type = IronXL.Styles.BorderType.Double
' Save the excel file as XLS, XLSX, CSV, TSV, JSON, XML, HTML and streams
workBook.SaveAs("sample.xlsx")
Install-Package IronXL.Excel
建立新的 Excel 文件
IronXL 庫可用於從 XLS 和 XLSX 格式創建 Excel 文檔。 使用 IronXL 直觀的 API 編輯和填充您的工作簿。 使用 Value 屬性訪問單元格的值。 Cell的樣式也可以使用IronXL進行更改。
以下的 Style 屬性都可以配置:
對角線邊框
縮排
旋轉
填充模式
垂直對齊
水平對齊
對角線邊框方向
自動換行
縮小以適合
上邊框
右邊框
左邊框
背景顏色字體
底部邊框
設置背景顏色
請注意,對於 CSV、TSV、JSON 和 XML 檔案格式,每個工作表都將創建相應的檔案。 命名慣例為 fileName.sheetName.format。 在上面的例子中,CSV格式的輸出將是 sample.new_sheet.csv