首页 > 其他 > 详细

How to retrieve instance parameters from an uninstantiated (uninserted) family

时间:2014-12-18 21:53:52      阅读:276      评论:0      收藏:0      [点我收藏+]

The trick to be able to read the default values for instance parameters is to get to the FamilyManager.
The family manager is a whole separate area of the API, with separate classes for FamilyType and FamilyParameter. You can think of it as the API version of the Family Types dialog in the Family Editor.
Getting there involves opening the family as a document, something along the lines of:

 
if (ColFam.IsEditable)
{
   Document familyDoc = mainDocument.EditFamily( ColFam );
   FamilyManager manager = familyDoc.FamilyManager;

  foreach (FamilyParameter fp in manager.Parameters )
  {
      // over simplified, but hopefully you get the idea....
      if (fp.IsInstance)  
       {
           string instanceValue = manager.CurrentType.AsString( fp );
        }
  }
   
   // don‘t forget to close the family when you‘re done.
   familyDoc.Close(false);
}

How to retrieve instance parameters from an uninstantiated (uninserted) family

原文:http://www.cnblogs.com/xpvincent/p/4172700.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!