com.esri.arcgis.datasourcesraster
Interface ITiePointCollection

All Superinterfaces:
Serializable
All Known Implementing Classes:
TiePointCollection

public interface ITiePointCollection
extends Serializable

Provides access to members that control an image tie point collection.

Product Availability

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


Method Summary
 void add(ITiePoint pPoint)
          Adds an image tie point.
 void append(ITiePoint pPoint)
          Appends an image tie point.
 int getCount()
          The image tie point count.
 ITiePoint getPoint(int index)
          The image tie point at the specified position.
 void insert(int index, ITiePoint pPoint)
          Inserts an image tie point after the specified position.
 void remove(int index)
          Removes the image tie point at the specified position.
 void removeAll()
          Removes all image tie points.
 void replace(int index, ITiePoint pPoint)
          Replaces an image tie point at the specified position.
 

Method Detail

getCount

int getCount()
             throws IOException,
                    AutomationException
The image tie point count.

Product Availability

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

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

getPoint

ITiePoint getPoint(int index)
                   throws IOException,
                          AutomationException
The image tie point 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.datasourcesraster.ITiePoint
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

append

void append(ITiePoint pPoint)
            throws IOException,
                   AutomationException
Appends an image tie point.

Product Availability

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

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

replace

void replace(int index,
             ITiePoint pPoint)
             throws IOException,
                    AutomationException
Replaces an image tie point at the specified position.

Product Availability

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

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

insert

void insert(int index,
            ITiePoint pPoint)
            throws IOException,
                   AutomationException
Inserts an image tie point after the specified position.

Product Availability

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

Parameters:
index - The index (in)
pPoint - A reference to a com.esri.arcgis.datasourcesraster.ITiePoint (in)
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 image tie point 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 image tie points.

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(ITiePoint pPoint)
         throws IOException,
                AutomationException
Adds an image tie point.

Product Availability

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

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