EditLive! 9 Documentation : toolbarSeparator

This element will cause the appearance of a vertical separating line between toolbar elements in Tiny EditLive!.

This element has no attributes or child elements.

Configuration Element Tree Structure

<editLive>
<toolbars>
<toolbar>
<toolbarSeparator>

<editLive>
     ...
     <toolbars>
          <toolbar>
               <toolbarSeparator />
          </toolbar>
     </toolbars>
     ...
</editLive>

Example

The following example demonstrates how to insert a toolbar separator between the Paste and Find buttons on the Command Toolbar.

<editLive>
    ...
    <toolbars>
        <toolbar name="command">
            <toolbarButton name="tlbCut"/>
            <toolbarButton name="tlbCopy"/>
            <toolbarButton name="tlbPaste"/>
            <toolbarSeparator/>
            <toolbarButton name="tlbFind"/>
        </toolbar>
    </toolbars>
    ...
</editLive>

Remarks

The <toolbarSeparator> element can appear multiple times within the <toolbar> element.

The <toolbarSeparator> element must be a complete tag; it cannot contain a tag body. Therefore the tag must be closed in the same line. See the example below:

<toolbarSeparator />