[wxPython] Managing wxPython Controls

How do I get at the properties of the various widgets I create in a wx window?

I understand how events are managed and trigger python functions, but is
there a way to go the other way and inspect the contents of a wx object from
within python, event though there is no corresponding python object?

-Pat Callahan
Acton Ma.

How do I get at the properties of the various widgets I create in a wx

window?

I understand how events are managed and trigger python functions, but is
there a way to go the other way and inspect the contents of a wx object

from

within python, event though there is no corresponding python object?

If you know the ID and an ancestor of the window in question then you can
use

    ancestor.FindWindowById(ID)

to get a reference to the window.

ยทยทยท

--
Robin Dunn
Software Craftsman
robin@AllDunn.com Java give you jitters?
http://wxPython.org Relax with wxPython!