Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi.
Does anyone know how to use ilogic to enable the auto-resize plans option?
Thanks
Solved! Go to Solution.
Hi.
Does anyone know how to use ilogic to enable the auto-resize plans option?
Thanks
Solved! Go to Solution.
Hey, like this?
Dim oDoc As Document = ThisApplication.ActiveDocument For Each W As WorkPlane In oDoc.ComponentDefinition.WorkPlanes W.AutoResize = True Next
Next Possibility
Dim oDoc As Document = ThisApplication.ActiveDocument For Each WA As WorkAxis In oDoc.ComponentDefinition.WorkAxes WA.AutoResize = True Next For Each WP As WorkPlane In oDoc.ComponentDefinition.WorkPlanes WP.AutoResize = True Next