.NET
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic to the Top
- Bookmark
- Subscribe
- Printer Friendly Page
Purging and Auditing files
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
I've done a few searches around the forum (and google) and found a few cryptic posts about auditing files.
I'm hoping for a straight answer to this question: Is it possible to audit a drawing with the current .Net API for AutoCAD?
If so, does it require the editor, or can it be run in the background to enable a lot of drawings to be audited very quickly.
As for purging - i've seen a few posts and articles that talk about purging a very specific thing (i.e. materials, line types, etc.).
Has anyone written a .Net utility that is similar to the Purge command in AutoCAD? By this I mean, one that will purge all unused objects in the drawing. I have started looking for all the tables that contain the IDs of all the object types that the Purge command looks for, but was also hoping that someone with more experience and time than myself had already tackled this problem.
Thanks for your time.
Re: Purging and Auditing files
- Mark as New
- Bookmark
- Subscribe
- Subscribe to RSS Feed
- Highlight
- Email to a Friend
- Report Inappropriate Content
Here is the Purge All I use, open to comments. However I cannot find an Audit process, did you?
Dale
<code>
public static bool purgeItems(Database db, ObjectIdCollection tableIds, bool silent)
{
Editor ed = AcadApp.DocumentManager.MdiActiveDocument.Editor;
bool itemsPurged = false;
using(Transaction tr = db.TransactionManager.StartTransaction())
{
ObjectIdCollection purgeableIds = new ObjectIdCollection();
foreach(ObjectId tableId in tableIds)
{
SymbolTable table = (SymbolTable)tr.GetObject(tableId, OpenMode.ForRead, false);
foreach(ObjectId recordId in table)
purgeableIds.Add(recordId);
}
db.Purge(purgeableIds);
if(purgeableIds.Count != 0)
{
itemsPurged = true;
foreach(ObjectId id in purgeableIds)
{
SymbolTableRecord record = (SymbolTableRecord)tr.GetObject(id, OpenMode.ForWrite);
string recordName = record.Name;
if(!silent)
{
if(!recordName.Contains("|"))
{
ed.WriteMessage("\nPurging " +
record.GetType().Name + " " + recordName);
}
}
record.Erase();
}
}
tr.Commit();
}
return itemsPurged;
}
<code>
