Relative-Offset
When this style is set, the LINE and COLUMN coordinates of controls displayed on a Ribbon are relative to the Ribbon area. If the style is not set, then coordinates are relative to the window area.
 
Example - Display a Ribbon control with Relative-Offset style
procedure division.
...
  display ribbon
          tab-to-add ( "Ops 1" "Ops 2" "Ops 3")
          bitmap-number ( 0 0 0)
          lines 4.4375
          color 134
          id 6
          hint "Ribbon tool bar"
          relative-offset
          collapse 1
          header-align 1
          bitmap-width 18
          bitmap-handle icon-png
          handle screen-1-rbn-1-hdl
          .
...