com.esri.arcgis.carto
Interface IMobileLayerInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
MobileLayerInfos

public interface IMobileLayerInfos
extends Serializable

Provides access to the Mobile Layer Info Collection Interface.

Product Availability

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


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

Method Detail

getCount

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

IMobileLayerInfo getElement(int index)
                            throws IOException,
                                   AutomationException
The mobile 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.carto.IMobileLayerInfo
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 mobile map 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 mobile map 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(IMobileLayerInfo mobileLayerInfo)
         throws IOException,
                AutomationException
Adds a mobile layer info.

Product Availability

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

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

insert

void insert(int index,
            IMobileLayerInfo mobileLayerInfo)
            throws IOException,
                   AutomationException
Adds a mobile map layer info at the specified position.

Product Availability

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

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