Continue to Site

Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

  • Congratulations waross 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
Sep 16, 2003
30
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.
 
Replies continue below

Recommended for you

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
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor