SharedWorkspaceLink.Notes property (Office)

Gets or sets the optional notes associated with a shared workspace link. Read/write.

Note

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

Syntax

expression.Notes

expression A variable that represents a SharedWorkspaceLink object.

Example

The following example creates a list of all the shared workspace links that contain the word "building" in the Notes field.

Dim strBuildingLinks As String 
Dim swsLink As Office.SharedWorkspaceLink 
For Each swsLink In ActiveWorkbook.SharedWorkspace.Links 
   If InStr(swsLink.Notes, "building", vbTextCompare) > 0 Then 
      strBuildingLinks = strBuildingLinks & swsLink.Description & vbCrLf 
   End If 
Next 
MsgBox "Building Links: " & vbCrLf & strBuildingLinks, _ 
   vbInformation + vbOKOnly, "Building Links in Shared Workspace" 

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.