URL Property (RootNode)

Topic Last Modified: 2006-06-13

The URL property is the URL of the root node.

Applies To

RootNode Interface

Syntax

Property URL As String
HRESULT get_URL(BSTR* pVal);HRESULT put_URL(BSTR Val);

Parameters

  • pVal
    Returns the value of the URL property as a reference to a BSTR.
  • Val
    Sets the value of the URL property to the value of the BSTR.

Example

The following example illustrates each root node's URL.

      

Dim rns As RootNodes
Set rns = EXTV1.GetRootNodes
Dim rn As RootNode
For Each rn In rns
    MsgBox rn.URL