Share via


SharedWorkspaceLink.URL Property 

Returns or sets the uniform resource locator (URL) of the link saved in the shared workspace.

Namespace: Microsoft.Office.Core
Assembly: office (in office.dll)

Usage

Dim sharedWorkspaceLink1 As SharedWorkspaceLink

Dim returnValue As String
returnValue = sharedWorkspaceLink1.URL

Dim sampleValue As String
sharedWorkspaceLink1.URL = sampleValue

Syntax

Property URL() As String
string URL {get; set;}
property String^ URL{
    String^ get();
    Void set(String^);
}
public System.String get_URL();
public void set_URL(System.String);
function get URL() : String;
function set URL(String);

Remarks

Use the URL property of the SharedWorkspaceLink object to retrieve the web address saved in the shared workspace link. Use the optional Description and Notes properties to retrieve additional information about the link.

The URL property returns a URL-encoded string. For example, a space in the folder name is represented by %20. Use a simple function to replace this escaped character with a space.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows XP Home Edition, Windows XP Professional, Windows Server 2003, and Windows 2000

Target Platforms

See Also

Reference

SharedWorkspaceLink Interface
Microsoft.Office.Core Namespace

Other Resources

SharedWorkspaceLink Members