Hi everyone!
Ihave a problem with editing a text width in Rhino 7. In AutoCAD there is a parameter called “width factor”. Are there any analogues in Rhino?
I have tried one-dimensional scaling for the text object - it did not work.
In RhinoCommon I have found Rhino.DocObjects.Font.FontStretch.
But when trying something like
font = rs.TextObjectFont(my_text)
fnt = Rhino.DocObjects.Font(font)
stretch = Rhino.DocObjects.Font.FontStretch.Extracondensed
fnt.FontStretch(stretch)
print fnt.FontStretch()
It prints “Unset”. Am i doing something wrong or this method is still to be implemented?
Will be gratefull for any advices on this topic.
Thanks in advance