Macros sc_Hearder e sc_Footer.

Ola Pessoal,
Alguem tem uma dica de como executar a macro sc_pdf_header()?

Na classe FPDF faria assim:
function Header()
{
$this->SetFont(‘Arial’,‘B’,15);
$this->Cell(80);
$this->Cell(30,10,‘Title’,1,0,‘C’);
$this->Ln(20);
}

E tambem preciso fazer o mesmo com sc_pdf_footer().
function Footer()
{
$this->SetY(-15);
$this->SetFont(‘Arial’,‘I’,8);
$this->Cell(0,10,‘Page ‘.$this->PageNo().’/{nb}’,0,0,‘C’);
}

Se alguem puder dar uma dica, agradeço.

Ps: Deveria ter exemplos no Help do SC.

Obrigado
Paulo.