Document.Keywords property (Visio)

Gets or sets the value of the Keywords box in a document's Properties dialog box. Read/write.

Syntax

expression.Keywords

expression A variable that represents a Document object.

Return value

String

Remarks

Setting the Keywords property is equivalent to entering information in the Keywords box in the Properties dialog box (click the File tab, click Info, click Properties, and then click Advanced Properties).

Example

This Microsoft Visual Basic for Applications (VBA) macro shows how to use the Keywords property to document the keywords that help locate a drawing. It adds a Document object to the Documents collection and sets the Document object's Keywords property as well as other document properties.

Before running this macro, substitute your own values for the items in italic in the following code. To verify that these properties have been set, open the Properties dialog box.

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

Support and feedback

Have questions or feedback about Office VBA or this documentation? Please see Office VBA support and feedback for guidance about the ways you can receive support and provide feedback.