:: com :: sun :: star :: awt ::

interface XDialog
Description
makes it possible to show and hide a dialog and gives access to the title of the dialog.

Methods' Summary
setTitle sets the title of the dialog.  
getTitle gets the title of the dialog.  
execute shows the dialog.  
endExecute hides the dialog and then causes XDialog::execute to return.  
Methods' Details
setTitle
[oneway] void
setTitle( [in] string  Title );

Description
sets the title of the dialog.
getTitle
string
getTitle();

Description
gets the title of the dialog.
execute
short
execute();

Description
shows the dialog.
endExecute
void
endExecute();

Description
hides the dialog and then causes XDialog::execute to return.
Top of Page