Returns: str: The text content of the TextInput. You can set the text content with set_text(text).
(self)
| 2283 | self.set_text(text) |
| 2284 | |
| 2285 | def get_value(self): |
| 2286 | """ |
| 2287 | Returns: |
| 2288 | str: The text content of the TextInput. You can set the text content with set_text(text). |
| 2289 | """ |
| 2290 | return self.get_text() |
| 2291 | |
| 2292 | @decorate_set_on_listener("(self, emitter, new_value)") |
| 2293 | @decorate_event |