标签: c# excel vsto office-interop
我正在使用VSTO项目中的Excel工作表。
我正在使用活动
Excel.Worksheet.Change(Range Target)
它给出了Excel.Range的Target对象。我想通过使用
Target.Value
我该怎么做?
答案 0 :(得分:1)
嗯...也许试试
object obj = Target.Value; MessageBox.Show(obj.GetType().ToString());