我正在使用PHP COM将一些内容从数据库导出到Word文档。 我想使用TabIndent方法在Word文档中做一些左缩进。
在VBA中它是: Selection.ParagraphFormat.TabIndent(2)
https://msdn.microsoft.com/en-us/library/office/ff839143.aspx
我想在PHP COM中使用相同的方法,但它不起作用。我的代码如下:
$word = new variant(com_get_active_object("word.application"));
$word->Selection->ParagraphFormat->TabIndent(2);