英文:
Functions exist but not found in the Revit API documentation
问题
在Revit API元数据中,一些函数,如在元素类中的get_parameter(...)
或get_geometry(...)
等,然而,它们未在文档中显示。
我期望在文档中找到所有的属性和函数。如果找不到,我应该如何知道它们存在?
英文:
I have a simple question. In the Revit API metadata, some functions such as get_parameter(...) or get_geometry(...) in element class. However, they are not displayed in the documentation.
I expect to find all properties and functions in the docs. If not, How am I supposed to know they exist?
答案1
得分: 0
简而言之,get_
前缀是由.NET自动生成的,以使C#客户端能够将参数传递给属性调用。请阅读The Building Coder文章,解释了什么是get_Parameter和get_Geometry。
英文:
In short, the get_
prefix is automatically generated by .NET to enable a C# client to pass in arguments to a property call. Please read The Building Coder article explanining what is get_Parameter and get_Geometry.
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论