Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I've written some simple code which sets the scale of all the views in a drawing. However, I would like it skip any views which are iso, as we always have a small iso view in the corner of our drawings. The scale of these is much less that scale of the main views.
Is it possible to do this this in ilogic?
ie.
For Each oView As DrawingView In oSheet.DrawingViews
if oView.ORIENTATION = iso then
'next
else
oView.Scale = 1 / var
end if
next
I have not been able to find an orientation object in the DrawingView object.
thanks,
John
Solved! Go to Solution.