*BeginFooter()
Indicates the beginning of a page footer block in a preferences file.
Syntax
*BeginFooter()
Application
MotionView, HyperView, HyperGraph, TextView, and MediaView.
Context
*BeginDefaults()
Example
*BeginDefaults()
  *BeginHeader()
      *BeginRegion(400, 0, 600, 300)
          *Alignment(Center)
          *Font("Times",0,1,12)
          *Text("Project Title")
          *BorderWidth(1,1,1,1)
      *EndRegion()
  *EndHeader()
  *BeginFooter()
      *BeginRegion(0, 0, 100, 1000)
          *Image("Altair_logo.gif")
          *Text("Your Name")
          *BorderWidth(1,1,1,1)
      *EndRegion()
  *EndFooter()
*EndDefaults()
      Comments
Pages can be annotated using page headers and footers. Footers appear at the bottom of every printed page.
Every *BeginFooter() statement requires a closing *EndFooter() statement.
Page footers can consist of up to 10 regions containing four lines of text each.
Templex variables can also be used in the *Text() statement for automatic insertion of page numbers, filenames, dates, and so on.
Page footer blocks occur within the general defaults block of a preferences file and are different than plot footers.