Message 1 of 1
problem in targeted database export corridor solids
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
i have a problem in exporting solids to (another drawing) although it works in existing drawing
when i run the code it makes a new empty drawing but dont insert the solids there
(the code)
Database dbb = new Database(true, true);
string dwgname = @"c:\temp\DatabaseWithDefObjAndDoc.dwg";
dbb.SaveAs(dwgname, DwgVersion.Current);
.
.//exportParams settings
.
foreach (corridor x in corridorsavailable)
{
if (Addtoanewdrawing.Checked)
{
x.ExportSolids(exportParams, dbb);
}
}