ArcGIS Pro 3.2 API Reference Guide
ArcGIS.Core.Data.PluginDatastore Namespace / PluginRow Class / PluginRow Constructor / PluginRow Constructor(IEnumerable<Object>)
The number of values and the type of each value should match those returned by GetFields.

In This Topic
    PluginRow Constructor(IEnumerable<Object>)
    In This Topic
    Initializes a new instance of the PluginRow class with a list of field values that represent a specific row in a plug-in table.
    Syntax
    public PluginRow( 
       IEnumerable<object> values
    )
    Public Function New( _
       ByVal values As IEnumerable(Of Object) _
    )

    Parameters

    values
    The number of values and the type of each value should match those returned by GetFields.
    Remarks
    A plug-in table does not necessarily correspond to a database table on the back end. It can be any data structure or format, but it presented to ArcGIS as a table. Similarly, the PluginRow represents an entity that appears to be a row in ArcGIS, but may not correspond to a row in a database management system.The constructor delegates to the Values property to assign values.
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3 or higher.
    See Also