TreeExpandedNodeToXml method (WinStudio scripts)

Applies To

IWSFormComponent interface, tree objects

Definition

Returns an XML document string representing the tree node that has just expanded.

Syntax

object.TreeExpandedNodeToXml( )

  Part   Description
object Required. A reference to a valid tree component object.

Example

Dim treeNodeXml As String = String.Empty
If (ThisForm.Components("tree1").TreeHasCompletedExpanding()) Then
   treeNodeXml = ThisForm.Components("tree1").TreeExpandedNodeToXml()
End If