URL Property (TNode)

Topic Last Modified: 2006-06-13

The URL property is a node's UTF-8 encoded URL.

Applies To

TNode 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 the URL of a selected node.

      

Dim tn As TNode
Set tn = EXTV1.GetSelectedNode
MsgBox tn.URL