length = TextLength(rp, string, count)
D0 A1 A0 D0:16
WORD TextLength(struct RastPort *, STRPTR, WORD);
This graphics function determines the length that text data would occupy if output to the specified RastPort with the current attributes. The length is specified as the number of raster dots: to determine what the current position would be after a Write() using this string, add the length to cp_x (cp_y is unchanged by Write()). Use the newer
TextExtent() to get more information.
Prior to V36, the result length occupied only the low word of d0 and was not sign extended into the high word.
A length that would overflow single word arithmetic is not calculated correctly.
TextExtent() Text() TextFit() <graphics/text.h> <graphics/rastport.h>