ArcGIS Pro 3.3 API Reference Guide
ArcGIS.Core.Data.Knowledge Namespace / KnowledgeGraphArrayValue Class / Add Method
The value to be added

In This Topic
    Add Method (KnowledgeGraphArrayValue)
    In This Topic
    Add a value to the end of the array. This method must be called on the MCT. Use QueuedTask.Run.
    Syntax
    public void Add( 
       object value
    )
    Public Sub Add( _
       ByVal value As Object _
    ) 

    Parameters

    value
    The value to be added
    Exceptions
    ExceptionDescription
    This method or property must be called within the lambda passed to QueuedTask.Run.
    Invalid value type
    Remarks
    Values can be either primitives (number, string, date, etc), geometries, or other KnowledgeGraphValue types. Note: null values are valid. A null value will be automatically converted to a System.DBNull. To store a collection, either add each value from within the collection individually or call AddRange
    Requirements

    Target Platforms: Windows 11, Windows 10

    ArcGIS Pro version: 3.3 or higher.
    See Also