在实际环境中测试
在生产中测试无水印。
随时随地为您服务。
Microsoft Word 文档被广泛用于各种用途,从正式的商业报告到私人信件。 在 C# 中,开发人员经常需要以编程方式生成 Microsoft Word 文档。 Windows 应用程序开发人员历来使用 Microsoft Office Interop 来使用 C# 生成和创建 Word 文档。
然而,并非所有人都能使用这种方法,开发人员可能会使用操作系统或 Linux 机器,而在这些机器上无法使用 Microsoft Office 界面。 在这些情况下,开发人员必须探索可在不同平台上独立运行的其他库。 其中一个以编程方式处理 Word 文件的强大库是铁字、 来自铁软件.
IronWord 为在 .NET 应用程序中处理 Word 文档提供了强大的功能,可以在不同的平台和基于 Linux 的 docker 映像/容器上运行。 IronWord for .NET 具有直观的 C#、VB.NET Word 和 Docx 文档 API,使用 IronWord,无需安装 Microsoft Office、Office 自动化或 Word Interop,即可构建、编辑和导出 Word 文档文件。 IronWord 完全支持 .NET 8、7、6、Framework、Core 和 Azure。
本文将探讨使用 IronWord 库在 C# 中创建 Word 文档。
创建一个新的 C# 项目。
安装**铁字***图书馆
使用 IronWord 库创建 Word 文档。
为现有文档添加内容。
保存创建的 Word 文档。
打开并显示创建的 Word 文档。
前提条件:
Visual Studio: 确保已安装 Visual Studio 或任何其他 C# 开发环境。
创建一个新的 C# 控制台应用程序,或者使用一个现有项目,在其中生成 Word 文档。
选择控制台应用程序模板,然后单击下一步。
下一步,您可以提供解决方案和项目名称。
选择 .NET 版本并点击 "创建"。
打开您的 C# 项目并安装IronWord库:
Install-Package IronWord -Version 2024.1.2
还可以使用 Visual Studio 包管理器安装 NuGet 包,如下图所示。
让我们从使用 IronWord 库创建 Word 文档的简单示例开始。 下面的代码演示了如何创建一个包含 "Hello, World "文本的单个段落的基本 Word 文档!"
using IronWord;
using IronWord.Models;
// Create textrun instance
TextRun textRun = new TextRun("Hello, World!");
Paragraph paragraph = new Paragraph();
paragraph.AddTextRun(textRun);
// Create a new Word document object
WordDocument doc = new WordDocument(paragraph);
// Export docx
doc.SaveAs("example.docx"); // save docx file to disk
using IronWord;
using IronWord.Models;
// Create textrun instance
TextRun textRun = new TextRun("Hello, World!");
Paragraph paragraph = new Paragraph();
paragraph.AddTextRun(textRun);
// Create a new Word document object
WordDocument doc = new WordDocument(paragraph);
// Export docx
doc.SaveAs("example.docx"); // save docx file to disk
Imports IronWord
Imports IronWord.Models
' Create textrun instance
Private textRun As New TextRun("Hello, World!")
Private paragraph As New Paragraph()
paragraph.AddTextRun(textRun)
' Create a new Word document object
Dim doc As New WordDocument(paragraph)
' Export docx
doc.SaveAs("example.docx") ' save docx file to disk
执行上述代码示例后,创建了新的文档文件 example.docx,输出如下所示。
这是一个使用 IronWord 生成 Word 文档文件的基本示例。 如需了解更多信息,请参阅以下文件*这里***.
现在我们知道了如何使用 IronWord 创建一个简单的 Word 文档,让我们来添加段落和样式文本。
TextRun 还可以获取样式数据,增强文本的视觉表现力。 文本可以设置删除线、粗体、斜体和下划线等样式。
将下面的代码修改并添加到您之前制作的程序中。
using IronWord;
using IronWord.Models;
// Create textrun
TextRun textRun = new TextRun("Hello, World!"); // add string
Paragraph paragraph = new Paragraph();
paragraph.AddTextRun(textRun);
// Configure text
TextRun introText = new TextRun("This is an example paragraph with italic and bold styling."); // add string or text
TextStyle italicStyle = new TextStyle()
{
IsItalic = true
};
TextRun italicText = new TextRun("Italic example sentence.", italicStyle);
// add italic string
TextStyle boldStyle = new TextStyle()
{
IsBold = true
};
TextRun boldText = new TextRun("Bold example sentence.", boldStyle);
// add bold string
// Add text
paragraph.AddTextRun(introText);
paragraph.AddTextRun(italicText);
paragraph.AddTextRun(boldText);
// Create a new Word document
WordDocument doc = new WordDocument(paragraph);
// Export docx document
doc.SaveAs("example.docx");// docx file save in EXE location
using IronWord;
using IronWord.Models;
// Create textrun
TextRun textRun = new TextRun("Hello, World!"); // add string
Paragraph paragraph = new Paragraph();
paragraph.AddTextRun(textRun);
// Configure text
TextRun introText = new TextRun("This is an example paragraph with italic and bold styling."); // add string or text
TextStyle italicStyle = new TextStyle()
{
IsItalic = true
};
TextRun italicText = new TextRun("Italic example sentence.", italicStyle);
// add italic string
TextStyle boldStyle = new TextStyle()
{
IsBold = true
};
TextRun boldText = new TextRun("Bold example sentence.", boldStyle);
// add bold string
// Add text
paragraph.AddTextRun(introText);
paragraph.AddTextRun(italicText);
paragraph.AddTextRun(boldText);
// Create a new Word document
WordDocument doc = new WordDocument(paragraph);
// Export docx document
doc.SaveAs("example.docx");// docx file save in EXE location
Imports IronWord
Imports IronWord.Models
' Create textrun
Private textRun As New TextRun("Hello, World!") ' add string
Private paragraph As New Paragraph()
paragraph.AddTextRun(textRun)
' Configure text
Dim introText As New TextRun("This is an example paragraph with italic and bold styling.") ' add string or text
Dim italicStyle As New TextStyle() With {.IsItalic = True}
Dim italicText As New TextRun("Italic example sentence.", italicStyle)
' add italic string
Dim boldStyle As New TextStyle() With {.IsBold = True}
Dim boldText As New TextRun("Bold example sentence.", boldStyle)
' add bold string
' Add text
paragraph.AddTextRun(introText)
paragraph.AddTextRun(italicText)
paragraph.AddTextRun(boldText)
' Create a new Word document
Dim doc As New WordDocument(paragraph)
' Export docx document
doc.SaveAs("example.docx") ' docx file save in EXE location
为了清晰地表达数据,也可以用网格来表示。 当数据以网格形式排列时,它被称为表格。 使用 IronWord,我们可以在 Word 文档中添加表格和图片,如下图所示:
using IronWord;
using IronWord.Models;
// Create table cell
TableCell cell = new TableCell();
TextRun textRun = new TextRun();
textRun.Text = "Sample text";
// Add textrun to the cell
cell.AddContent(new Paragraph(textRun));
// Configure border style
BorderStyle borderStyle = new BorderStyle();
borderStyle.BorderColor = new IronColor(IronSoftware.Drawing.Color.Black);
borderStyle.BorderValue = IronWord.Models.Enums.BorderValues.Thick;
borderStyle.BorderSize = 5;
// Configure table border
TableBorders tableBorders = new TableBorders() {
TopBorder = borderStyle,
RightBorder = borderStyle,
BottomBorder = borderStyle,
LeftBorder = borderStyle,
};
cell.Borders = tableBorders;
// Create row and add cell
TableRow row = new TableRow();
row.AddCell(cell); // add cell
row.AddCell(cell); // add cell
// Create table and add row
Table table = new Table();
table.AddRow(row);
// Generate document from the table
WordDocument doc = new WordDocument(table);
// Export Word document
doc.SaveAs("Document.docx"); // docx file save in EXE location
using IronWord;
using IronWord.Models;
// Create table cell
TableCell cell = new TableCell();
TextRun textRun = new TextRun();
textRun.Text = "Sample text";
// Add textrun to the cell
cell.AddContent(new Paragraph(textRun));
// Configure border style
BorderStyle borderStyle = new BorderStyle();
borderStyle.BorderColor = new IronColor(IronSoftware.Drawing.Color.Black);
borderStyle.BorderValue = IronWord.Models.Enums.BorderValues.Thick;
borderStyle.BorderSize = 5;
// Configure table border
TableBorders tableBorders = new TableBorders() {
TopBorder = borderStyle,
RightBorder = borderStyle,
BottomBorder = borderStyle,
LeftBorder = borderStyle,
};
cell.Borders = tableBorders;
// Create row and add cell
TableRow row = new TableRow();
row.AddCell(cell); // add cell
row.AddCell(cell); // add cell
// Create table and add row
Table table = new Table();
table.AddRow(row);
// Generate document from the table
WordDocument doc = new WordDocument(table);
// Export Word document
doc.SaveAs("Document.docx"); // docx file save in EXE location
Imports IronWord
Imports IronWord.Models
' Create table cell
Private cell As New TableCell()
Private textRun As New TextRun()
textRun.Text = "Sample text"
' Add textrun to the cell
cell.AddContent(New Paragraph(textRun))
' Configure border style
Dim borderStyle As New BorderStyle()
borderStyle.BorderColor = New IronColor(IronSoftware.Drawing.Color.Black)
borderStyle.BorderValue = IronWord.Models.Enums.BorderValues.Thick
borderStyle.BorderSize = 5
' Configure table border
Dim tableBorders As New TableBorders() With {
.TopBorder = borderStyle,
.RightBorder = borderStyle,
.BottomBorder = borderStyle,
.LeftBorder = borderStyle
}
cell.Borders = tableBorders
' Create row and add cell
Dim row As New TableRow()
row.AddCell(cell) ' add cell
row.AddCell(cell) ' add cell
' Create table and add row
Dim table As New Table()
table.AddRow(row)
' Generate document from the table
Dim doc As New WordDocument(table)
' Export Word document
doc.SaveAs("Document.docx") ' docx file save in EXE location
在上面的示例中,我们使用边框在 Word 文档中添加了一个表格。
图片可以增强文档的表现力,增加色彩和视觉吸引力。
图片可以使用 IronWord 以编程方式添加到 Word 文档中,如下代码所示:
using IronWord;
using IronWord.Models;
// Load new document
WordDocument doc = new WordDocument();
// Configure image
IronWord.Models.Image image = new IronWord.Models.Image("SalesChart.jpg");
image.Width = 200; // In unit pixel (px)
image.Height = 200; // In unit pixel (px)
Paragraph paragraph = new Paragraph();
// Add image
paragraph.AddImage(image);
// Add paragraph
doc.AddParagraph(paragraph);
// Export docx
doc.SaveAs("save_document.docx"); // docx file
using IronWord;
using IronWord.Models;
// Load new document
WordDocument doc = new WordDocument();
// Configure image
IronWord.Models.Image image = new IronWord.Models.Image("SalesChart.jpg");
image.Width = 200; // In unit pixel (px)
image.Height = 200; // In unit pixel (px)
Paragraph paragraph = new Paragraph();
// Add image
paragraph.AddImage(image);
// Add paragraph
doc.AddParagraph(paragraph);
// Export docx
doc.SaveAs("save_document.docx"); // docx file
Imports IronWord
Imports IronWord.Models
' Load new document
Private doc As New WordDocument()
' Configure image
Private image As New IronWord.Models.Image("SalesChart.jpg")
image.Width = 200 ' In unit pixel (px)
image.Height = 200 ' In unit pixel (px)
Dim paragraph As New Paragraph()
' Add image
paragraph.AddImage(image)
' Add paragraph
doc.AddParagraph(paragraph)
' Export docx
doc.SaveAs("save_document.docx") ' docx file
在这里,我们使用 IronWord.Models.Image 为段落添加一张高度和宽度均为 200 像素的图片。
IronWord 需要许可证才能使用。 试用密钥可从 Iron Software 网站获取这里. 这个密钥需要放置在appsettings.json中。
{
"IronWord.LicenseKey":"IRONWORD.MYLICENSE.KEY.TRIAL"
}
{
"IronWord.LicenseKey":"IRONWORD.MYLICENSE.KEY.TRIAL"
}
If True Then
"IronWord.LicenseKey":"IRONWORD.MYLICENSE.KEY.TRIAL"
End If
提供您的电子邮件以获取试用许可证。 提交电子邮件 ID 后,密钥将通过电子邮件发送。
使用 C# 创建 Word 文档铁字库提供了一种灵活高效的生成文档方式,无需依赖 Microsoft Office。无论您需要创建简单的信件还是带有表格和图像的复杂报告,IronWord 都能让您通过编程实现。 本文提供了创建 Word 文档的全面教程。 有了 IronWord,您就拥有了自动创建 Word 文档的能力,从而使您的 C# 应用程序更具通用性和生产力。
如果开发人员希望将 PDF 文件操作与生成的 Word 文档结合起来使用,那么 Iron Software 开发的另一个 C# 库 IronPDF 将是最佳选择。 如需查看,请单击*这里***.