This document is archived and information here might be outdated. Recommended version. |
ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IF > IFeatureConstruction Interface > IFeatureConstruction.ConstructPolygonsFromFeaturesFromCursor Method (ArcObjects .NET 10.4 SDK) |
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 cancel
cancel is a parameter of type ICancelOperation targetFC
targetFC is a parameter of type IFeatureClass processingBounds
processingBounds is a parameter of type IEnvelope modifyExisting modifyExisting is a parameter of type VARIANT_BOOL replaceTargetSelection replaceTargetSelection is a parameter of type VARIANT_BOOL pLineSrc
pLineSrc is a parameter of type IFeatureCursor InvalidArea
InvalidArea is a parameter of type IInvalidArea ClusterTolerance ClusterTolerance is a parameter of type double pLabels
pLabels is a parameter of type IFeatureClass
This method is similar to ConstructPolygonsFromFeatures, but uses a FeatureCursor for defining input features. This version is useful for standalone applications that don�t have access to a map selection object (or anything else that supports IEnumFeature).