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


ICursor.UpdateRow Method (ArcObjects .NET 10.8 SDK)
ArcObjects Help for .NET developers > ArcObjects Help for .NET developers > ArcObjects namespaces > Geodatabase > ESRI.ArcGIS.GeoDatabase > Interfaces > IC > ICursor Interface > ICursor.UpdateRow Method
ArcGIS Developer Help

ICursor.UpdateRow Method

Update the existing Row in the database corresponding to the current position of the cursor.

[Visual Basic .NET]
Public Sub UpdateRow ( _
    ByVal Row As IRow _
)
[C#]
public void UpdateRow (
    IRow Row
);
[C++]
HRESULT UpdateRow(
  IRow* Row
);
[C++]
Parameters
Row [in]

Row is a parameter of type IRow*

Product Availability

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

Remarks

This method should only be called on update cursors.

See Also

ICursor Interface