如何在excel-Qt中查找单元格的范围

How to find the Range of Cell in excel - Qt?

本文关键字:单元格 范围 查找 excel-Qt      更新时间:2023-10-16

我将单元格的值作为行和列。

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"