On Jun 5, 2007, at 10:24 AM, <[EMAIL PROTECTED]>  
<[EMAIL PROTECTED]> wrote:

> When binding an event, is there a way to pass additional function
> argument(s)?
>
> For example on, on one object I need to call boundFunction(True)  
> and on
> another I want to call boundFunction(False)

        Normally that would be managed by the event handler. Assuming that  
the object you would want True passed is referenced by  
'self.TrueObject':

def handler(self, evt):
        param = (evt.EventObject is self.TrueObject)

At this point, if the event object is TrueObject, 'param' will be  
True; otherwise, False.

-- Ed Leafe
-- http://leafe.com
-- http://dabodev.com




_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/dabo-users/[EMAIL PROTECTED]

Reply via email to