SharedWorkspaceMembers object (Office)

A collection of the SharedWorkspaceMember objects in the current shared workspace site.

Note

Beginning with Microsoft Office 2010, this object or member has been deprecated and should not be used.

Example

Use the Members property of the SharedWorkspace object to return a SharedWorkspaceMembers collection.

    Dim swsMembers As Office.SharedWorkspaceMembers 
    Set swsMembers = ActiveWorkbook.SharedWorkspace.Members 
    MsgBox "There are " & swsMembers.Count & _ 
        " member(s) in the current shared workspace.", _ 
        vbInformation + vbOKOnly, _ 
        "Collection Information" 
    Set swsMembers = Nothing 

See also

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.