GetAllFilteredFindPathsConfigurations Method
Gets all the
ArcGIS.Core.CIM.CIMFilteredFindPathsConfigurations for this investigation. This method must be called on the MCT. Use QueuedTask.Run.
Retrieve Investigation Filtered Find Paths Configurations
{
// access the currently active knowledge graph investigation view
KnowledgeGraphInvestigationView activeView = KnowledgeGraphInvestigationView.Active;
KnowledgeGraphInvestigation investigation = activeView?.Investigation;
if (investigation != null)
{
await QueuedTask.Run(() =>
{
// get all the configurations
var configurations = investigation.GetAllFilteredFindPathsConfigurations();
// get a specific FFP configuration
var myConfiguration = investigation.GetFilteredFindPathsConfiguration("FFPConfig1");
});
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)
ArcGIS Pro version: 3.7 or higher.