dcornell
Mechanical
- Jan 3, 2005
- 6
When I work in an assembly, view the mates of a specific part, edit one of the mates, a new Design manager window opens beneath the original one. How is this 2nd window closed?
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Sub main()
Set swApp = CreateObject("SldWorks.Application")
Set Part = swApp.ActiveDoc
SplitterPosition = Part.FeatureManagerSplitterPosition
If SplitterPosition = 1 Then
toggle = 0.5
Else: toggle = 1
End If
Part.FeatureManagerSplitterPosition = toggle
End Sub