The following examples describe how basic operations are carried out.
Getting access to the application object. If the EngView Package Designer process is not running, this starts it.
EVPDDLib.IAutoApp pApp = new EVPDDLib.EVPDDApplication(); //Creates a new instance.
EVPDDLib.IDocManager pDocMgr = pApp.DM;
Opening the existing project test.evd:
EVPDDLib.IAutoProject pPrj = pDocMgr.GProject["c:\\engviewwork6\\work\\evd\\test.evd", 0];
pPrj.Export("c:\\engviewwork6\\work\\evd\\test.cff", "cf2");