Document.FollowHyperlink 方法 (Visio)
巡覽至任意超連結。
語法
運算式。FollowHyperlink (Address, SubAddress, ExtraInfo, Frame, NewWindow, res1, res2, res3)
表達 代表 Document 物件的變數。
參數
名稱 | 必要/選用 | 資料類型 | 描述 |
---|---|---|---|
Address | 必要 | 字串 | 您要瀏覽的位址。 如果您在 Address 中設定不正確或不存在的路徑或檔案名稱,則 Visio 會顯示錯誤訊息。 |
SubAddress | 必要 | String | 您要瀏覽的次要位址,如果您不需要這項資訊,請傳送空字串。 例如,如果 Address 是包含多個頁面之 Visio 檔的完整路徑,您可以使用 SubAddress 來指定頁面。 |
ExtraInfo | 選用 | Variant | 涉及 URL 使用的額外 URL 要求資訊。 |
圖文框 | 選用 | Variant | 要瀏覽的 HTML 框架。 |
NewWindow | 選用 | Variant | 會指定是否要開啟新視窗。 設定非零的數字或 True 會在新視窗中開啟連結的頁面。 |
res1 | 選用 | Variant | 閒置。 |
res2 | 選用 | Variant | 閒置。 |
res3 | 選用 | Variant | 閒置。 |
傳回值
無
註解
如果您不需要從 Microsoft Visual Basic 或 Visual Basic for Applications 傳遞一或多個選擇性引數的任何資訊,請勿傳遞值。 在 C 或 C ++ 中,請傳送空的變數。
Visio 4.5 為具有下列簽章的 Document 物件提供 Hyperlink 方法,本文件沒有記載這個方法:
HRESULT FollowHyperlink[in] (BSTR Target, [in] BSTR Location);
Visio 5.0 和更新版本仍然支援此方法,但已重新命名為 FollowHyperlink45 :
HRESULT FollowHyperlink45[in] (BSTR Target, [in] BSTR Location);
不過,不建議使用 FollowHyperlink45 ;除非您使用 4.5 版,否則請改用 FollowHyperlink 。
範例
這個 Microsoft Visual Basic for Applications (VBA) 巨集會顯示如何使用 FollowHyperlink 方法瀏覽網際網路上的站台,並在新的瀏覽器視窗中檢視結果網頁。 它也會顯示如何瀏覽目前文件的第二頁,以及電腦上另一份文件的第一頁。 執行宏之前,請以電腦上有效 Visio 檔的路徑和檔案名取代path\filename > 。 <
Public Sub FollowHyperlink_Example()
'Navigate to the Microsoft Web site and view the page in a new browser window.
ThisDocument.FollowHyperlink "https://www.microsoft.com", "", , , 1
'Navigate to the second page of the current document.
ThisDocument.FollowHyperlink "", "Page-2"
'Navigate to the first page of another document
ThisDocument.FollowHyperlink "<path\filename> ", "Page-1"
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。