:: com :: sun :: star :: ui :: dialogs ::

interface XAsynchronousExecutableDialog

Methods' Summary
setDialogTitle Sets the title of the dialog.  
startExecuteModal Executes (shows) the dialog and returns immediately.  
Methods' Details
setDialogTitle
void
setDialogTitle( [in] string  aTitle );

Description
Sets the title of the dialog.
Parameter aTitle
Set an arbitrary title for the dialog, may be an empty string if the dialog should not have a title.
startExecuteModal
void
startExecuteModal( [in] XDialogClosedListener  xListener );

Description
Executes (shows) the dialog and returns immediately.
Parameter xListener
This listener will be called when the dialog is closed.
Top of Page