vote up 0 vote down star

what are the get()attributes of command event in wxpython just like getid().

flag

2 Answers

vote up 0 vote down

http://docs.wxwidgets.org/stable/wx_wxcommandevent.html#wxcommandevent

wxCommandEvent::GetClientData
wxCommandEvent::GetClientObject
wxCommandEvent::GetExtraLong
wxCommandEvent::GetInt
wxCommandEvent::GetSelection
wxCommandEvent::GetString

And those inherited from its superclass:

wxEvent::GetEventObject
wxEvent::GetEventType
wxEvent::GetId
wxEvent::GetSkipped
wxEvent::GetTimestamp
link|flag
vote up 0 vote down

if you don't have documentation available justuse python to print all Get methods

>>> print [c for c in dir(wx.CommandEvent) if c.startswith('Get') ]

it prints ['GetClassName', 'GetClientData', 'GetClientObject', 'GetEventObject', 'GetEventType', 'GetExtraLong', 'GetId', 'GetInt', 'GetSelection', 'GetSkipped', 'GetString', 'GetTimestamp']

link|flag

Your Answer

Get an OpenID
or
never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.