ParentURL Property (TNode)

Topic Last Modified: 2006-06-13

The ParentURL property is the URL to a node's parent.

Applies To

TNode Interface

Syntax

Property ParentURL As String
HRESULT get_ParentURL(BSTR* pVal);HRESULT put_ParentURL(BSTR Val);

Parameters

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

Example

The following example illustrates the parent URL of a selected node.

      

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