Exemplo n.º 1
0
 public static void RemoveTag(this ObjectId id, string tag)
 {
     using (var trans = id.Database.TransactionManager.StartTransaction())
     {
         var dbo = (DBObject)trans.GetObject(id, OpenMode.ForWrite);
         DbHelper.RemoveTag(dbo, tag);
         trans.Commit();
     }
 }