Message 1 of 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hello all,
I want to add text to a dimension i place with illogic. My guess is that you can just ad a line with text but I am not sure. if i need to make a new dimension style that would also be okay.
An example would be: add dimension 1 with “Plate Cut” add Dimension 2 with “Clear open”.
Dim Sheet_1 = ThisDrawing.Sheets.ItemByName("Sheet:1")
Dim view_A = Sheet_1.DrawingViews.ItemByName("A")
Dim view_B = Sheet_1.DrawingViews.ItemByName("B")
Dim genDims = Sheet_1.DrawingDimensions.GeneralDimensions
Dim Face3A = view_A.GetIntent({"241261_75-200_N000:1", "241261_75-W200_N000:1", "241261_75-202_N000:1" }, "Face3")
Dim Face3B = view_A.GetIntent({"241261_75-200_N000:1", "241261_75-W200_N000:1", "241261_75-204_N000:1"}, "Face3")
Dim linDim3 = genDims.AddLinear("DimensionA",view_A.SheetPoint(-1, 0), Face3A, Face3B)
Solved! Go to Solution.