CFindDialog



Implementation of the text search dialog component.

You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.

class CFindDialog :public virtual IFindDialog, public CComponent
{
public:
    String getText() override;
    bool isMatchWholeWords() override;
    bool isMatchCase() override;
    IFormFind::SEARCH_DIRECTION getSearchDirection() override;
    // Since 9.0.0 
    bool isUseDialogBox() override;

    bool setText(const String &value) override;
    bool setMatchWholeWords(const bool value) override;
    bool setMatchCase(const bool value) override;
    bool setSearchDirection(const IFormFind::SEARCH_DIRECTION value) override;
    // Since 9.0.0 
    bool setUseDialogBox(const bool value) override;

    bool Execute() override;

    CFindDialog();
    CFindDialog(IForm *parent);
};
Namespace: nitisa::standard
Include: Standard/Components/FindDialog/FindDialog.h