后期绑定中的参数类型

时间:2011-10-14 13:33:39

标签: c# office-interop late-binding

我已经到了最后一步,我需要在我正确创建的"PasteAndFormat"上调用objContentLateBinded方法,但现在我需要传递“WdRecoveryType.wdFormatOriginalFormatting”值作为参数。 WdRecoveryType是后期绑定程序集"Microsoft.Office.Interop.Word"的一部分,那么如何在我的代码中使用它代替-parameters??

这是有问题的行:

objContentLateBinded.GetType().InvokeMember("PasteAndFormat", BindingFlags.InvokeMethod, null, objContentLateBinded, -parameters-);

1 个答案:

答案 0 :(得分:1)

应用一些反射之后,您可以很容易地发现与该参数相关的值为16.只需将其作为整数传递,这将执行“魔术”。