First, I advise you to have a look to the demo project once you have installed the component. (Install it as usual)

Components quick reference 
--------------------------

TXToolBar
--------

properties
-AutoSave : auto save & load of the toolbar's position
-ControlHeight : Height of all the controls - same value in the whole app
-ControlWidth : Width of all the controls when docked vertically - same value in the whole app
-DockedTo : Dockarea, nil when floating
-DockBase : where to dock the first time, when the toolbar floats at design time.
-DockLine & DockPos : Where dock bar is when docked.
-RegisteryKey : where to store the pos/size in the registry (the toolbar name is added)
 Changing the value does NOT move nor copy anything in the registry.
-HoriontalSpacing : Space between the control groups and the border - same value in the whole app
-VerticalSpacing : Same as above but vertically

events
-OnDockChanged
-OnVerticalChanged - vertically docked
-OnVisibleChanged

Self explanatory. Called affter the corresponding action is done.

methods
-SlaveControl(Master,Slave : TControl);
 Check demo prj for an example.
-NoticeVisibleChanged
 Call it to resize the bar after changing visible property of a control.
-UpdateInfo
 Call it when you've created controls at runtime
-RuntimeCreated
 Call it after you've created and set up a bar at runtime

-SavePosition & LoadPosition
 Save & load the toolbar's position to the registery, the key is :

 Registerykey/XToolBar.name


TDocks
------
properties
-BoundLines : the sides that will have a line drawn on them
-ControlHeight, ControlWidth, Spacing : same as above
-DrawStyle : my style, or Word 7 style of drawing docked toolbars
-Position : side of the form to place the dockarea. There should be maximum one per side.
-ActualVisible : runtime and readonly - false when width or height is nul.
-AllowVisible : allows the control to be visible, if it has ToolBars on it.
   (standard visible property = AllowVisible)

events
-OnInsertBar
-OnRemoveBar
-OnVisibleChanged

Self explanatory. Called after the corresponding action is done.
