1
我希望Visual Basic for Application Function能夠顯示當前文檔的路徑。如何(以編程方式)找出當前ArcMap文檔與VBA的路徑
例如,如果ArcMap顯示map.mxd
我需要顯示其路徑。
我只找到了一些查詢顯示圖層數據源路徑的例子。
我希望Visual Basic for Application Function能夠顯示當前文檔的路徑。如何(以編程方式)找出當前ArcMap文檔與VBA的路徑
例如,如果ArcMap顯示map.mxd
我需要顯示其路徑。
我只找到了一些查詢顯示圖層數據源路徑的例子。
使用此:
Dim DocAbsPath As String
DocAbsPath = Application.Templates.Item(Application.Templates.Count - 1)
從this線程服用。