ArcGIS Pro 3.0 API Reference Guide
ArcGIS.Desktop.Editing Namespace / AssociationDescription Class / AssociationDescription Constructor / AssociationDescription Constructor(AssociationType,RowHandle,Int64,RowHandle)
The association type.
The first row in the association.
The terminal on the first row to connect.
The second row in the association.

In This Topic
    AssociationDescription Constructor(AssociationType,RowHandle,Int64,RowHandle)
    In This Topic
    Creates a new utility network AssociationDescription of the specified type. Use this constructor for
    Syntax
    public AssociationDescription( 
       AssociationType type,
       RowHandle row1,
       long terminalID1,
       RowHandle row2
    )
    Public Function New( _
       ByVal type As AssociationType, _
       ByVal row1 As RowHandle, _
       ByVal terminalID1 As Long, _
       ByVal row2 As RowHandle _
    )

    Parameters

    type
    The association type.
    row1
    The first row in the association.
    terminalID1
    The terminal on the first row to connect.
    row2
    The second row in the association.
    Remarks
    A utility network connectivity association is defined by two junction rows that are not geometrically coincident. A utility network junction-edge "from side" object connectivity association represents a junction or non-spatial junction object (row1) connecting to the "from" side of a non-spatial edge object (row2). A utility network junction-edge "to side" object connectivity association represents a junction or non-spatial junction object (row1) connecting to the "to" side of a non-spatial edge object (row2).

    If type is ArcGIS.Core.Data.UtilityNetwork.AssociationType.Attachment, the overloaded AssociationDescription Constructor(AssociationType,RowHandle,RowHandle) should be used instead.

    If type is ArcGIS.Core.Data.UtilityNetwork.AssociationType.Containment, the overloaded AssociationDescription Constructor(AssociationType,RowHandle,RowHandle,Boolean) should be used instead.

    If type is ArcGIS.Core.Data.UtilityNetwork.AssociationType.JunctionEdgeObjectConnectivityMidspan, the overloaded AssociationDescription Constructor(AssociationType,RowHandle,RowHandle,Double) should be used instead.
    Requirements

    Target Platforms: Windows 11, Windows 10, Windows 8.1

    See Also