TToolbar is a container for tool buttons (TToolButton). it provides an easy way to arrange and manage visual controls.
+* All tool buttons on a toolbar maintain a uniform width and height.
+* Other controls can sit on a toolbar. These controls (which are held in place by invisible tool buttons) maintain a uniform height.
+* Controls can automatically wrap around and start a new row when they do not fit horizontally on the toolbar.
+* The Flat property allows the background to show through the toolbar and gives pop-up borders to the tool buttons.
+* Spaces and dividers (which are in fact specially configured tool buttons) can group controls on the toolbar both visually and functionally.
+Typically, the tool buttons correspond to items in an application's menu and gives the user more direct access to the application's commands.
+Use TToolButton to implement buttons on a toolbar. While other controls (including TButton and TSpeedButton) can be placed on toolbars, TToolButton utilizes special toolbar features to simplify the configuration of buttons and offers added display options such as pop-up borders and transparency.
+To place tool buttons on a toolbar at design time, select the toolbar, right-click, and choose New Button.
+Buttons maintains a list of TToolButton instances. All tool buttons that share a TToolBar parent have the same height and (except for separators and dividers) the same width. Other controls on a toolbar are held in place by invisible separators, which are automatically created and destroyed.
+To add tool buttons to the toolbar at design time, select the toolbar, right-click, and choose New Button. To create a space (separator) between one button and the next, select New Separator. To create a divider between buttons, add a button and set its Style propery to tbsDivider. Other controls may be added to the toolbar directly from the Component palette.
+