Document.SharedWorkspace property (Visio)
Returns a Microsoft Office SharedWorkspace object that provides access to the Office Document Workspace object model. Read-only.
Syntax
expression.SharedWorkspace
expression A variable that represents a Document object.
Return value
Object
Remarks
The Office Document Workspace object model provides a way to put documents into a shared workspace and manipulate Microsoft SharePoint data such as people, tasks, links, and related files.
Example
This Microsoft Visual Basic for Applications (VBA) macro shows how to use the SharedWorkspace property to get a SharedWorkspace object and create a new shared document workspace that has the same name as the default document, at the default location.
Public Sub SharedWorkspace_Example
Dim vsoSharedWorkspace As SharedWorkspace
Set vsoSharedWorkspace = ActiveDocument.SharedWorkspace
vsoSharedWorkspace.CreateNew ("")
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.