- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello,
In most of my drawings, I have one isometric drawing view that needs to be shaded and put into a perspective view. I am able to isolate the drawing view and shade it but I can't for the life of me find a way to change it into perspective view. I've tried using cameras, but it only seemed to change the whole sheet into perspetive view. Can anyone shed some light on how I would be able to change one particular drawing view into perspective if its even possible?
Thanks, Odi
Here's my code so far
For Each oSheet In DFDoc.Sheets
For Each oView In oSheet.DrawingViews
If oView.ViewType = 10504 And oView.ViewOrientationFromBase = False Then
oView.ViewStyle = DrawingViewStyleEnum.kShadedDrawingViewStyle
'CODE: Change drawing view from orthographic to perspective
End If
Next
Next
Solved! Go to Solution.