Gets the child nodes contained by this KmlNode.

Namespace:  ESRI.ArcGISExplorer.Mapping

Assembly:  ESRI.ArcGISExplorer (in ESRI.ArcGISExplorer.dll) Version: 2.0.0.1500 (2.0.0.1500)

Syntax

C#
public MapItemCollection ChildItems { get; }
Visual Basic (Declaration)
Public ReadOnly Property ChildItems As MapItemCollection

Field Value

A MapItemCollection populated with the child nodes of this KmlNode.

Implements

IMapItemParent..::.ChildItems

Remarks

A KmlLayer is typically composed of several KML features such as placemarks, folders and image overlays. KML documents and folders are containers that can contain other types of KML node.

In the context of the KmlNode class, the ChildItems property represents the KML features contained by a document or folder KmlNode. This enables you to access the full hierarchy of child nodes for a specified KmlLayer. This property will only ever contain a collection of KmlNode objects.

The returned MapItemCollection is read-only: you cannot remove KmlNode objects from the collection, and it is not possible to add to the collection.

See Also