Files
Phoenix/docs/sphinx/rest_substitutions/snippets/python/converted/wx.EvtHandler.TryAfter.1.py
2016-08-13 17:33:33 -07:00

11 lines
268 B
Python

class MyClass(public BaseClass): # something inheriting from wx.EvtHandler
...
def TryAfter(self, event):
if (BaseClass.TryAfter(self, event))
return True
return self.MyPostProcess(event)