ITabSheet


Describes minimum required functionality from TabSheet control.

You can find more information in comments below. Overrided methods can be found in corresponding base interface.

class ITabSheet :public virtual IControl
{
public:
    virtual IPageControl *getPageControl() = 0; // Return parent page control 
    virtual int getIndex() = 0; // Return index on parent 
    virtual bool isActive() = 0; // Whether is active 
    virtual String getCaption() = 0; // Return caption 

    virtual bool setCaption(const String &value) = 0; // Set caption 
};
Namespace: nitisa::standard
Include: Standard/Controls/IPageControl.h