EvLayoutHeaderFooter Interface
The EvLayoutHeaderFooter TS interface specifies a blueprint of a JS object that defines a page header or footer.
Properties
An EvLayoutHeaderFooter object has the following properties:
height: number;A number, the height of the header or footer in 2D length unit of measure global for the entire evCreate API.
optional page_number: EvPageNumberLocation;A member of the
EvPageNumberLocationenumeration, the horizontal alignment of the page number in the header or footer.If it is not given, the header or footer does not display a page number.
optional title: string;A string, the text that the header or footer should display.
The title is centered between the left and right sides of the header or footer. Thus, if it is given, the page number should be on the left or right.
Examples
TS
{
height: 72,
page_number: EvPageNumberLocation.Right,
title: "evCreate API"
}
JS
{
height: 72,
page_number: "right",
title: "evCreate API"
}
22 April 2025