Subcript text in dimension prefix
Subcript text in dimension prefix
(OP)
Hi to all,
I would like to add this prefix to my dimension, but I don´t know how.
At the moment I´m just adding a normal text close to the dimensions.
I would like to add this prefix to my dimension, but I don´t know how.
At the moment I´m just adding a normal text close to the dimensions.
Airin
NX Designer





RE: Subcript text in dimension prefix
Is that pic from CATIA? Do you need this in Drafting design workbench? Do you want it by script or manually?
Here is the manual method:
Hope it helps.
Calin
RE: Subcript text in dimension prefix
CODE -->
Sub myText() Dim oDoc As DrawingDocument Set oDoc = CATIA.ActiveDocument Dim oView As DrawingView Set oView = oDoc.Sheets.ActiveSheet.Views.Item(2) Dim oText As DrawingText Set oText = oView.Texts.Add("A1 = 120", 10, 10) oText.SetParameterOnSubString catSubscript, 2, 1, 1 End SubHope it helps,
Calin
RE: Subcript text in dimension prefix
But my doubt is in a dimension, not in a normal text.
This pic is from NX. (I´m NX designer fighting with Catia). In NX you just have to add the text between <l>text<l>
I´m doing my drawing manually, not by script.
Airin
NX Designer
RE: Subcript text in dimension prefix
I don't know other methods.
Sorry.