Describes minimum required functionality from HSVBar control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IHSVBar :public virtual IControl
{
public:
virtual int getHue() = 0; // Return hue(0..360)
virtual bool setHue(const int value) = 0; // Set hue
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IHSVBar.h |