com.esri.arcgis.carto
Interface ILODInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
LODInfos

public interface ILODInfos
extends Serializable

Provides access to the LOD Info Collection Interface.

Product Availability

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


Method Summary
 void add(ILODInfo pLODInfo)
          Adds a LOD info.
 int getCount()
          The LOD info count.
 ILODInfo getElement(int index)
          The LOD info at the specified position.
 void insert(int index, ILODInfo pLODInfo)
          Adds a LOD info at the specified position.
 void remove(int index)
          Removes the LOD info at the specified position.
 void removeAll()
          Removes all LOD infos.
 

Method Detail

getCount

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

ILODInfo getElement(int index)
                    throws IOException,
                           AutomationException
The LOD 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.carto.ILODInfo
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 LOD 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 LOD 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(ILODInfo pLODInfo)
         throws IOException,
                AutomationException
Adds a LOD info.

Product Availability

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

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

insert

void insert(int index,
            ILODInfo pLODInfo)
            throws IOException,
                   AutomationException
Adds a LOD info at the specified position.

Product Availability

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

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