Implements Find form as dialog box.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CDialogBoxFind :public virtual IFormFind, public IDialogBoxFindProto
{
public:
static const String ClassName; // Class name
String getText() override;
bool isMatchWholeWords() override;
bool isMatchCase() override;
SEARCH_DIRECTION getSearchDirection() override;
bool setText(const String &value) override;
bool setMatchWholeWords(const bool value) override;
bool setMatchCase(const bool value) override;
bool setSearchDirection(const SEARCH_DIRECTION value) override;
// Since 9.0.0
void ActivateFirstEnabledInput() override;
CDialogBoxFind();
CDialogBoxFind(IForm *parent);
CDialogBoxFind(IControl *parent);
};
Namespace: | nitisa::standard |
Include: | Standard/Forms/Find/DialogBoxFind.h |