Edit Text width (FontStretch and other options)

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

Hi @Andrii_Levchenko1,

No, sorry.

FontStretch is a property of a font (read-only), no something you can set.

– Dale

Thank you for your reply, Dale
Is there a chance that something like this will be implemented in the upcoming versions of Rhino?