Delphi中如何通过ToolsAPI获取模块的结构?
我想通过ToolsAPI获取模块(pascal单元)的结构信息。就像 IDE 的结构视图一样。
类、记录、接口、变量/常量等 成员、参数等
是否已经有一个简单的&获取这些元数据的有效方法?
I want to get the structure information of a module (pascal unit) by ToolsAPI. just like the structure view of the IDE does.
Classes, Records, Interfaces, Variables/Constants, etc
Members, Parameters, etc.
Is there already an easy & efficient way to get these metadata?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
AFAIK 没有办法查询给定文件的特殊结构化信息。
您可以做的是访问“结构”窗格中的信息。这种方式要求文件是活动模块(可以通过 OTA 实现),输出取决于结构窗格设置(工具 | 选项... -> 环境选项 | 资源管理器),并且如果节点是字段,一个过程或任何需要通过图像索引、父级确定的内容...
此代码遍历“结构”窗格。
AFAIK there is no way to query special structured information for a given file.
What you could do is to access the information in the Structure pane. That way requires the file to be the active module (can be achieved by the OTA), the output depends on the Structure pane settings (Tools | Options... -> Environment Options | Explorer) and if a node is a field, a procedure or whatever needs to be determined over the image index, parent...
This code walks through the Structure pane.
也许使用解析器并不是一个坏主意?
Maybe using a parser is not so bad idea?