EaBIM一直以来积极响应国家“十二五”推进建筑业信息化的号召,对建筑领域的信息技术开展深入技术交流和探讨!致力于打造“BIM-建筑师-生态技术”三位一体综合资源交流共享平台,希望为BIM与可持续设计理念及技术的普及做出微小的贡献!!!

EaBIM

 找回密码
 注册

QQ登录

只需一步,快速开始

扫一扫,访问微社区

搜索
查看: 445|回复: 1
打印 上一主题 下一主题

Parameter of Revit API – 12: FamilyParameter Information

[复制链接]

1514

主题

7465

帖子

1万

积分

admin

Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10Rank: 10

积分
12404

社区QQ达人

跳转到指定楼层
楼主
发表于 2014-1-9 12:24:36 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
Revit family parameter (FamilyParameter) has more information that the model Parameter. Besides those common parameter properties like BuiltInParameterGroup, ParameterType, StorageType, and DisplayUnitType, the FamilyParameter also has some information about whether it is for report purpose only (IsReporting), instance applicable or type applicable (IsInstance), formula assignable (CanAssignFormula), and so on.

In this post, let’s see how to collect the information of FamilyParameter from a family document and put it together into a good place which is ready to use for any possible purposes.
The following help classes and methods will store and handle the FamilyParameter information regarding a family document:
        public class FamilyParameterInfo
        {
            public string Name { get; set; }
            //public string Value { get; set; } // Parameter Only!
            public string ElementID { get; set; }
            public string GUID { get; set; }
            public string BuiltinID { get; set; }
            public BuiltInParameterGroup Group { get; set; }
            public ParameterType Type { get; set; }
            public StorageType Storage { get; set; }
            public string Unit { get; set; } //DisplayUnitType doesn't work!
            public bool Shared { get; set; }    // Both but different handling!
            public bool Instance { get; set; }  // FamilyParameter Only!
            public bool Reporting { get; set; }  // FamilyParameter Only!
            public bool FormulaDetermined { get; set; } // FamilyParameter Only!
            public bool CanAssignFormula { get; set; }
            public bool ReadOnly { get; set; }
        }
        public static string GetDUTString(FamilyParameter p)
        {
            string unitType = string.Empty;
            try { unitType = p.DisplayUnitType.ToString(); }
            catch { }
            return unitType;
        }
        public static List<FamilyParameterInfo> GetFamilyParametersInfo(Document doc)
        {
            List<FamilyParameterInfo> paramList =
                (from FamilyParameter p in doc.FamilyManager.Parameters
                 select new FamilyParameterInfo
                 {
                     Name = p.Definition.Name,
                     //Value = p.AsValueString(),   //N/A
                     ElementID = p.Id.IntegerValue.ToString(),
                     GUID = (p.Definition as ExternalDefinition) != null ?
                        (p.Definition as ExternalDefinition).GUID.ToString() : string.Empty,
                     BuiltinID = (p.Definition as InternalDefinition) != null ?
                        (p.Definition as InternalDefinition).BuiltInParameter.ToString() : string.Empty,
                     Group = p.Definition.ParameterGroup,
                     Type = p.Definition.ParameterType,
                     Storage = p.StorageType,
                     Unit = GetDUTString(p),
                     Shared = (p.Definition as ExternalDefinition) != null,
                     Instance = p.IsInstance,
                     Reporting = p.IsReporting,
                     FormulaDetermined = p.IsDeterminedByFormula,
                     CanAssignFormula = p.CanAssignFormula,
                     ReadOnly = p.IsReadOnly,
                 }).ToList();
            return paramList;
        }
And the following code will convert the informative object List into a single string:

        public string ParametersInfoToCSVString(List<FamilyParameterInfo> infoList, ref string title)
        {
            StringBuilder sb = new StringBuilder();
            PropertyInfo[] propInfoArrary = typeof(FamilyParameterInfo).GetProperties();
            foreach (PropertyInfo pi in propInfoArrary)
            {
                title += pi.Name + ",";
            }
            title = title.Remove(title.Length - 1);
            foreach (FamilyParameterInfo info in infoList)
            {
                foreach (PropertyInfo pi in propInfoArrary)
                {
                    object obj = info.GetType().InvokeMember(pi.Name, BindingFlags.GetProperty, null, info, null);
                    sb.Append((obj == null ? string.Empty : obj.ToString()) + ",");
                }
                sb.Remove(sb.Length - 1, 1).Append(Environment.NewLine);
            }
            return sb.ToString();
        }
Then we can write all the FamilyParameter information of an opened family document to a CSV file.

                …
                if (CachedDoc.IsFamilyDocument)
                {
                    List<FamilyParameterInfo> famParamsInfo = GetFamilyParametersInfo(CachedDoc);
                    using (StreamWriter sw = new StreamWriter(@"c:\FamilyParametersInfo.csv"))
                    {
                        string title = string.Empty;
                        string rows = ParametersInfoToCSVString(famParamsInfo, ref title);
                        sw.WriteLine(title);
                        sw.Write(rows);
                    }
                }
                …
Finally the CSV file can be read into a spreadsheet of Excel.
  • A FamilyParameter can be neither a built-in parameter (as indicated by the INVALID value of the BuiltInParameter enumeration) nor a shared Parameter (as indicated by the null ExternalDefinition or empty GUID)!
  • The sign of the ElementId integer value of the FamilyParameter can be used to indicate whether it has a valid BuiltInParameter value or not!
  • The IsDeterminedByFormula seems to always return FALSE or has nothing to do with the CanAssignFormula property!
The informative object list can be used for any other purposes as well for sure.
FamilyParameter Infoer of RevitAddinWizardcan help do all of these in a configurable and flexible way.

分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友 微信微信
收藏收藏 转播转播 分享分享 分享淘帖 支持支持 反对反对
工作时间:工作日的9:00-12:00/13:30-18:00,节假日不在线,请勿留言
*滑块验证:
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|EaBIM网 ( 苏ICP备2020058923号-1  苏公网安备32011502011255号

GMT+8, 2024-11-16 18:48

Powered by Discuz! X3.2 Licensed

© 2001-2013 Comsenz Inc.

快速回复 返回顶部 返回列表