set text of this message.
(self, text)
| 85 | return from_dc_charpointer(lib.dc_msg_get_text(self._dc_msg)) |
| 86 | |
| 87 | def set_text(self, text): |
| 88 | """set text of this message.""" |
| 89 | lib.dc_msg_set_text(self._dc_msg, as_dc_charpointer(text)) |
| 90 | |
| 91 | @props.with_doc |
| 92 | def html(self) -> str: |