Describes minimum required functionality for CheckBox item type.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IListItemCheckBox :public virtual IListItemCaption
{
public:
virtual bool isChecked() = 0; // Whether is checked
virtual bool setChecked(const bool value) = 0; // Set checked/unchecked state
};
Namespace: | nitisa::standard |
Include: | Standard/ListItems/IListItemCheckBox.h |