com.esri.arcgis.globecore
Interface IGlobeLayerInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
GlobeLayerInfos

public interface IGlobeLayerInfos
extends Serializable

Provides access to the Globe Layer Info Collection Interface.

Product Availability

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


Method Summary
 void add(IGlobeLayerInfo pLayerInfo)
          Adds a globe layer info.
 int getCount()
          The globe layer info count.
 IGlobeLayerInfo getElement(int index)
          The globe layer info at the specified position.
 void insert(int index, IGlobeLayerInfo pLayerInfo)
          Adds a globe layer info at the specified position.
 void remove(int index)
          Removes the globe layer info at the specified position.
 void removeAll()
          Removes all globe layer infos.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The globe layer info count.

Product Availability

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

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

getElement

IGlobeLayerInfo getElement(int index)
                           throws IOException,
                                  AutomationException
The globe layer info at the specified position.

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.IGlobeLayerInfo
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

remove

void remove(int index)
            throws IOException,
                   AutomationException
Removes the globe layer info at the specified position.

Product Availability

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

Parameters:
index - The index (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

removeAll

void removeAll()
               throws IOException,
                      AutomationException
Removes all globe layer infos.

Product Availability

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

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

add

void add(IGlobeLayerInfo pLayerInfo)
         throws IOException,
                AutomationException
Adds a globe layer info.

Product Availability

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

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

insert

void insert(int index,
            IGlobeLayerInfo pLayerInfo)
            throws IOException,
                   AutomationException
Adds a globe layer info at the specified position.

Product Availability

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

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