使用ChartArea.Select方法时出现问题

时间:2009-03-29 08:31:05

标签: c# excel reflection automation

我试图通过C#中的反射使用Select方法选择ChartArea。这是我正在使用的代码行:

oChartArea.GetType()。InvokeMember(“Select”,BindingFlags.InvokeMethod,null,oChartArea,null);

这里,oChartArea是ChartArea对象。

这在Vista / Office 2007中完全正常但在XP SP2 / Office 2003中引发异常。有什么建议吗?

1 个答案:

答案 0 :(得分:0)

你为什么要用反射?
你不能直接打电话给oChartArea.Select()吗?

它在Office 2003中引发了什么异常?