This document is archived and information here might be outdated.  Recommended version.


IFeatureClassWrite.RemoveFeature Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IF > IFeatureClassWrite Interface > IFeatureClassWrite.RemoveFeature Method
ArcGIS Developer Help

IFeatureClassWrite.RemoveFeature Method

Deletes a feature from the database, does not trigger OnDelete event.

[Visual Basic .NET]
Public Sub RemoveFeature ( _
    ByVal Feature As IFeature _
)
[C#]
public void RemoveFeature (
    IFeature Feature
);
[C++]
HRESULT RemoveFeature(
  IFeature* Feature
);
[C++]
Parameters
Feature [in]

Feature is a parameter of type IFeature*

Product Availability

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

Remarks

All edits to features that participate in a Topology or Geometric Network must be performed within an edit session and bracketed within an edit operation.

See Also

IFeatureClassWrite Interface