com.esri.arcgis.display
Interface IMoveGeometryFeedback

All Superinterfaces:
IDisplayFeedback, Serializable
All Known Implementing Classes:
MoveGeometryFeedback

public interface IMoveGeometryFeedback
extends IDisplayFeedback, Serializable

Provides access to members that control feedback for moving a group of geometry.

Remarks

IMoveGeometryFeedback is implemented by the MoveGeometryFeedback coclass and has three methods, AddGeometry, Start, and ClearGeometry. Other functionality is handled by the inherited IDisplayFeedback interface and its members, MoveTo, Refresh, Display, and Symbol.

AddGeometry is used to add an IGeometry to an existing MoveGeometryFeedback and should be called for each geometry object that you wish to include in the feedback operation.

Start begins the feedback process, taking a starting anchor point (IPoint). This anchor point is used to calculate the delta x and delta y offset the first time MoveTo is called--subsequent offsets being calculated using the current and previous MoveTo points. Geometries cannot be added after Start has been called.

ClearGeometry simply removes any previously added geometries from the feedback but does not remove the feedback itself.

Product Availability

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

See Also:
IMoveEnvelopeFeedback, IMoveImageFeedback2, INewBezierCurveFeedback, INewPolygonFeedback, INewMultiPointFeedback, IReshapeFeedback, IMoveImageFeedback, IMoveGeometryFeedback, IResizeEnvelopeFeedback2, INewDimensionFeedback, IResizeEnvelopeFeedback, IPolygonMovePointFeedback, INewLineFeedback, INewCircleFeedback, IVertexFeedback, IMoveLineFeedback, IMovePointFeedback, ILineMovePointFeedback, INewEnvelopeFeedback2, IStretchLineFeedback, INewEnvelopeFeedback, IMovePolygonFeedback

Method Summary
 void addGeometry(IGeometry geometry)
          Adds a geometry to be moved.
 void clearGeometry()
          Clears all the geometries.
 void start(IPoint anchor)
          Starts a move.
 
Methods inherited from interface com.esri.arcgis.display.IDisplayFeedback
getSymbol, moveTo, refresh, setDisplayByRef, setSymbolByRef
 

Method Detail

start

void start(IPoint anchor)
           throws IOException,
                  AutomationException
Starts a move.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Parameters:
anchor - 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.

addGeometry

void addGeometry(IGeometry geometry)
                 throws IOException,
                        AutomationException
Adds a geometry to be moved.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

clearGeometry

void clearGeometry()
                   throws IOException,
                          AutomationException
Clears all the geometries.

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.