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

unpublished interface XDialogEventHandler
Description
Handles events fired by dialogs represented by a XDialog interface.

Methods' Summary
callHandlerMethod Handles an event generated by a dialog.  
getSupportedMethodNames returns a sequence of supported method names  
Methods' Details
callHandlerMethod
boolean
callHandlerMethod( [in] XDialog  xDialog,
[in] any  EventObject,
[in] string  MethodName );

Description
Handles an event generated by a dialog.
Parameter xDialog
the dialog instance that generated the event. This is the same dialog instance that was returned by the XDialogProvider2 createDialogWithHandler method when passing the XDialogEventHandler instance receiving the event as handler parameter.
Parameter EventObject
an object describing the event passed by the dialog respectively control firing the event. The type of EventObject depends on the dialog or control event this handler is bound to. This can be any com::sun::star::awt:: * Event type. In any case it is derived from ::com::sun::star::lang::EventObject .
Returns
true if the event was handled, otherwise false.
getSupportedMethodNames
sequence< string >
getSupportedMethodNames();

Description
returns a sequence of supported method names
Returns
all method names that will be accepted in calls to callHandlerMethod.
Top of Page