Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
I have a rule to scale (rounded) detail views and I was wondering how adapt this rule for rectangular shaped detail views.
To scale the detail view, I have to scale first the fence radius, which I do this way:
' To access the fence radius, we need to use the "Item(i)" method:
' my case, the detail view Is the third one, and the label Is "B".
Dim oDetail As DetailDrawingView
oDetail = ThisDrawing.Document.ActiveSheet.DrawingViews.Item(3)
oDetail.FenceRadius = ActiveSheet.View("A").Width * 0.1
I guess there's a similar property to control the dimension of the detail, but so far, I haven't found it.
I've tried both: oDetail.Width and oDetail.Height but they are "read only" and so...
Any idea?
Solved! Go to Solution.