com.esri.arcgis.carto
Interface ILabelClassDescriptions

All Superinterfaces:
Serializable
All Known Implementing Classes:
LabelClassDescriptions

public interface ILabelClassDescriptions
extends Serializable

Provides access to the Label Class Descriptions Interface.

Product Availability

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


Method Summary
 void add(ILabelClassDescription pLabelClassDescription)
          Adds a Label Class Description.
 int getCount()
          The Label Class count.
 ILabelClassDescription getElement(int index)
          The Label Class Description at the specified position.
 void insert(int index, ILabelClassDescription pLabelClassDescription)
          Adds a Label Class Description at the specified position.
 void remove(int index)
          Removes the Label Class Description at the specified position.
 void removeAll()
          Removes all Label Class Descriptions.
 

Method Detail

getCount

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

ILabelClassDescription getElement(int index)
                                  throws IOException,
                                         AutomationException
The Label Class Description 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.ILabelClassDescription
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 Label Class Description 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 Label Class Descriptions.

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(ILabelClassDescription pLabelClassDescription)
         throws IOException,
                AutomationException
Adds a Label Class Description.

Product Availability

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

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

insert

void insert(int index,
            ILabelClassDescription pLabelClassDescription)
            throws IOException,
                   AutomationException
Adds a Label Class Description at the specified position.

Product Availability

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

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