-
-
Notifications
You must be signed in to change notification settings - Fork 342
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d47b9d4
commit 7c55328
Showing
6 changed files
with
112 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...el/views.stack3/Views.pulldown/Copy View Templates to Open Documents.pushbutton/script.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
"""Copy selected view templates to other open models.""" | ||
#pylint: disable=import-error,invalid-name | ||
from pyrevit import revit | ||
from pyrevit import forms | ||
|
||
|
||
selected_viewtemplates = forms.select_viewtemplates(doc=revit.doc) | ||
if selected_viewtemplates: | ||
dest_docs = forms.select_open_docs(title='Select Destination Documents') | ||
if dest_docs: | ||
for ddoc in dest_docs: | ||
with revit.Transaction('Copy View Templates', doc=ddoc): | ||
revit.create.copy_viewtemplates( | ||
selected_viewtemplates, | ||
src_doc=revit.doc, | ||
dest_doc=ddoc | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters