if(vResult.boolVal!=0)
{
long x, y;
CRange Th_range; \\加入新的CRange对象
Th_range.AttachDispatch(range.get_MergeArea(),true); \\获取合并单元格区域
m_ecRange.AttachDispatch(Th_range.get_Rows(),true); \\Th_range内获取行
x=m_ecRange.get_Count();
m_ecRange.AttachDispatch(Th_range.get_Columns(),true);\\Th_range内获取列
y=m_ecRange.get_Count();
if(col_row)
return y;
else return x;
}