我是在建筑设计公司(Archcorp.biz)工作的软件开发人员。在这里,我们使用Revit API为Revit 2017开发自定义插件。我想知道在将其导入Revit 2017编辑器之前是否可以读取族类型和实例属性?如果是的话,会赞赏一些初步指南。谢谢。
答案 0 :(得分:1)
有一个名为BasicFileInfo
http://www.revitapidocs.com/2018/f7a75811-b2ec-8b4c-10d3-6ed0eadf4551.htm的类可以在不打开文件的情况下为您提供有关文件(rvt)的一些基本信息。
此处描述的方法还提取了一些参数,这些参数具有在家族中设置的值而不实际打开它。 http://thebuildingcoder.typepad.com/blog/2009/11/extract-part-atoms.html
答案 1 :(得分:0)
经过几个小时的努力,我终于想出了一个解决方案。我所要做的就是使用application.OpenDocumentFile(FamilyPath);
方法读取revit family文件。以下代码将帮助任何人提取revit族类型信息。
private void ExtractFamilyInfo(Application app)
{
//A placeholder to store types information
string types = "Family Types: ";
//Open Revit Family File in a separate document
var famDoc = app.OpenDocumentFile(FamilyPath);
//Get the familyManager instance from the open document
var familyManager = famDoc.FamilyManager;
//Get the reference of revit family types
FamilyTypeSet familyTypes = familyManager.Types;
//Set iteration to forward
FamilyTypeSetIterator familyTypesItor = familyTypes.ForwardIterator();
familyTypesItor.Reset();
//Loop through all family types
while (familyTypesItor.MoveNext())
{
FamilyType familyType = familyTypesItor.Current as FamilyType;
//read all family type names
types += "\n" + familyType.Name;
}
//Display text on the UI
DefaultControl.Instance.PropertyText.Text = types.ToString();
}