Get Text Rect (Not in Base Package)

Returns the bounding rectangle of a string.

[user-specified font] is a cluster containing the specific font characteristics for the text you draw. This specification is ignored unless desired font is set to user-specified font.
Font Name selects the font to use for the string.
Size selects the size of the font in points.
Strikeout? If TRUE, text appears in strikeout.
Italic? If TRUE, text appears in italic.
Underline? If TRUE, text appears underlined.
Outline? If TRUE, text appears in outline.
Shadow? If TRUE, text appears in shadow.
Bold? If TRUE, text appears in bold.
desired font specifies the font for the text you draw.
alignment specifies the location of the text relative to the specified origin.
horizontal is an enumeration that you use to specify the horizontal position of the text with respect to the origin.

0left—The horizontal component of origin specifies the left edge of the text.
1center—The horizontal component of the origin specifies the center of the text.
2right—The horizontal component of origin specifies the right of the text.
vertical is an enumeration that you use to specify the vertical position of the text with respect to the origin.

0top—The vertical component of origin specifies the top edge of the text.
1center—The vertical component of the origin specifies the center of the text.
2bottom—The vertical component of origin specifies the bottom of the text.
origin is the coordinate of the starting point of the text.
horizontal is the x-axis coordinate that increases to the right.
vertical is the y-axis coordinate that increases to the bottom.
text is the string you want to draw in the picture.
rect is a cluster containing four numerics that describe the left, top, right, and bottom coordinates of the outer edges of the rectangle.
left is the horizontal coordinate of the left edge of the rectangle.
top is the vertical coordinate of the top edge of the rectangle.
right is the horizontal coordinate of the right edge of the rectangle.
bottom is the vertical coordinate of the bottom edge of the rectangle.