com.esri.arcgis.display
Interface IOffsetInteraction

All Superinterfaces:
Serializable
All Known Implementing Classes:
IOffsetInteractionProxy

public interface IOffsetInteraction
extends Serializable

Provides access to the parameters of the Offset Representation Tool.

Product Availability

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


Method Summary
 double getMapOffset()
          Current offset expressed in map units.
 double getOffset()
          Current offset expressed in points.
 void setMapOffset(double mapOffset)
          Current offset expressed in map units.
 void setOffset(double offset)
          Current offset expressed in points.
 

Method Detail

setOffset

void setOffset(double offset)
               throws IOException,
                      AutomationException
Current offset expressed in points.

Product Availability

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

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

getOffset

double getOffset()
                 throws IOException,
                        AutomationException
Current offset expressed in points.

Product Availability

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

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

setMapOffset

void setMapOffset(double mapOffset)
                  throws IOException,
                         AutomationException
Current offset expressed in map units.

Product Availability

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

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

getMapOffset

double getMapOffset()
                    throws IOException,
                           AutomationException
Current offset expressed in map units.

Product Availability

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

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