Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
I want delete all dimensions on a specific view. I using a rule that remove all dimensions on a sheet (as showed below), but I need remove only on a view. What is the change I need to make to the rule?
ActiveSheet = ThisDrawing.Sheet("A3:1")
Dim oSheet As Sheet = ThisDoc.Document.ActiveSheet
Dim oView As DrawingView = ActiveSheet.View("FRONTAL").View
Dim oDoc As Document =oView.ReferencedDocumentDescriptor.ReferencedDocument
'REMOVE DIMENSIONS
Dim oDim As DrawingDimension
For Each oDim In oSheet.DrawingDimensions
oDim.Delete
Next 'Dim
Solved! Go to Solution.