IGraphEditorHostApplication
This interface is implemented by the various host of GraphEditor to
pass some configuration parameters as well as to receive some event
notifications required by the host application to update itself.
using System.Collections.Generic;
namespace Autodesk.DesignScript.Interfaces
{
public interface IGraphEditorHostApplication
{
Dictionary<string, object> Configurations { get; }
void PostGraphUpdate();
void GraphActivated(uint graphId);
}
}