cooolseee 发表于 2014-12-1 08:48:37

清除图形

public void purge(){
            #region 清空图形
            PromptSelectionResult psr = ed.SelectAll();
            SelectionSet ss = psr.Value;
            ObjectIdCollection idcs1 = new ObjectIdCollection(ss.GetObjectIds());
            ObjectIdCollection idcs2 = new ObjectIdCollection();
            using (Transaction trans = db.TransactionManager.StartTransaction())
            {
                foreach (ObjectId id in idcs1)
                {
                  id.Erase();
                }
                db.Purge(idcs1);
                trans.Commit();
            }            
            #endregion
            }

cooolseee 发表于 2014-12-5 11:04:01

哪位高手给help一下呀
页: [1]
查看完整版本: 清除图形