******************** wx.FindReplaceDialog ******************** Inheritance diagram for `wx.FindReplaceDialog`: | .. inheritance-diagram:: wx.FindReplaceDialog | Description =========== `wx.FindReplaceDialog` is a standard modeless dialog which is used to allow the user to search for some text (and possibly replace it with something else). The actual searching is supposed to be done in the owner window which is the parent of this dialog. .. note:: Note that it means that unlike for the other standard dialogs this one **must** have a parent window. Also note that there is no way to use this dialog in a modal way; it is always, by design and implementation, modeless. Derived From ^^^^^^^^^^^^^ * `wx.Dialog `_ Window Styles ^^^^^^^^^^^^^ ================================================== ================================================== Window Style Description ================================================== ================================================== ``wx.FR_REPLACEDIALOG`` Replace dialog (otherwise find dialog) ``wx.FR_NOUPDOWN`` Don't allow changing the search direction ``wx.FR_NOMATCHCASE`` Don't allow case sensitive searching ``wx.FR_NOWHOLEWORD`` Don't allow whole word searching ================================================== ================================================== Methods Summary ^^^^^^^^^^^^^^^ * `__init__ <#__init__>`_ * `GetData <#GetData>`_ * `SetData <#SetData>`_ Properties Summary ^^^^^^^^^^^^^^^^^^ * `Data <#Data>`_ Class API ========= Methods ^^^^^^^ .. method:: __init__(parent, data, title, style=0) Create a `wx.FindReplaceDialog`. The parent and data parameters must be non-``None``. Use `Show `_ to display the dialog. **Parameters:** * `parent` (`wx.Window `_) * `data` (`wx.FindReplaceData `_) * `title` (string) * `style` (int) | **Returns:** `wx.FindReplaceDialog `_ -------- .. method:: GetData() Get the `wx.FindReplaceData` object used by this dialog. | **Returns:** `wx.FindReplaceData `_ -------- .. method:: SetData(data) Set the `wx.FindReplaceData` object used by this dialog. **Parameters:** * `data` (`wx.FindReplaceData `_) -------- Properties ^^^^^^^^^^ .. attribute:: Data See `GetData <#GetData>`_ and `SetData <#SetData>`_