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 class AlignTo // How to align child controls
{
Left, // To the left of the toolbar
Right // To the right of the toolbar
};
public:
virtual AlignTo getAlignTo() = 0; // Return child controls alignment
virtual bool setAlignTo(const AlignTo value) = 0; // Set child controls alignment
};
Namespace: | nitisa::standard |
Include: | Standard/Controls/IToolBar.h |