Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
While Creating Duplicate WallType using revit Api
using (Transaction tr = new Transaction(dbDoc))
{
WallType retValue = refType.Duplicate("WType1") as WallType;
tr.Commit();
}
at
refType.Duplicate("WType1") as WallType Attempt to modify the model outside of transaction. as an exception
and my from is opened as ShowDialog();
Solved! Go to Solution.