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 is used to manage the position of the Page Footer block. The Page Footer block can be:
  • stuck to the previous block, the page footer not being necessarily located at the bottom of the printed page. The page footer can be used to perform calculations and to display them at the bottom of the block displaying the table.
  • not stuck to the previous block, the page footer will be printed as usual (at the bottom of the page). This is the default management mode of the page footer.
The PageEndStick property is used to:
  • Find out whether the page footer must be stuck to the last block.
  • Modify the management mode of the Page Footer block.
Example
// Find out how the page footer is managed
IF MyReport.PageEndStick = True THEN
Trace("Page footer stuck to the previous block")
END
Syntax

Finding out the management mode of the page footer Hide the details

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

Modifying the management mode of the page footer Hide the details

<Report used>.PageEndStick = <New management mode>
<Report used>: Report name
Name of the report used.
<New management mode>: Boolean
  • True if the page footer must be stuck to 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: 05/26/2022

Send a report | Local help