Trail_Footer
property (DataWindow object)
Description
Whether the footer of a nested report is displayed at the end of
the report or at the bottom of the page. Trail_Footer applies only to
reports in a composite DataWindow. Setting Trail_Footer to No forces
controls following the report onto a new page.
Applies to
Report controls
Syntax
PowerBuilder dot notation:
|
1 |
dw_control.Object.reportname.Trail_Footer |
Describe and Modify argument:
|
1 |
"reportname.Trail_Footer { = value }" |
|
Parameter |
Description |
|---|---|
|
reportname |
The name of the report control for which you want |
|
value |
Whether the report’s footer trails the last line of Values are: Yes — The footer No — The footer appears at the bottom of |
Examples
|
1 2 3 4 5 |
string setting setting = dw1.Object.rpt_1.Trail_Footer dw1.Object.rpt_1.Trail_Footer = "Yes" setting = dw1.Describe("rpt_1.Trail_Footer") dw1.Modify("rpt_1.Trail_Footer = Yes") |