我在這裏給出一個使用後期綁定的例子。它是由前一段時間,也許值得與dynamic
被改寫:它
// try to open word
Type typeWordApplication = Type.GetTypeFromProgID("Word.Application");
if (typeWordApplication == null)
throw new Exception("Word is not installed (Word.Application is not found)");
object objWordApplication = Activator.CreateInstance(typeWordApplication);
object objDocuments = objWordApplication.GetType().InvokeMember("Documents", BindingFlags.GetProperty, null, objWordApplication, null);
object[] param = new object[] { Missing.Value, Missing.Value, Missing.Value, Missing.Value };
object objDocument = objDocuments.GetType().InvokeMember("Add", BindingFlags.InvokeMethod, null, objDocuments, param);
object start = 0;
object end = 0;
object objRange = objDocument.GetType().InvokeMember("Range", BindingFlags.InvokeMethod, null, objDocument, new object[] { start, end });
// set text
objRange.GetType().InvokeMember("Text", BindingFlags.SetProperty, null, objRange, new object[] { text });
// set font
object objFont = objRange.GetType().InvokeMember("Font", BindingFlags.GetProperty, null, objRange, null);
objFont.GetType().InvokeMember("Name", BindingFlags.SetProperty, null, objFont, new object[] { "Courier" });
objFont.GetType().InvokeMember("Size", BindingFlags.SetProperty, null, objFont, new object[] { (float)8 });
start = objRange.GetType().InvokeMember("End", BindingFlags.GetProperty, null, objRange, null);
end = start;
objRange = objDocument.GetType().InvokeMember("Range", BindingFlags.InvokeMethod, null, objDocument, new object[] { start, end });
// select text
objRange.GetType().InvokeMember("Select", BindingFlags.InvokeMethod, null, objRange, null);
objWordApplication.GetType().InvokeMember("Visible", BindingFlags.SetProperty, null, objWordApplication, new object[] { true });
Marshal.ReleaseComObject(objWordApplication);
優點:
- 你不需要引用或分發任何東西(如果
GetTypeFromProgID
失敗 - 你剛纔問用戶安裝一些東西)。
- 它更可能適用於任何已安裝的應用程序版本,因爲許多支持向後兼容性。
缺點:
- 沒有智能感知,你將不得不瀏覽自己的文件和類對象,搞清楚事情不明顯,獲得經驗等
- 非常龐大的代碼(除非
dynamic
使用) ;
http://stackoverflow.com/questions/13383250/could-not-load-assembly-interop-word-version-14-0-0-0?rq=1 – DotNetDeveloper
我已經聯繫我自己 – user3165438
版本'Word'是其中一個原因,爲什麼我使用[後期綁定](http://stackoverflow.com/search?q=c%23+word+late+binding)。 – Sinatr