Describes minimum required functionality from RadioButton control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IRadioButton :public virtual IControl
{
public:
virtual String getCaption() = 0; // Return caption
virtual int getGroupIndex() = 0; // Return group index. < 0 means no group. Default 0.
virtual bool isChecked() = 0; // Return whether is checked
virtual bool setCaption(const String &value) = 0; // Set caption
virtual bool setGroupIndex(const int value) = 0; // Set group index
virtual bool setChecked(const bool value) = 0; // Set whether is checked
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IRadioButton.h |