1

我想要一个 Visual Basic for Application Function,它显示当前文档的路径。

例如,如果 ArcMap 正在显示map.mxd,我需要显示它的路径。

我只找到了一些查询显示图层的数据源路径的示例。

4

1 回答 1

2

用这个:

Dim DocAbsPath As String
DocAbsPath = Application.Templates.Item(Application.Templates.Count - 1)

取自这个线程。

于 2010-04-20T22:05:01.323 回答