com.esri.arcgis.schematic
Interface ISchematicInMemoryFeatureSubLinkGeometry

All Superinterfaces:
Serializable
All Known Implementing Classes:
ISchematicInMemoryFeatureSubLinkGeometryProxy, SchematicInMemoryFeatureSubLink

public interface ISchematicInMemoryFeatureSubLinkGeometry
extends Serializable

Provides access to members that manage the schematic in memory feature sublink geometry.

Product Availability

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


Method Summary
 IPoint getFromPoint(ILayer layer)
          The 'from' point of the schematic in memory feature sublink geometry.
 IPoint getInitialVertex(int i)
          The position of the vertex at given index of the schematic in memory feature sublink initial geometry.
 int getInitialVerticesCount()
          Number of vertices of the schematic in memory feature sublink initial geometry.
 IPoint getToPoint(ILayer layer)
          The 'to' point of the schematic in memory feature link geometry.
 IPoint getVertex(int i)
          The position of the vertex at given index of the schematic in memory feature sublink geometry.
 int getVerticesCount()
          Number of vertices of the schematic in memory feature sublink geometry.
 void queryInitialVertex(int index, IPoint point)
          Queries the position of the vertex at given index of the schematic in memory feature sublink initial geometry.
 void queryVertex(int index, IPoint point)
          Queries the position of the vertex at given index of the schematic in memory feature sublink geometry.
 

Method Detail

getFromPoint

IPoint getFromPoint(ILayer layer)
                    throws IOException,
                           AutomationException
The 'from' point of the schematic in memory feature sublink geometry.

Product Availability

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

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

getToPoint

IPoint getToPoint(ILayer layer)
                  throws IOException,
                         AutomationException
The 'to' point of the schematic in memory feature link geometry.

Product Availability

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

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

getVerticesCount

int getVerticesCount()
                     throws IOException,
                            AutomationException
Number of vertices of the schematic in memory feature sublink geometry.

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.

getVertex

IPoint getVertex(int i)
                 throws IOException,
                        AutomationException
The position of the vertex at given index of the schematic in memory feature sublink geometry.

Product Availability

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

Parameters:
i - The i (in)
Returns:
A reference to a com.esri.arcgis.geometry.IPoint
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

queryVertex

void queryVertex(int index,
                 IPoint point)
                 throws IOException,
                        AutomationException
Queries the position of the vertex at given index of the schematic in memory feature sublink geometry.

Product Availability

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

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

getInitialVerticesCount

int getInitialVerticesCount()
                            throws IOException,
                                   AutomationException
Number of vertices of the schematic in memory feature sublink initial geometry.

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.

getInitialVertex

IPoint getInitialVertex(int i)
                        throws IOException,
                               AutomationException
The position of the vertex at given index of the schematic in memory feature sublink initial geometry.

Product Availability

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

Parameters:
i - The i (in)
Returns:
A reference to a com.esri.arcgis.geometry.IPoint
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

queryInitialVertex

void queryInitialVertex(int index,
                        IPoint point)
                        throws IOException,
                               AutomationException
Queries the position of the vertex at given index of the schematic in memory feature sublink initial geometry.

Product Availability

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

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