Choose export settings revit to dwg

Hi Tomasz,

Thanks for your reply, it actually worked, thing is, now when I export through Dynamo, Dynamo takes the “in-session export settings” with TrueColor and not My settings that I have configured before which creates some ugly stuff once in autocad.

Basically i tried something like this but the code doesn’t respond at all.

def ExportDwg(name, view, folder = folderPath):
	options = DWGExportOptions()
	options.MergedViews = IN[3]
	options.Select_Export_Setup = Export_HVAC
	views = List[ElementId]()
	views.Add(view.Id)
	result = doc.Export(folder, name, views, options)
	return result

Thanks

Vincent