Murl Engine Lua Addon API  Version 1.0 beta
Murl.ISystemDialogControl

The ISystemDialogControl interface.


Table members

Inherited


Murl.IControlable

Methods


CreateSystemDialog(title, message)

Create a system-dialog object with a variable number of buttons. Buttons are added using the ISystemDialog::AddButton() method.

Murl.ISystemDialog CreateSystemDialog(String title, String message)

Parameters
titleThe title string for the system-dialog object.
messageThe message string for the system-dialog object.
Returns
Murl.ISystemDialog The system-dialog object or null if creation failed.

DestroySystemDialog(dialog)

Destroy a system-dialog object.

Murl.ISystemDialog DestroySystemDialog(Murl.ISystemDialog dialog)

Parameters
dialogA reference to the system-dialog object to destroy. After destruction the pointer is set to null.
Returns
Murl.ISystemDialog dialog A reference to the system-dialog object to destroy. After destruction the pointer is set to null.