This is the legacy 4D documentation web site. Documentations are progressively being moved to developer.4d.com

Home

 
4D v20 R7
WP New footer

WP New footer 


 

WP New footer ( wpSection ) -> Function result 
Parameter Type   Description
wpSection  Object in 4D Write Pro section or subsection
Function result  Object in 4D Write Pro footer

The WP New footer command creates and returns the footer associated to the section or subsection defined by the wpSection parameter.

If a footer element is already defined for the section or subsection, an undefined object is returned and an error is generated.

Example  

You want to create a footer for the left pages of a section:

 var $section ;$subsection ;$footer : Object
  //Retrieve the first section
 $section:=WP Get section(wpDoc;1)
  //Retrieve the reference on the left subsection of the first section
 $subsection:=WP Get subsection($section;wk left page)
 
  //If the subsection exists, set the footer
 If($subsection#Null)
    $footer:=WP New footer($subsection)
 End if



See also 

WP DELETE FOOTER
WP Get footer
WP New header

 
PROPERTIES 

Product: 4D
Theme: 4D Write Pro Language
Number: 1587

This command can be run in preemptive processes

 
PAGE CONTENTS 
 
HISTORY 

Created: 4D v17 R3

 
ARTICLE USAGE

4D Write Pro Reference ( 4D v20 R7)