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