Message 1 of 3
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Does anyone know what we need to do to get the "alternate angle" or whatever it is called?
see the attached 2024 drawing for an example.
Thanks!
Curtis
Trying to get this result using the code below:
Dim Sheet_1 = ThisDrawing.Sheets.ItemByName("Sheet:1")
Dim VIEW3 = Sheet_1.DrawingViews.ItemByName("VIEW2")
Dim genDims = Sheet_1.DrawingDimensions.GeneralDimensions
Dim Bottom = VIEW3.GetIntent("Bottom")
Dim ChamferFace = VIEW3.GetIntent("ChamferFace")
Dim PointOnSheet As DocumentUnitsPoint2d = ThisDrawing.Geometry.Point2d(3.4, 5.5)
Dim angDim1 = genDims.AddAngular("Angular Dim 1", PointOnSheet, Bottom, ChamferFace)
But I'm getting this result:
Solved! Go to Solution.