是否可以在QAxObject中链接嵌套命令?

时间:2018-10-19 05:17:20

标签: qt qaxobject

我想知道是否可以在QAxObject中进行一些命令/动作的链接。

例如,要在Excel中更改单元格颜色,我需要执行以下操作:

QAxObject* cell = sheet->querySubObject("Cells(int,int)",row,col));
QAxObject* interior = cell->querySubObject("Interior"));
interior->setProperty("Color",color);

所以我想知道是否有可能像这样:

QAxObject* cell = sheet->querySubObject("Cells(int,int)",row,col));
cell->setProperty("Interior.Color"),color);

或更佳:

cell.Interior.Color = color;

0 个答案:

没有答案