Message 1 of 6
Autodesk.Aec.DatabaseServices.MultiViewBlockReference
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
How do I find the definition of a Autodesk.Aec.DatabaseServices.MultiViewBlockReference? So far I have:
I can track down the MultiViewBlockReference but not the definition of it.
private void callback_ObjectAppended(object sender, ObjectEventArgs e)
{
if (e.DBObject.ToString() == "Autodesk.Aec.DatabaseServices.MultiViewBlockReference")
{
Database db = Application.DocumentManager.MdiActiveDocument.Database;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = db.TransactionManager;
using (Transaction tr = tm.StartTransaction())
{
//
}
}
}
Regards
Chris
I can track down the MultiViewBlockReference but not the definition of it.
private void callback_ObjectAppended(object sender, ObjectEventArgs e)
{
if (e.DBObject.ToString() == "Autodesk.Aec.DatabaseServices.MultiViewBlockReference")
{
Database db = Application.DocumentManager.MdiActiveDocument.Database;
Autodesk.AutoCAD.DatabaseServices.TransactionManager tm = db.TransactionManager;
using (Transaction tr = tm.StartTransaction())
{
//
}
}
}
Regards
Chris