Describes minimum required functionality from GroupFold button widget.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IGroupFold :public virtual IControl
{
public:
virtual bool isFolded() = 0; // Return whether widget is in folded state
virtual String getCaption() = 0; // Return caption
virtual bool setFolded(const bool value) = 0; // Set whether widget is in folded state
virtual bool setCaption(const String &value) = 0; // Set caption
virtual void Toggle() = 0; // Switch folded and unfolded state
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IGroupFold.h |