Describes minimum required functionality from EditCalc control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IEditCalc :public virtual IEdit
{
public:
virtual bool isAutoCalculate() = 0; // Return whether value should be automatically calculated or only after "Return" pressed
virtual bool isCalculateOnReturn() = 0; // Return whether value should be calculated after "Return" pressed
virtual bool setAutoCalculate(const bool value) = 0; // Set whether value should be automatically calculated or only after "Return" pressed
virtual bool setCalculateOnReturn(const bool value) = 0; // Set whether value should be calculated after "Return" pressed
virtual bool Calculate() = 0; // Calculate value
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IEditCalc.h |