CDialogBoxIntegerArray



Implements integer array management form as dialog box.

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

class CDialogBoxIntegerArray : public virtual IFormIntegerArray, public IDialogBoxIntegerArrayProto
{
public:
    static const String ClassName; // Class name 

    IntegerArray getValue() override;
    int getMinCount() override;
    bool hasMin() override;
    bool hasMax() override;
    int getMin() override;
    int getMax() override;

    bool setValue(const IntegerArray &value) override;
    bool setMinCount(const int value) override;
    bool setHasMin(const bool value) override;
    bool setHasMax(const bool value) override;
    bool setMin(const int value) override;
    bool setMax(const int value) override;

    CDialogBoxIntegerArray();
    CDialogBoxIntegerArray(IForm *parent);
    CDialogBoxIntegerArray(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/IntegerArray/DialogBoxIntegerArray.h