Add dimension with text/suffix

Add dimension with text/suffix

myronHBBUW
Contributor Contributor
307 Views
1 Reply
Message 1 of 2

Add dimension with text/suffix

myronHBBUW
Contributor
Contributor

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)

 

0 Likes
Accepted solutions (1)
308 Views
1 Reply
Reply (1)
Message 2 of 2

myronHBBUW
Contributor
Contributor
Accepted solution