Share via


SharedWorkspace Property [Visio 2003 SDK Documentation]

Returns a Microsoft Office SharedWorkspace object that provides access to the Office Document Workspace object model.

objRet = object.SharedWorkspace

objRet    The SharedWorkspace object returned.

object    Required. An expression that returns a Document object.

Version added

2003

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

Applies to | Document object

See Also | Sync property