Describes minimum required functionality from ToolBar control.
You can find more information in comments below. Overrided methods can be found in corresponding base interface.
class IToolBar :public virtual IControl
{
public:
enum ALIGN_TO // How to align child controls
{
atLeft, // To the left of the toolbar
atRight // To the right of the toolbar
};
public:
virtual ALIGN_TO getAlignTo() = 0; // Return child controls alignment
virtual bool setAlignTo(const ALIGN_TO value) = 0; // Set child controls alignment
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IToolBar.h |