com.esri.arcgis.carto
Interface IPropertyInfos

All Superinterfaces:
Serializable
All Known Implementing Classes:
PropertyInfos

public interface IPropertyInfos
extends Serializable

Property infos for a graphic feature.

Product Availability

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


Method Summary
 void add(IPropertyInfo propertyInfo)
          Adds a PropertyInfo.
 int getCount()
          PropertyInfo count.
 IPropertyInfo getElement(int index)
          PropertyInfo at the specified position.
 void insert(int index, IPropertyInfo propertyInfo)
          Adds a PropertyInfo at the specified position.
 void remove(int index)
          Removes the PropertyInfo at the specified position.
 void removeAll()
          Removes all PropertyInfo objects.
 

Method Detail

getCount

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

IPropertyInfo getElement(int index)
                         throws IOException,
                                AutomationException
PropertyInfo 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.IPropertyInfo
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 PropertyInfo 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 PropertyInfo objects.

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(IPropertyInfo propertyInfo)
         throws IOException,
                AutomationException
Adds a PropertyInfo.

Product Availability

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

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

insert

void insert(int index,
            IPropertyInfo propertyInfo)
            throws IOException,
                   AutomationException
Adds a PropertyInfo at the specified position.

Product Availability

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

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