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


ITable.CreateRowBuffer Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IT > ITable Interface > ITable.CreateRowBuffer Method
ArcGIS Developer Help

ITable.CreateRowBuffer Method

Creates a row buffer that can be used with an insert cursor.

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

Product Availability

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

Remarks

The CreateRowBuffer method creates a new row buffer object in memory and returns it to the caller. No row is created in the database. The returned row buffer does not have an object ID value. The caller can set values into the row buffer and use it as an argument to the InsertRow method on an insert cursor; the latter is obtained by calling the Insert method on the Table.

See Also

ITable Interface