com.esri.arcgis.display
Interface INewCircleFeedback

All Superinterfaces:
IDisplayFeedback, Serializable
All Known Subinterfaces:
INewCircleFeedback2
All Known Implementing Classes:
NewCircleFeedback

public interface INewCircleFeedback
extends IDisplayFeedback, Serializable

Provides access to members that control the new circle feedback object.

Remarks

This very simple interface has only two methods of its own: Start and Stop. Like the other feedback interfaces, all other functionality is inherited from IDisplayFeedback. The Start method is used to specify the circle's center point, and Stop returns a new ICircularArc. The radius of the circle created depends on the distance between the Start point and the last point used in the inherited MoveTo method.

Note that the ICircularArc, which is returned from Stop, can be converted into an IPolygon by creating a new Polygon object, then adding the ICircularArc using the AddSegment method on the ISegmentCollection interface.

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 start(IPoint point)
          Begins a circular feedback at the given point.
 ICircularArc stop()
          Stops the feedback and returns the circle.
 
Methods inherited from interface com.esri.arcgis.display.IDisplayFeedback
getSymbol, moveTo, refresh, setDisplayByRef, setSymbolByRef
 

Method Detail

start

void start(IPoint point)
           throws IOException,
                  AutomationException
Begins a circular feedback at the given point.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

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

stop

ICircularArc stop()
                  throws IOException,
                         AutomationException
Stops the feedback and returns the circle.

Product Availability

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

Supported Platforms

Windows, Solaris, Linux

Returns:
A reference to a com.esri.arcgis.geometry.ICircularArc
Throws:
IOException - If there are interop problems.
AutomationException - If the ArcObject component throws an exception.