我想知道是否可以在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;