Creates a Text element. If w and h are not defined, then the Text is and elastic rectangle, base on the size of the content. If w is defined, then the Text element has regular “Text” behavior.
(bs='', **kwargs)
| 127 | return Column(**kwargs) |
| 128 | |
| 129 | def newText(bs='', **kwargs): |
| 130 | """Creates a Text element. If w and h are not defined, then the Text is and |
| 131 | elastic rectangle, base on the size of the content. If w is defined, then |
| 132 | the Text element has regular “Text” behavior. |
| 133 | """ |
| 134 | return Text(bs, **kwargs) |
| 135 | |
| 136 | def newRect(**kwargs): |
| 137 | """Creates a new Rect element. Note that points can also be defined in the |
no test coverage detected