This element places a horizontal separating line between commands within a Ephox EditLive! for Java menu bar menu. This line will appear between the commands defined by the <menuItem> elements immediately before and after the <menuSeparator> element.
This element has no attributes or child elements.
<editLive>
...
<menuBar>
<menu>
<menuSeparator/>
</menu>
</menuBar>
...
</editLive>The following example demonstrates how to insert a menu separator into a menu. In the instance of EditLive! for Java created from this configuration the menu separator will appear between the Redo and the Cut commands.
<editLive>
...
<menuBar>
<menu name="Edit">
<menuItem name="Undo"/>
<menuItem name="Redo"/>
<menuSeparator/>
<menuItem name="Cut"/>
<menuItem name="Copy"/>
<menuItem name="Paste"/>
</menu>
</menuBar>
...
</editLive> Copyright 2001-2005 Ephox Corporation. All Rights Reserved.