Skip to content

incendium.vision.gui.info

César Román edited this page Feb 26, 2023 · 9 revisions

Description

Display an informational-style message popup box to the user.

Syntax

incendium.vision.gui.info(message, [title], [detail])

Args:

  • message (str): The message to display. This will be translated to the selected Locale.
  • title (str): A title for the message box. This will be translated to the selected Locale. Defaults to "Information". Optional.
  • detail (str): Additional text to display. This will be translated to the selected Locale. Optional.

Recommendations

None.

Code Examples

import incendium.vision.gui

incendium.vision.gui.info("Important information.")
Clone this wiki locally