Is there a way to insert views from a file using the Revit API? I’m using the Revit 2013 API. It would need to be the same as the functionality below. Here is a similar question on the Autodesk Revit API Forums.

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Update for Revit 2014 API
This is now possible with the Revit 2014 API. If you download the Revit 2014 SDK there is a sample project DuplicateViews which has a class called
DuplicateViewUtilsthat contains 2 functions,DuplicateSchedulesandDuplicateDraftingViewswhich allows you to copy those 2 types of views from one document to another. The key component is theElementTransformUtils.CopyElementsfunction which allows you to select a from and a to document for your copy.Response for Revit 2013 API
I got a response from one of the Revit API gurus, Arnošt Löbel, and he said that this is not currently possible with the Revit 2013 API but that it has high priority for future releases. Only time will tell if this feature gets included…