While exporting to DWG file (or other CAD formats) in the 'Export CAD formats' dialog box we have a check box to select / unselect 'Export views on sheets and links as external reference'. How can we set this to 'Yes' or 'No' using Revit API ?
To set this option we need to use DWGExportOptions.MergedViews API.
public bool MergedViews { get; set; } -> Is used to merge all views in one file (via XRefs). Default value is false for mergedViews.
Hope this is useful to you !