如何使用PHP COM将TabIndent方法用于word文件

时间:2016-04-19 06:18:18

标签: php com

我正在使用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);

0 个答案:

没有答案