querySubObject("Cells")->setProperty("VerticalAlignment", "wdCellAlignVerticalCenter")
时间: 2023-09-27 22:04:27 浏览: 182
使用C#-WPF进行界面设计10
这是在使用Qt的QAxObject类与Microsoft Office的COM接口进行交互时,设置表格单元格垂直对齐方式为居中的代码。具体来说,使用QAxObject类的querySubObject方法获取Cells对象,再调用setProperty方法设置VerticalAlignment属性为"wdCellAlignVerticalCenter",即可实现单元格垂直居中对齐。其中,"wdCellAlignVerticalCenter"是Microsoft Office中定义的垂直居中对齐方式的常量值。
阅读全文