admin管理员组文章数量:1344979
I'm trying to make a script in Altium. I want to start generating files through a 'job' file. There are two functions in the API:
Function DM_Generate_OutputFilesTo (OutputDirectory : WideString; ParameterOverrides : PChar) : Boolean;
Function DM_Generate_OutputFiles (AGeneratedFilename : PChar) : Boolean;
When I try to use them, I get "Undeclared identifier" errors.
I'm trying to work with it like this:
Procedure GenJob;
Var
WSM : IWorkSpace;
Outputer : IOutputer;
Begin
WSM := GetWorkSpace;
WSM.DM_GetCurrentProject.DM_Outputers(Outputer);
Outputer.DM_Generate_OutputFilesTo('C:\','');
End;
What am I doing wrong?
本文标签:
版权声明:本文标题:delphi - Altium script reportes Undeclared identifier for DM_Generate_OutputFiles and DM_Generate_OutputFilesTo functions - Stac 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743775213a2536848.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论