+ def Navigate(*args, **kwargs):
+ """
+ Navigate(self, int flags=NavigationKeyEvent.IsForward) -> bool
+
+ :param flags: A combination of the ``IsForward`` and ``WinChange``
+ values in the `wx.NavigationKeyEvent` class, which
+ determine if the navigation should be in forward or
+ reverse order, and if it should be able to cross
+ parent window boundaries, such as between notebook
+ pages or MDI child frames. Typically the status of
+ the Shift key (for forward or reverse) or the
+ Control key (for WinChange) would be used to
+ determine how to set the flags.
+
+ situation in which you may wish to call this method is from a text
+ rol custom keypress handler to do the default navigation behaviour
+ the tab key, since the standard default behaviour for a multiline
+ control with the wx.TE_PROCESS_TAB style is to insert a tab and
+ navigate to the next control.
+ """
+ return _core_.Window_Navigate(*args, **kwargs)
+