Update ooo320-m1
[ooovba.git] / offapi / com / sun / star / awt / XDialog2.idl
blob83d4ca85b4b4b5cde74813776112d5970e670795
1 #ifndef __com_sun_star_awt_XDialog2_idl__
2 #define __com_sun_star_awt_XDialog2_idl__
4 #ifndef __com_sun_star_awt_XDialog_idl__
5 #include <com/sun/star/awt/XDialog.idl>
6 #endif
9 //=============================================================================
11 module com { module sun { module star { module awt {
13 //=============================================================================
15 /** Makes it possible to end a dialog and set a help id.
17 @since OOo 3.0
19 interface XDialog2: com::sun::star::awt::XDialog
21 /** hides the dialog and then causes <member>XDialog::execute</member>
22 to return with the given result value.
24 void endDialog ( [in] long Result );
25 /** sets the help id so that the standard help button action will
26 show the appropriate help page.
28 void setHelpId ( [in] long Id );
29 };
31 //=============================================================================
33 }; }; }; };
35 #endif