com.esri.arcgis.globecore
Interface IKmlChildNodes

All Superinterfaces:
Serializable
All Known Implementing Classes:
IKmlChildNodesProxy

public interface IKmlChildNodes
extends Serializable

KML Child Nodes.

Description

IKmlChildNodes is supported by KmlLayer coclass and also by IKmlNode.

So using IKmlChildNodes you can get access to the collection of child nodes for a KmlLayer or the collection of child nodes of a KML node(IKmlNode) itself.

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.


Method Summary
 IKmlNode getKmlNode(int index)
          Get the KmlNodes at index
 int getKmlNodeCount()
          Get the count of KmlNodes
 

Method Detail

getKmlNodeCount

int getKmlNodeCount()
                    throws IOException,
                           AutomationException
Get the count of KmlNodes

Description

This property returns the count of the number of KML nodes in the collection

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Returns:
The pCount
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getKmlNode

IKmlNode getKmlNode(int index)
                    throws IOException,
                           AutomationException
Get the KmlNodes at index

Product Availability

Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.

Parameters:
index - The index (in)
Returns:
A reference to a com.esri.arcgis.globecore.IKmlNode
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.