Document.Keywords 屬性 (Visio)
取得或設定文件的 [摘要資訊] 對話方塊中 [關鍵字] 方塊的值。 讀取/寫入。
語法
運算式。關鍵 字
表達 代表 Document 物件的變數。
傳回值
字串
註解
設定Keywords屬性相當於在 [屬性] 對話方塊的 [關鍵字] 方塊中輸入資訊 (按一下 [檔案]索引標籤,依序按一下 [資訊]、[屬性],然後按一下 [進階屬性]) 。
範例
下列的 Microsoft Visual Basic for Applications (VBA) 巨集會示範如何使用 Keywords 屬性來記錄能協助尋找繪圖的關鍵字。 它會將 Document 物件新增到 Documents 集合,並設定 Document 物件的 Keywords 屬性以及其他的文件屬性。
在執行這個巨集之前,請用您的值來替代下列程式碼中的斜體字項目。 若要驗證是否已設定這些屬性,請開啟 [屬性] 對話方塊。
Public Sub Keywords_Example()
Dim vsoDocument As Visio.Document
Set vsoDocument = Documents.Add("")
'Set the properties of the document.
vsoDocument.Title = "document title "
vsoDocument.Creator = "author name "
vsoDocument.Description = "document description "
vsoDocument.Keywords = "keyword1, keyword2, keyword3 "
vsoDocument.Subject = "document subject "
vsoDocument.Manager = "manager name "
vsoDocument.Category = "document category "
End Sub
支援和意見反應
有關於 Office VBA 或這份文件的問題或意見反應嗎? 如需取得支援服務並提供意見反應的相關指導,請參閱 Office VBA 支援與意見反應。