Provides access to low level.
When To Use
The IFeatureClassWrite interface provides low-level write access to feature class data. Any associated object behavior is not triggered. In general, IFeatureClassWrite should only be used when implementing custom features that bypass IRow::Store.
Members
Name | Description | |
---|---|---|
RemoveFeature | Deletes a feature from the database, does not trigger OnDelete event. | |
RemoveFeatures | Deletes a set of features from the database, does not trigger OnDelete events. | |
WriteFeature | Stores a feature to the database, does not trigger OnStore event. | |
WriteFeatures | Stores a set of features to the database, does not trigger OnStore events. |
IFeatureClassWrite.RemoveFeature Method
Deletes a feature from the database, does not trigger OnDelete event.
Public Sub RemoveFeature ( _
ByVal Feature As IFeature _
)
public void RemoveFeature (
IFeature Feature
);
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.
IFeatureClassWrite.RemoveFeatures Method
Deletes a set of features from the database, does not trigger OnDelete events.
Public Sub RemoveFeatures ( _
ByVal features As ISet _
)
public void RemoveFeatures (
ISet features
);
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.
IFeatureClassWrite.WriteFeature Method
Stores a feature to the database, does not trigger OnStore event.
Public Sub WriteFeature ( _
ByVal Feature As IFeature _
)
public void WriteFeature (
IFeature Feature
);
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.
IFeatureClassWrite.WriteFeatures Method
Stores a set of features to the database, does not trigger OnStore events.
Public Sub WriteFeatures ( _
ByVal features As ISet _
)
public void WriteFeatures (
ISet features
);
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.
Classes that implement IFeatureClassWrite
Classes | Description |
---|---|
FeatureClass | Esri Feature Class object. |
RasterCatalog | A collection of raster datasets in a Geodatabase table. |