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


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

IFeatureClass.CreateFeatureBuffer Method

Create a feature buffer that can be used with an insert cursor.

[Visual Basic .NET]
Public Function CreateFeatureBuffer ( _
) As IFeatureBuffer
[C#]
public IFeatureBuffer CreateFeatureBuffer (
);
[C++]
HRESULT CreateFeatureBuffer(
void
);

Product Availability

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

Remarks

The CreateFeatureBuffer method creates a feature buffer and returns the IFeatureBuffer interface. This can be used to create new features in the feature class with an insert cursor. Like creating a feature with IFeatureClass::CreateFeature, the field values for the new feature must be initialized to some value before it can be stored in the database. 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.

Calling the CreateFeatureBuffer method in IFeatureClass has the same effect as calling the CreateRowBuffer interface in ITable except that the IFeatureClass methods return an IFeatureBuffer interface on the created row buffer.

See Also

IFeatureClass Interface | IFeature Interface | IFeatureCursor Interface | IFeatureCursor Interface | IFeatureBuffer Interface

.NET Samples

Extending the replication synchronization process