Skip to content

incendium.vision.gui.info

César Román edited this page Apr 30, 2024 · 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. Optional. Defaults to "Information".
  • 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