__call__(self,
event=None,
wx_parent=None,
wx_wizard_sync=None,
wx_wizard_run=True,
wx_wizard_modal=False,
**kwds)
(Call operator)
| source code
|
Make the GUI user function executable.
All keyword args, apart from 'event', 'wx_parent' and 'wx_wizard_run'
will be assumed to be user function arguments and the Uf_page.SetValue()
method of the page will be used to set the GUI arg elements to the values
supplied.
- Parameters:
event (wx event or None) - The wx event.
wx_parent (wx object) - The parent wx object to associate the user function wizard to.
wx_wizard_sync (None or bool) - A flag which if given will switch between synchronous and
asynchronous user function operation.
wx_wizard_run (bool) - A flag which if True will call the wizard run() method.
wx_wizard_modal (bool) - A flag which if True will cause the wizard run() method to have
the modal flag set so that the wizard is modal.
- Returns: bool
- The status of the call. If the call failed, False will be
returned.
|