Find the Length of a text string in units.
Find the Length of a text string in units.
(OP)
Is there a way to find the length of a Text string in untis not characters?. I am building a VBA program for AutoCAD.
INTELLIGENT WORK FORUMS
FOR ENGINEERING PROFESSIONALS Come Join Us!Are you an
Engineering professional? Join Eng-Tips Forums!
*Eng-Tips's functionality depends on members receiving e-mail. By joining you are opting in to receive e-mail. Posting GuidelinesJobs |
Find the Length of a text string in units.
|
RE: Find the Length of a text string in units.
RE: Find the Length of a text string in units.
Set TextObj = ThisDrawing.ModelSpace.AddText(UCase(ViewText), PickPoint, TxtHeight)
TextObj.color = 50
TextObj.Alignment = acAlignmentBottomCenter
TextObj.TextAlignmentPoint = PickPoint
RE: Find the Length of a text string in units.
"Whether you think that you can, or that you can't, you are usually right "
.. Henry Ford
RE: Find the Length of a text string in units.