Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
As it says, can you tell the difference between a cropped view and a sketched view? I've got a bit that loops through all drawing views searching for sketched views and removes them. This creates a problem with Cropped views being sketches. I'd like to be able to tell the difference between the two so I can remove one and not the other.
This is the snippet i've got:
Dim oDV As DrawingView Dim oSV As DrawingSketch If SkVBox.CheckState = Windows.Forms.CheckState.Checked Then For Each oDV In oSht.DrawingViews For Each oSV In oDV.Sketches oSV.Delete() Next Next End If
Thanks
Solved! Go to Solution.