码迷,mamicode.com
首页 > Windows程序 > 详细

AutoCAD开发8---获取块属性(C#)

时间:2019-12-12 13:15:28      阅读:253      评论:0      收藏:0      [点我收藏+]

标签:block   code   getattr   text   oca   article   enc   reference   col   

public object GetValueByAttributeName(dbx.AcadBlockReference blkRef,string AttributeName) 
  { 
  object[] Atts=(object[])blkRef.GetAttributes(); 
  object attValue=null; 
  for (int i=0;i  
  { 
  dbx.AcadAttributeReference attRef; 
  attRef=(dbx.AcadAttributeReference)Atts[i]; 
  if (attRef.TagString==AttributeName) 
  { 
  attValue= attRef.TextString ; 
  break; 
  } 
  }//end of for i 
  return attValue; 
  }// end of function

转自:http://www.programfan.com/article/3161.html

AutoCAD开发8---获取块属性(C#)

标签:block   code   getattr   text   oca   article   enc   reference   col   

原文地址:https://www.cnblogs.com/jordonin/p/12028274.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!