如何创建现有MS Word 2010模板的实例(模板只有1个文本框),获取可填写字段并在其中插入字符串?
所有这些都在c#中,到目前为止我甚至无法打开.docx文档。
答案 0 :(得分:0)
这不是免费的,但我已经使用Syncfusion(在WinRT上一次)完成了这项工作。 您可以设置书签,然后导航到c#中的该书签并替换其内容(字符串,图片,表格等)。
docu:http://help.syncfusion.com/winrt( DocIO 就是您要搜索的内容)
他们有免费试用,但也许你可以找到类似的东西(替换书签,如果你不能获得可填写的)免费(我没有,但只搜索WinRT)
答案 1 :(得分:0)
我能够用这些库做到这一点:
using Word = Microsoft.Office.Interop.Word;
using Microsoft.Office.Interop.Word;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Runtime.InteropServices;
using System.IO;
using Vladimir.Classes_Auxiliares;
这些字段:
public object Template;
public Object oFalse = false;
public Object oTrue = true;
public Object oMissing = System.Reflection.Missing.Value;
这些方法。第一个是打开Word应用程序(Visible = false),并根据保存的模板创建一个新文档。
public virtual Word.Document CriarDocumento(ETipoDeDocumento tipoDeDocumento, Word.Document doc, Word.Application word)
{
Template = tipoDeDocumento.ToString() + ".dotm";
doc = word.Documents.Add(Template, ref oMissing, ref oMissing, ref oMissing);
return doc;
}
下一个方法将查找文本和对象,内容或单词与Dictionary键匹配,以使用我希望由Dictionary表示的值填充活动文档,其中键与模板中的字符串相同,值为我希望传递给新文档的新值。
public virtual void PreencherDocumentoPorObjetoETexto(Dictionary<string, string> listaDeParametros, Word.Document doc)
{
foreach (Shape shape in doc.Shapes)
{
foreach (string key in listaDeParametros.Keys)
{
if (shape.TextFrame.TextRange.Text.Contains(key))
shape.TextFrame.TextRange.Text = listaDeParametros[key];
}
}
foreach (string key in listaDeParametros.Keys)
{
Word.Find findObject = doc.Application.Selection.Find;
findObject.ClearFormatting();
findObject.Text = key;
findObject.Replacement.ClearFormatting();
findObject.Replacement.Text = listaDeParametros[key];
object replaceAll = Word.WdReplace.wdReplaceAll;
findObject.Execute(ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref oMissing, ref oMissing, ref oMissing, ref oMissing, ref oMissing,
ref replaceAll, ref oMissing, ref oMissing, ref oMissing, ref oMissing);
}
}
此方法最终会在打印打印对话框的打印预览状态下显示Word应用程序。只打印或取消选项。
public virtual void ImprimirDocumento(Word.Application word)
{
word.PrintPreview = true;
word.Visible = true;
Word.Dialog wordPrintDialog = word.Application.Dialogs[Word.WdWordDialog.wdDialogFilePrint];
wordPrintDialog.Show(ref oMissing);
}
每次使用这些方法打开文档时都应调用此方法,它将关闭文档和Word应用程序。
public virtual void FecharDocumento(Word.Document doc, Word.Application word)
{
System.Threading.Thread.Sleep(1000);
doc.Close(oFalse, oMissing, oMissing);
word.Quit(oFalse, oMissing, oMissing);
Marshal.FinalReleaseComObject(doc);
Marshal.FinalReleaseComObject(word);
}
如果您没有使用上述方法完成Word应用程序,我建议您调用任务管理器并手动完成实例。