Recursively searches all windows below self and returns the first window which has the id an_id. This corresponds to the find_window method method in WxWidgets when called with an integer.
Source Code
# File wx/classes/window.rb, line 18 def find_window_by_id(an_id) Wx::Window.find_window_by_id(an_id, self) end
<code/>and<pre/>for code samples.