Children

Returns child property collection.

Syntax

object.Children [= value]

The Children property syntax has the following parts:

Part Description
object A valid PropNode object
value A PropNodes Collection.

Data Type

IPropNodes

Example

'Create a complex property Address with child nodes.
Set nod = New PropNode
nod.Category = "Address"
nod.Name = "Telephone"
nod.Type = ddPLLabel
Set subNod = New PropNode
subNod.Category = "Address"
subNod.Name = "Home"
subNod.Type = ddPLString
nod.Children.Add subNod
Set subNod = New PropNode
subNod.Category = "Address"
subNod.Name = "Business"
subNod.Type = ddPLString
nod.Children.Add subNod
pl.Properties.Add nod