C++ 如何在excel-Qt中查找单元格范围?

C++ 如何在excel-Qt中查找单元格范围?,c++,visual-studio,qt,C++,Visual Studio,Qt,我将单元格的值设置为行和列 Cells(1,10); //1 is row and 10 is column 现在我想确定该单元格位置的范围 J1; //where j is column and 1 is row 是否有可能在QT中找到?使用对象模型 Cells(5, 3).address(true,true,xlA1) 将返回“$C$5”谢谢Alex。和QAxObject*range=temp_工作表->查询子对象(“单元格(int,int)”,行,列);我用这种方法得到了细胞的价值。

我将单元格的值设置为行和列

Cells(1,10); //1 is row and 10 is column
现在我想确定该单元格位置的范围

J1; //where j is column and 1 is row
是否有可能在QT中找到?使用对象模型

Cells(5, 3).address(true,true,xlA1)

将返回
“$C$5”

谢谢Alex。和QAxObject*range=temp_工作表->查询子对象(“单元格(int,int)”,行,列);我用这种方法得到了细胞的价值。那么我现在如何获得范围呢?类似于
range->dynamicCall(“Address(bool,bool,int)”,true,true,1