Layout-Manager
This property associates a Layout Manager with the Window. Three types of Layout Managers (defined in the isresize.def Copybook) are supported.
 
Example - Display a window with a layout manager
working-storage section.
77 window-handle usage handle of window.
...
procedure division.
...
  display standard  window background-low
          screen line 41
          screen column 91
          size 64.0
          lines 55.8
          cell width 10
          cell height 10
          label-offset 20
          control font Default-Font
          color 260
          resizable
          modeless
          title-bar
          no wrap
          title "Screen"
          layout-manager lm-resize
          handle window-handle
          .