Starting with 4D v11 SQL Release 3 the 4D SVG rendering engine can handle the 'textArea' element from the SVG Tiny 1.2 Specification.
This is valuable because text wrapping is not available by default in the SVG specification when using the 'text' tag. The SVG Tiny 1.2 specification allows the 'textArea' element to be used in singular rectangular regions. It is a simplistic text wrapping use, but can save a lot of development time and effort if only a rectangular text box is necessary.
Here is the code for a sample text area, 200 by 300 that wraps the text "Place your sample text here..." within the rectangular box. Border sizes (x and y attributes) and font size and family are also specified within the 'textArea' element:<textArea font-size="25" font-family="Georgia" x="10" y="10" width="200" height="300">Place your sample text here...</textArea>