ONLINE HELP
 WINDEVWEBDEV AND WINDEV MOBILE

Help / WLanguage / WLanguage properties / Properties associated with reports and controls
WINDEV
WindowsLinuxUniversal Windows 10 AppJavaReports and QueriesUser code (UMC)
WEBDEV
WindowsLinuxPHPWEBDEV - Browser code
WINDEV Mobile
AndroidAndroid Widget iPhone/iPadIOS WidgetApple WatchMac CatalystUniversal Windows 10 App
Others
Stored procedures
PageEndStick (Property)
In french: BasPageCollé
The PageEndStick property sets the position of the page footer block. The page footer block can be:
  • right below the previous block (the page footer does not need to be at the bottom of the printed page). The page footer can be used to calculate and display data at the bottom of the block that contains the table.
  • separated from the previous block. The page footer will be printed as usual (at the bottom of the page). This is the default setting of the page footer.
The PageEndStick property is used to:
  • Determine if the page footer should be right below the last block.
  • Change the page footer block options.
Example
// Get the page footer position
IF MyReport.PageEndStick = True THEN
Trace("The page footer is right below the previous block")
END
Syntax

Getting the page footer position Hide the details

<Current mode> = <Report used>.PageEndStick
<Current mode>: Boolean
  • True if the page footer is right below the previous block,
  • False otherwise.
<Report used>: Report name
Name of the report used.

Changing the page footer position Hide the details

<Report used>.PageEndStick = <New mode>
<Report used>: Report name
Name of the report used.
<New mode>: Boolean
  • True if the page footer should be right below the previous block,
  • False otherwise.
Remarks
The PageEndStick property can be used anywhere in the code of the report, both in read and write mode.
Minimum version required
  • Version 9
This page is also available for…
Comments
Click [Add] to post a comment

Last update: 08/24/2023

Send a report | Local help