ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Core.Data Namespace / UpdateCursor Class
Members Version

UpdateCursor Class
This class allows users to quickly and efficiently update rows in a Table.
Object Model
UpdateCursor ClassRow Class
Syntax
public sealed class UpdateCursor : ArcGIS.Core.CoreObjectsBase, System.IDisposable  
Remarks
The UpdateCursor class is designed for fast row updates. It is guaranteed to provide performance at least as good as calling Table.CreateRow and Row.Store in a loop. For many tables and feature classes, performance may be significantly better. When used in an ArcGIS Pro add-in, update cursors should be used within an edit operation callback. For stand-alone CoreHost applications, update cursor usage should be enclosed within a call to Geodatabase.ApplyEdits.
Inheritance Hierarchy

System.Object
   ArcGIS.Core.CoreObjectsBase
      ArcGIS.Core.Data.UpdateCursor

Requirements

Target Platforms: Windows 11, Windows 10

ArcGIS Pro version: 3.4 or higher.
See Also