The IGraphicAccess3 API
- Last UpdatedJul 08, 2024
- 1 minute read
The IGraphicAccess3 API is implemented by the ArchestrA.Visualization.GraphicAccess.dll,
located in:
\Program Files (x86)\ArchestrA\Framework\Bin
The IGraphicAccess3 API is used to export the Graphics Performance Index (GPI) of the Industrial Graphic.
IGraphicAccess3 passes galaxy, graphicName and the XML file path as parameters.
public interface IGraphicAccess3 : IGraphicAccess2
{
/// <summary>Get GPI XML of an Industrial Graphic</summary>
/// <param name="galaxy">IGalaxy obtained from GRAccess</param>
///<param name="graphicName">The graphic name</param>
///<param name="sGPIXML">Returns GPI details in XML format</param>
/// <returns>Result of the method</returns
ICommandResult GetGPI (IGalaxy galaxy, string graphicName, out string sGPIXML);
}