com.esri.arcgis.carto
Interface ILayerDrawingDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
LayerDrawingDescriptions

public interface ILayerDrawingDescriptions
extends Serializable

LayerDrawingDescription Array.

Product Availability

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


Method Summary
 void add(ILayerDrawingDescription pLayerDrawingDescription)
          Adds a LayerDrawingDescription.
 int getCount()
          The LayerDrawingDescription count.
 ILayerDrawingDescription getElement(int index)
          The LayerDrawingDescription at the specified position.
 void insert(int index, ILayerDrawingDescription pLayerDrawingDescription)
          Adds a LayerDrawingDescription info at the specified position.
 void remove(int index)
          Removes the LayerDrawingDescription at the specified position.
 void removeAll()
          Removes all LayerDrawingDescriptions.
 

Method Detail

getCount

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

ILayerDrawingDescription getElement(int index)
                                    throws IOException,
                                           AutomationException
The LayerDrawingDescription 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.ILayerDrawingDescription
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 LayerDrawingDescription 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 LayerDrawingDescriptions.

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(ILayerDrawingDescription pLayerDrawingDescription)
         throws IOException,
                AutomationException
Adds a LayerDrawingDescription.

Product Availability

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

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

insert

void insert(int index,
            ILayerDrawingDescription pLayerDrawingDescription)
            throws IOException,
                   AutomationException
Adds a LayerDrawingDescription info at the specified position.

Product Availability

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

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