Heading-Font
This property allows you to set or retrieve the font used for both row and column headings.
 
Example - Define a grid with specific heading font
working-storage section.
77 Calibri-10v0 handle of font.
...
screen section.
...
  03 screen-1-gr-1 Grid
     line 5.7
     column 3.1
     size 34.6 cells 
     lines 15.5 cells 
     id 1
     event procedure screen-1-gr-1-evt-proc
     no-box
     column-headings
     row-dividers 1
     end-color 9
     heading-color 200
     heading-divider-color 12
     heading-font Calibri-10v0
     cursor-frame-width 3
     num-rows 5
     .
...
*> Prior to display the screen with the grid, load the font in 
*> procedure division using w$font
...