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更改单元格的样式。
以下的Style属性都可以配置:
对角线边框
缩进
旋转
填充模式
垂直对齐
水平对齐
对角线边框方向
自动换行
缩小至适应
顶边框
右边框
左边框
背景颜色字体
底部边框
设置背景色
请注意,对于 CSV、TSV、JSON 和 XML 文件格式,每个工作表都将创建相应的文件。 命名规则将为 fileName.sheetName.format。 在上面的例子中,CSV格式的输出将是sample.new_sheet.csv。