com.esri.arcgis.globecore
Interface IGlobeGraphicElementPropsStreamArray

All Superinterfaces:
Serializable
All Known Implementing Classes:
GlobeGraphicElementPropsStreamArray

public interface IGlobeGraphicElementPropsStreamArray
extends Serializable

Provides access to the array of Globe Graphic Elements Properties for XML/SOAP streaming.

Product Availability

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


Method Summary
 void add(IGlobeGraphicsElementProperties pElement)
          Adds an element.
 int getCount()
          The element count.
 IGlobeGraphicsElementProperties getElement(int index)
          The element at the specified position.
 void insert(int index, IGlobeGraphicsElementProperties pElement)
          Adds an element at the specified position.
 void remove(int index)
          Removes the element at the specified position.
 void removeAll()
          Removes all elements.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The element 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

IGlobeGraphicsElementProperties getElement(int index)
                                           throws IOException,
                                                  AutomationException
The element 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.IGlobeGraphicsElementProperties
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 element 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 elements.

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(IGlobeGraphicsElementProperties pElement)
         throws IOException,
                AutomationException
Adds an element.

Product Availability

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

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

insert

void insert(int index,
            IGlobeGraphicsElementProperties pElement)
            throws IOException,
                   AutomationException
Adds an element at the specified position.

Product Availability

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

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