message_html Property
The HTML version of the message.
Syntax
def get_message_html() -> str: ... def set_message_html(value: str) -> None: ...
message_html = property(get_message_html, set_message_html)
Default Value
""
Remarks
This property contains the HTML version of the message.
When this property is set, the class automatically computes a plaintext version of the text and puts it into message_text. You may choose to override this default text with your own version.
Example (Setting MessageHTML)
component.MessageHTML =
"<b>Hello</b>, my name is <i>Tom</i>"
;