|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
public interface IFeatureSnapAgent
Provides access to members that control a feature snap agent's properties.
Use this interface to set the behavior of new feature snap agents. Feature snap agents control which features the editor attempts to snap to. For example, you may want the editor to automatically snap to the vertex of all buildings. To implement this you would create a new FeatureSnapAgent and specify the FeatureClass to be 'Buildings' and the HitType to be esriGeometryPartVertex. New feature snap agents have to be added to the editor's snap environment with ISnapEnvironment::AddSnapAgent before they can be used unless you want to call Snap yourself.
The last member, FeatureCache, is very rarely used. Use it when applying a snapping constraint on top of an existing placement constraint. For example, you may want to create a constraint that places a point exactly 100 feet away but additionally honors the snap environment that states, snap the point to a feature if it is within the search tolerance. Thus the point has to be 100 feet away no matter what and if this location is within snap tolerance of a feature, place the point exactly on the feature. The basic idea is create the distance constraint inside a sketch tool and then reuse the FeatureCache associated with the particular FeatureSnapAgent so you don't have to manage a new one.
The IFeatureSnapAgent interface is used to set the properties of a feature snap agent. IFeatureSnapAgent inherits from ISnapAgent so all of the members on ISnapAgent are directly available.
ISnapEnvironment
,
ISnapAgent
Method Summary | |
---|---|
IFeatureCache |
getFeatureCache()
The FeatureCache associated with the feature snap agent. |
IFeatureClass |
getFeatureClass()
The featureclass the feature snap agent snaps to. |
int |
getHitType()
The part of a geometry the feature snap agent snaps to. |
void |
setFeatureClassByRef(IFeatureClass featClass)
The featureclass the feature snap agent snaps to. |
void |
setHitType(int hitType)
The part of a geometry the feature snap agent snaps to. |
Methods inherited from interface com.esri.arcgis.editor.ISnapAgent |
---|
getName, snap |
Method Detail |
---|
void setFeatureClassByRef(IFeatureClass featClass) throws IOException, AutomationException
featClass
- A reference to a com.esri.arcgis.geodatabase.IFeatureClass (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IFeatureClass getFeatureClass() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.void setHitType(int hitType) throws IOException, AutomationException
Dim pFeatSnap as IFeatureSnapAgent
Set pFeatSnap = New FeatureSnap
pFeatSnap.HitType = esriGeometryPartVertex
hitType
- A com.esri.arcgis.geometry.esriGeometryHitPartType constant (in)
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.int getHitType() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.IFeatureCache getFeatureCache() throws IOException, AutomationException
IOException
- If there are interop problems.
AutomationException
- If the ArcObject component throws an exception.
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |