BevelButton.AddSeparator

From Real Software Documentation

Jump to: navigation, search
Method
BevelButton.AddSeparator ( )

Adds a row to the bottom of the menu and uses a separator as the menu “item”.

Example

The following example adds a separator between the second and third menu items.

Me.caption="Items"
Me.captionalign=0 //flush left
Me.hasMenu=2 //menu on right

me.addRow "First item"
me.addRow "Second item"
me.AddSeparator
me.addRow "Third item"
Personal tools