ImportFilteredFindPathsConfiguration Method
Import a filtered find paths configuration from a filtered find paths configuration file (*.ffpcfg) and add it to the investigation.
Parameters
- filePath
- A filtered find paths configuration file.
Return Value
A Task to a
ArcGIS.Core.CIM.CIMFilteredFindPathsConfiguration. If the import is not successful, then null is returned.
Import a Filtered Find Paths Configuration
{
// access the currently active knowledge graph investigation view
KnowledgeGraphInvestigationView activeView = KnowledgeGraphInvestigationView.Active;
KnowledgeGraphInvestigation investigation = activeView?.Investigation;
if (investigation != null)
{
string pathName = @"d:\data\EntityFFPConfig.ffpcfg";
// import from ffpcfg
var ffpConfig = await investigation.ImportFilteredFindPathsConfiguration(pathName);
}
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)
ArcGIS Pro version: 3.7 or higher.