com.esri.arcgis.system
Interface IPropertySetArray

All Superinterfaces:
Serializable
All Known Implementing Classes:
PropertySetArray

public interface IPropertySetArray
extends Serializable

Provides access to the IPropertySetArray Interface.

Product Availability

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


Method Summary
 void add(IPropertySet pPropertySet)
          Adds a propertyset.
 int getCount()
          The propertyset count.
 IPropertySet getElement(int index)
          The propertyset at the specified position.
 void insert(int index, IPropertySet pPropertySet)
          Adds a propertyset at the specified position.
 void remove(int index)
          Removes the propertyset at the specified position.
 void removeAll()
          Removes all propertysets.
 

Method Detail

getCount

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

IPropertySet getElement(int index)
                        throws IOException,
                               AutomationException
The propertyset 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.system.IPropertySet
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 propertyset 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 propertysets.

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(IPropertySet pPropertySet)
         throws IOException,
                AutomationException
Adds a propertyset.

Product Availability

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

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

insert

void insert(int index,
            IPropertySet pPropertySet)
            throws IOException,
                   AutomationException
Adds a propertyset at the specified position.

Product Availability

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

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