我有个问题,
我有一个客户提供的 .dotx 文件。它包含在 Word 的开发人员模式中添加的许多不同类型的字段。
我希望能够使用这个 dotx 并用值填充它。
如何在 C# 代码中执行此操作?
我有个问题,
我有一个客户提供的 .dotx 文件。它包含在 Word 的开发人员模式中添加的许多不同类型的字段。
我希望能够使用这个 dotx 并用值填充它。
如何在 C# 代码中执行此操作?
Microsoft OpemXML SDK 允许您使用 c# 操作 docx/dotx 文件。您可以从这里下载 Microsoft OpenXML SDK 。
您应该首先创建 dotx 文件的副本。然后在模板中找到字段/内容占位符。
这是一个小例子(使用带有富文本框内容字段的简单单词模板):
// First, create a copy of your template.
File.Copy(@"c:\temp\mytemplate.dotx", @"c:\temp\test.docx", true);
using (WordprocessingDocument newdoc = WordprocessingDocument.Open(@"c:\temp\test.docx", true))
{
// Change document type (dotx->docx)
newdoc.ChangeDocumentType(WordprocessingDocumentType.Document);
// Find all structured document tags
IEnumerable<SdtContentRun> placeHolders = newdoc.MainDocumentPart.RootElement.Descendants<SdtContentRun>();
foreach (var cp in placeHolders)
{
var r = cp.Descendants<Run>().FirstOrDefault();
r.RemoveAllChildren(); // Remove children
r.AppendChild<Text>(new Text("my text")); // add new content
}
}
上面的例子是一个非常简单的例子。您必须使其适应您的单词模板结构。
希望这可以帮助。