将mailmerge模板从MUSTACHE语法转换为MERGEFIELD标记

时间:2016-11-07 11:10:52

标签: c# .net aspose aspose.words

我想允许用户将mailmerge模板从MUSTACHE语法转换为MERGEFIELD 标记。

我能以某种方式使用Aspose for .NET实现这一目标吗?

1 个答案:

答案 0 :(得分:1)

请使用以下代码示例将MUSTACHE语法转换为MERGEFIELD标记。希望这对你有所帮助。

Document doc = new Aspose.Words.Document(MyDir + "in.docx");
doc.MailMerge.UseNonMergeFields = true;
doc.MailMerge.Execute(new string[] { "" }, new string[] { "" });
doc.Save(MyDir + "Out.docx");

我与Aspose一起担任开发人员传播者。