openoffice模板启动获取目录宏

时间:2016-04-06 07:26:12

标签: path macros openoffice-writer

我喜欢通过命令提示符启动一个openoffice模板(.ott)。 一旦我的template.ott打开,它就被称为Untitled 1.odt

我需要的是获取template.ott的位置(获取Untitled 1.odt的模板目录的路径)。我想在Untitled 1.odt

中的宏中使用该路径

总结的问题: 所以当我在Untitled 1.odt中有一个宏时,如何获取template.ott的位置?

我使用OpenOffice Writer。

编辑:我在Openoffice Basic中编写宏。

1 个答案:

答案 0 :(得分:0)

来自Andrew Pitonyak's macro document的清单5.47:

Sub GetTemplatePath
    Dim oDocProps
    oDocProps = ThisComponent.getDocumentProperties()
    MsgBox "TemplateURL " & oDocProps.TemplateURL
End Sub