ArcGIS Pro 3.7 API Reference Guide
ArcGIS.Core.Data Namespace / InsertCursor Class
Members

In This Topic
    InsertCursor Class
    In This Topic
    This class allows users to quickly and efficiently insert rows in a Table.
    Syntax
    Public NotInheritable Class InsertCursor 
       Inherits ArcGIS.Core.CoreObjectsBase
       Implements System.IDisposable 
    public sealed class InsertCursor : ArcGIS.Core.CoreObjectsBase, System.IDisposable  
    Remarks
    The InsertCursor class is designed for fast row inserts. 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, insert cursors should be used within an edit operation callback. For stand-alone CoreHost applications, insert cursor usage should be enclosed within a call to Geodatabase.ApplyEdits.
    Inheritance Hierarchy

    System.Object
       ArcGIS.Core.CoreObjectsBase
          ArcGIS.Core.Data.InsertCursor

    Requirements

    Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)

    ArcGIS Pro version: 3.0 or higher.
    See Also