Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TugboatEng on being selected by the Eng-Tips community for having the most helpful posts in the forums last week. Way to Go!

Macro to change Display Style of Drawing View 1

Status
Not open for further replies.

kris44

Mechanical
Joined
Sep 16, 2003
Messages
30
Location
AU
Does anyone have a Macro which will change all drawing views to a particualr Display Style (e.g. HLR, Shaded)? We like to show our assembly drawings in shaded but it makes it very slow to work with them.
 
Hi,

Try this macro

Dim swApp As SldWorks.SldWorks
Dim swDraw As SldWorks.DrawingDoc
Dim swView As SldWorks.View

Sub main()

Set swApp = Application.SldWorks
Set swDraw = swApp.ActiveDoc

Set swView = swDraw.GetFirstView

While Not swView Is Nothing

swView.SetDisplayMode swDisplayMode_e.swSHADED

Set swView = swView.GetNextView

Wend

swDraw.EditRebuild

End Sub

Please modify the swDisplayMode_e enumerator's value to display the view you would like.

Thanks,
Artem

Artem Taturevich
CSWP
 
Thank you - star for you
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top