ArcObjects Library Reference (Display)  

INewCircleFeedback Interface

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

Product Availability

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

Members

Description
Write-only property Display The display the feedback object will use.
Method MoveTo Move to the new point.
Method Refresh Call this after a refresh to show feedback again.
Method Start Begins a circular feedback at the given point.
Method Stop Stops the feedback and returns the circle.
Read/write property Symbol The symbol the feedback object will use.

Inherited Interfaces

Interfaces Description
IDisplayFeedback Provides access to members that control the base display feedback.

CoClasses that implement INewCircleFeedback

CoClasses and Classes Description
NewCircleFeedback 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.

See Also

INewDimensionFeedback Interface | INewBezierCurveFeedback Interface | IMoveGeometryFeedback Interface | INewEnvelopeFeedback Interface | IResizeEnvelopeFeedback2 Interface | INewCircleFeedback Interface | ILineMovePointFeedback Interface | INewMultiPointFeedback Interface | IMoveImageFeedback Interface | IMoveLineFeedback Interface | IResizeEnvelopeFeedback Interface | IMovePolygonFeedback Interface | INewEnvelopeFeedback2 Interface | IPolygonMovePointFeedback Interface | IReshapeFeedback Interface | IMoveImageFeedback2 Interface | INewPolygonFeedback Interface | IVertexFeedback Interface | IMoveEnvelopeFeedback Interface | INewLineFeedback Interface | IStretchLineFeedback Interface | IMovePointFeedback Interface

.NET Samples

Custom feedback tool and font drop-down list tool control (Code Files: ToolSample)