0
我將單元格的值作爲行和列。如何在excel中查找單元格的範圍 - Qt?
Cells(1,10); //1 is row and 10 is column
現在我想確定該單元位置的範圍。
J1; //where j is column and 1 is row
有沒有可能在QT中找出答案?
我將單元格的值作爲行和列。如何在excel中查找單元格的範圍 - 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"
感謝亞歷克斯。和QAxObject * range = temp_Worksheet-> querySubObject(「Cells(int,int)」,row,col);我通過這種方式獲得了細胞的價值。所以我怎麼才能得到範圍? – Dev 2012-02-02 11:31:16
'range-> dynamicCall(「Address(bool,bool,int)」,true,true,1);' – 2012-02-02 11:51:21
再次感謝。有用。 – Dev 2012-02-02 11:56:47