CDialogBoxFloatArray



Implements floating point 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 CDialogBoxFloatArray : public virtual IFormFloatArray, public IDialogBoxFloatArrayProto
{
public:
    static const String ClassName; // Class name 

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

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

    CDialogBoxFloatArray();
    CDialogBoxFloatArray(IForm *parent);
    CDialogBoxFloatArray(IControl *parent);
};
Namespace: nitisa::standard
Include: Standard/Forms/FloatArray/DialogBoxFloatArray.h