是否有任何方法/属性可用于获取范围选定项的字符串数组?
例如:
范围$B$2:$C$3
将给出具有以下值的字符串数组:$B$2 $B$3 $C$2 $C$3
编辑 ::
我在这篇文章中找到了我的问题的答案。
事实上,我需要使用以下程序:
foreach (Range c in myRange)
{
string changedCell = c.get_Address(
Type.Missing, Type.Missing,
XlReferenceStyle.xlA1,
Type.Missing, Type.Missing
);
MessageBox.Show("Address:" + changedCell + " Value: " + c.Value2);
}