Implements color array management form.
You can find more information in comments below. Overrided methods can be found in corresponding base classes and interfaces.
class CFormColorArray : public virtual IFormColorArray, public IFormColorArrayProto
{
public:
    static const String ClassName; // Class name 
    ColorArray getValue() override;
    int getMinCount() override;
    bool setValue(const ColorArray &value) override;
    bool setMinCount(const int value) override;
    CFormColorArray(IWindow *window, IRenderer *renderer);
    ~CFormColorArray() override;
    static CFormColorArray *getInstance(); // Return form instance if any was created 
};
| Namespace: | nitisa::standard | 
| Include: | Standard/Forms/ColorArray/FormColorArray.h |