Message 1 of 5
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi,
Is that possible to make this scale view on for the active sheet?
Dim oDrawDoc As DrawingDocument = ThisDrawing.Document Dim oSheet As Sheet Dim oSheets As Sheets Dim oView As DrawingView Dim oViews As DrawingViews Dim oScale As Double oScale = InputBox("Enter Desired Scale", "Scaler", "1") oSheets = oDrawDoc.Sheets For Each oSheet In oSheets oViews = oSheet.DrawingViews For Each oView In oViews If oView.ScaleFromBase = False Then oView.Scale = oScale End If Next Next
Solved! Go to Solution.