ArcGIS Pro 3.4 API Reference Guide
ArcGIS.Core.Data.NetworkDiagrams Namespace / NetworkDiagram Class / FindInitialNetworkRows Method
Example Version

FindInitialNetworkRows Method
Gets a IReadOnlyList of FindResultItems corresponding to the initial list of network rows used to generate the diagram. This method must be called on the MCT. Use QueuedTask.Run.
Syntax
public IReadOnlyList<FindResultItem> FindInitialNetworkRows()

Return Value

Exceptions
ExceptionDescription
A geodatabase-related exception has occurred.
Example
Find Initial Network Rows Used to create a Network Diagram
public void FindInitialNetworkRows(NetworkDiagram diagram)
{
  IReadOnlyList<FindResultItem> rows = diagram.FindInitialNetworkRows();
  foreach (var findRow in rows)
  {
    long objectID = findRow.ObjectID;
    Guid guid = findRow.GlobalID;
    GeometryType geometryType = findRow.GeometryType;
    int sourceID = findRow.SourceID;
  }
}
Requirements

Target Platforms: Windows 11, Windows 10

ArcGIS Pro version: 3 or higher.
See Also