Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Is it possible to get the DWG Export Settings in the current project? Dale
______________
Yes, I'm Satoshi.
Solved! Go to Solution.
Is it possible to get the DWG Export Settings in the current project? Dale
Solved! Go to Solution.
Update:
I received this reply from ADN:
Thanks for your query,
Yes, we can get ExportDWGSettings, this class inherits from Element, so we can use ElementFilter to filter all of them. code example:
var settingFilter = new ElementClassFilter(typeof(ExportDWGSettings));
FilteredElementCollector exportDwgSettings = new FilteredElementCollector(RevitDoc);
exportDwgSettings = exportDwgSettings.WherePasses(settingFilter);
foreach (ExportDWGSettings element in exportDwgSettings)
{
}
Best Regards,
Aaron Lu
Developer Technical Services http://adn.autodesk.com
And this post seems to duplicate the request (with responses):
I am yet to test the samples.
Dale