Determine the x,y,z dimensions of that text entity.
This function returns the 3-D coordinates of a box that encloses a text entity. The lower-left corner is always (0,0). The argument entity-list must refer to a text entity but not text in dimensions and blocks.
Example
Code | Returns |
---|---|
(setq txt (entlast)) | Entity name. |
(setq txt1 (entget txt)) | Dotted-pair list. |
(textbox txt1) | ((0.0 0.0 0.0)(1.8 0.2 0.0)) |
Tell me about...