Multiline
When this style is set, controls can be displayed on multiple lines in the Tool-Bar. Without this style, by default, controls are vertically centered in the Tool-Bar area.
 
Example - Define a tool-bar with 3 buttons and multiline style
screen section.
...
  01 screen-1-tb-1.
     03 screen-1-pb-4 Push-Button
        line 1.7
        column 2.4
        size 5.2 cells 
        lines 2.6 cells 
        id 11
        title "Exit"
        .
     03 screen-1-pb-5 Push-Button
        line 1.7
        column 13.0
        size 5.2 cells 
        lines 2.6 cells 
        id 12
        title ">"
        .
     03 screen-1-pb-6 Push-Button
        line 1.7
        column 20.1
        size 5.2 cells 
        lines 2.6 cells 
        id 13
        title "<"
        .
...
procedure division.
...
  display tool-bar multiline
          background-high
          bold
          cell width 10
          cell height 10
          control font Default-Font
          color 232
          lines 4.0
          layout-manager lm-resize
          handle screen-1-tb-1-hdl
          .