Constructs polygons into the specified feature class, using the cursor as the feature source.
[Visual Basic .NET] Public Sub ConstructPolygonsFromFeaturesFromCursor ( _ ByVal cancel As ICancelOperation, _ ByVal targetFC As IFeatureClass, _ ByVal processingBounds As IEnvelope, _ ByVal modifyExisting As Boolean, _ ByVal replaceTargetSelection As Boolean, _ ByVal pLineSrc As IFeatureCursor, _ ByVal InvalidArea As IInvalidArea, _ ByVal ClusterTolerance As Double, _ ByVal pLabels As IFeatureClass _ )
[C#] public void ConstructPolygonsFromFeaturesFromCursor ( ICancelOperation cancel, IFeatureClass targetFC, IEnvelope processingBounds, bool modifyExisting, bool replaceTargetSelection, IFeatureCursor pLineSrc, IInvalidArea InvalidArea, double ClusterTolerance, IFeatureClass pLabels );
[C++]
HRESULT ConstructPolygonsFromFeaturesFromCursor(
ICancelOperation* cancel,
IFeatureClass* targetFC,
IEnvelope* processingBounds,
VARIANT_BOOL modifyExisting,
VARIANT_BOOL replaceTargetSelection,
IFeatureCursor* pLineSrc,
IInvalidArea* InvalidArea,
double ClusterTolerance,
IFeatureClass* pLabels
);
[C++]Parameters
cancelcancel is a parameter of type ICancelOperation
targetFCtargetFC is a parameter of type IFeatureClass
processingBoundsprocessingBounds is a parameter of type IEnvelope
modifyExisting modifyExisting is a parameter of type VARIANT_BOOL replaceTargetSelection replaceTargetSelection is a parameter of type VARIANT_BOOL pLineSrcpLineSrc is a parameter of type IFeatureCursor
InvalidAreaInvalidArea is a parameter of type IInvalidArea
ClusterTolerance ClusterTolerance is a parameter of type double pLabelspLabels is a parameter of type IFeatureClass
Product Availability
Available with ArcGIS Engine, ArcGIS Desktop, and ArcGIS Server.
Remarks
This method is similar to ConstructPolygonsFromFeatures, but uses a FeatureCursor for defining input features. This version is useful for standalone applications that dont have access to a map selection object (or anything else that supports IEnumFeature).