com.esri.arcgis.carto
Interface IMapServerRows

All Superinterfaces:
Serializable
All Known Implementing Classes:
MapServerRows

public interface IMapServerRows
extends Serializable

Provides access to the Map Server Rows Interface.

Remarks

The number of rows returned is not limited by MaxRecordCount.

Product Availability

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


Method Summary
 void add(IMapServerRow row)
          Adds a row.
 int getCount()
          The row count.
 IMapServerRow getElement(int index)
          The row at the specified position.
 void insert(int index, IMapServerRow row)
          Adds a row at the specified position.
 void remove(int index)
          Removes the row at the specified position.
 void removeAll()
          Removes all rows.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The row count.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
The count
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getElement

IMapServerRow getElement(int index)
                         throws IOException,
                                AutomationException
The row 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.IMapServerRow
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 row at the specified position.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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 rows.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

add

void add(IMapServerRow row)
         throws IOException,
                AutomationException
Adds a row.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

insert

void insert(int index,
            IMapServerRow row)
            throws IOException,
                   AutomationException
Adds a row at the specified position.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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