headerFrame

Type: Frame

The headerFrame property of the Printer class contains a reference to a frame that is printed automatically at the beginning of each page. The headerFrame property is set by the setHeader method.

To return the current value of this property, call the Printer class getHeader method.

The code fragment in the following example shows the use of the headerFrame property.

if headerFrame <> null then
    headerHgt := headerFrame.height.Integer;
endif;

The header frame can be modified at any time, but the new frame value takes effect only at the start of a new page of output. The default value is null.