com.esri.arcgis.datasourcesfile
Interface ISMRouterPoint

All Superinterfaces:
Serializable
All Known Implementing Classes:
SMRouterPoint

public interface ISMRouterPoint
extends Serializable

Provides access to the location of single geographic point.

Description

Represents the geographic location.

Product Availability

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


Method Summary
 double getX()
          The X coordinate of the point.
 double getY()
          The Y coordinate of the point.
 void setX(double pVal)
          The X coordinate of the point.
 void setY(double pVal)
          The Y coordinate of the point.
 

Method Detail

getX

double getX()
            throws IOException,
                   AutomationException
The X coordinate of the point.

Description

Returns the X coordinate of the point.

Product Availability

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

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

setX

void setX(double pVal)
          throws IOException,
                 AutomationException
The X coordinate of the point.

Description

Sets the X coordinate of the point.

Product Availability

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

Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.

getY

double getY()
            throws IOException,
                   AutomationException
The Y coordinate of the point.

Description

Returns the Y coordinate of the point.

Product Availability

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

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

setY

void setY(double pVal)
          throws IOException,
                 AutomationException
The Y coordinate of the point.

Description

Sets the Y coordinate of the point.

Product Availability

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

Parameters:
pVal - The pVal (in)
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.