wy_26 发表于 2006-12-6 22:51:00

关于选择集的问题??

本帖最后由 作者 于 2006-12-6 23:41:16 编辑 <br /><br /> <P>得到选择集后怎样才能得到一个实体?</P>
<P>是用ObjectId通过Transcation在BlockTableRecord里取得吗?</P>

ydp_00769 发表于 2010-12-3 10:42:08

Line l=(Line)trans.GetObject(...,...)

李毛毛 发表于 2010-12-3 15:31:46

                   SelectionSet polySet = polyRes.Value;
                  int polyCount = polySet.Count;
                  Polyline3d poly3line = new Polyline3d();
                  for (int j = 0; j < polyCount; j++)
                  {
                        poly3line = (Polyline3d)trans.GetObject(polySet.ObjectId, OpenMode.ForWrite);
                   }
希望能帮到忙,哈哈...

chpmould 发表于 2010-12-12 08:31:50

学习了,谢谢.......

cdinten 发表于 2010-12-13 14:10:34

用transaction的getobject
页: [1]
查看完整版本: 关于选择集的问题??