我正在尝试使用C#在Microsoft Word 2010中创建表。下面显示的示例代码无法找到程序集引用。有没有人知道Word的程序集引用或我错过了命名空间?
我得到的确切错误是"类型或命名空间名称' Word'找不到(你错过了使用指令或汇编引用吗?)
//I have added these directives but I am still getting an error below
using Microsoft.Office.Interop.Word;
using Microsoft.Office.Tools.Word;
object start = 0;
object end = 0;
//The Word is giving a build error saying no assembly reference can be found
Word.Range tableLocation = this.Range(ref start, ref end);
this.Tables.Add(tableLocation, 3, 4);
答案 0 :(得分:1)
必须附加2个参考文献:
Microsoft.Interop.Word
dll。 Microsoft Office Object Library
dll。希望这有帮助。