Gets a SharedWorkspaceLinks collection that represents the list of links saved in the current shared workspace. Read-only.
Note Beginning with Microsoft Office 2010, this object or member has been deprecated and should not be used.
expression. Links
expression A variable that represents a SharedWorkspace object.
The following example lists the links saved in the current shared workspace.
Dim swsLinks As Office.SharedWorkspaceLinks
Set swsLinks = ActiveWorkbook.SharedWorkspace.Links
MsgBox "There are " & swsLinks.Count & _
" link(s) in the current shared workspace.", _
vbInformation + vbOKOnly, _
"Collection Information"
Set swsLinks = Nothing