CreateInvestigation(String,String) Method
Creates a new KnowledgeGraphInvestigation in the project.
This method must be called on the MCT. Use QueuedTask.Run.
Create an Investigation
{
await QueuedTask.Run(() =>
{
var investigation = KnowledgeGraphInvestigationFactory.Instance.CreateInvestigation(url, "myInvestigation");
//TODO - use the investigation
});
}
Create and open an investigation pane
{
await QueuedTask.Run(() =>
{
var investigation = KnowledgeGraphInvestigationFactory.Instance.CreateInvestigation(url, "myInvestigation");
ProApp.Panes.CreateInvestigationPaneAsync(investigation);
});
}
Target Platforms: Windows 11 Home, Pro, Enterprise (64 bit)
ArcGIS Pro version: 3.5 or higher.