AssociationDescription Constructor(AssociationType,RowHandle,Int64,RowHandle,Int64)
Creates a new utility network AssociationDescription of the specified type. Use this constructor for connectivity associations only ( is
ArcGIS.Core.Data.UtilityNetwork.AssociationType.JunctionJunctionConnectivity).
Create utility network features and associations in a single edit operation
// Create an EditOperation
EditOperation editOperation = new EditOperation();
editOperation.Name = "Create pole; create transformer bank; attach transformer bank to pole";
// Create the transformer bank
RowToken transformerBankToken = editOperation.Create(transformerBankLayer, transformerBankAttributes);
// Create a pole
RowToken poleToken = editOperation.Create(poleLayer, poleAttributes);
// Create a structural attachment association between the pole and the transformer bank
RowHandle poleHandle = new RowHandle(poleToken);
RowHandle transformerBankHandle = new RowHandle(transformerBankToken);
AssociationDescription poleAttachment = new AssociationDescription(AssociationType.Attachment, poleHandle, transformerBankHandle);
editOperation.Create(poleAttachment);
// Execute the EditOperation
editOperation.Execute();
Target Platforms: Windows 11, Windows 10
ArcGIS Pro version: 3 or higher.