Gets the child layers of the KmlLayer.

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 layers of the KmlLayer.

Implements

IMapItemParent..::.ChildItems

Remarks

KML is typically composed of one or more KML features: a document, folder, placemark, network link or image. Each constituent feature is represented by a KmlNode object. Although the KmlLayer.ChildItems property is a MapItemCollection, it will always return a collection of KmlNode objects and you cannot add to the collection.

The order of the Map.ChildItems collection dictates the order in which items are presented in the ArcGIS Explorer contents window.

See Also