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 属性访问单元格的值。使用 IronXL 还可以更改单元格的样式。
下面的 "样式 "属性都可以配置:
对角线边框
注意
旋转
填充样式
垂直对齐
水平对齐
对角线边框方向
缠绕文本
缩小到合适的大小
顶部边框
右边框
左边框
背景颜色字体
下边框
设置背景颜色
请注意,对于 CSV、TSV、JSON 和 XML 文件格式,将为每个工作表创建相应的文件。命名约定为 fileName.sheetName.format。在上面的示例中,CSV 格式的输出将是 sample.new_sheet.csv.