4D v14.3Print form |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
4D v14.3
Print form
|
Print form ( {aTable ;} form {; area1 {; area2}} ) -> Function result | ||||||||
Parameter | Type | Description | ||||||
aTable | Table |
![]() |
Table owning the form, or Default table, if omitted | |||||
form | String |
![]() |
Form to print | |||||
area1 | Longint |
![]() |
Print marker, or Beginning area (if area2 is specified) | |||||
area2 | Longint |
![]() |
Ending area (if area1 specified) | |||||
Function result | Longint |
![]() |
Height of printed section | |||||
Print form simply prints form with the current values of fields and variables of aTable. It is usually used to print very complex reports that require complete control over the printing process. Print form does not do any record processing, break processing or page breaks. These operations are your responsibility. Print form prints fields and variables in a fixed size frame only.
Since Print form does not issue a page break after printing the form, it is easy to combine different forms on the same page. Thus, Print form is perfect for complex printing tasks that involve different tables and different forms. To force a page break between forms, use the PAGE BREAK command. In order to carry printing over to the next page for a form whose height is greater than the available space, call the CANCEL command before the PAGE BREAK command.
Three different syntaxes may be used:
Syntax:
height:=Print form(myTable;myForm)
In this case, Print form only prints the Detail area (the area between the Header line and the Detail line) of the form.
Syntax:
height:=Print form(myTable;myForm;marker)
In this case, the command will print the section designated by the marker. Pass one of the constants of the Form Area theme in the marker parameter:
Constant | Type | Value |
Form break0 | Longint | 300 |
Form break1 | Longint | 301 |
Form break2 | Longint | 302 |
Form break3 | Longint | 303 |
Form break4 | Longint | 304 |
Form break5 | Longint | 305 |
Form break6 | Longint | 306 |
Form break7 | Longint | 307 |
Form break8 | Longint | 308 |
Form break9 | Longint | 309 |
Form detail | Longint | 0 |
Form footer | Longint | 100 |
Form header | Longint | 200 |
Form header1 | Longint | 201 |
Form header10 | Longint | 210 |
Form header2 | Longint | 202 |
Form header3 | Longint | 203 |
Form header4 | Longint | 204 |
Form header5 | Longint | 205 |
Form header6 | Longint | 206 |
Form header7 | Longint | 207 |
Form header8 | Longint | 208 |
Form header9 | Longint | 209 |
Syntax:
height:=Print form(myTable;myForm;areaStart;areaEnd)
In this case, the command will print the section included between the areaStart and areaEnd parameters. The values entered must be expressed in pixels.
The value returned by Print form indicates the height of the printable area. This value will be automatically taken into account by the Get printed height command.
The printer dialog boxes do not appear when you use Print form. The report does not use the print settings that were assigned to the form in the Design environment. There are two ways to specify the print settings before issuing a series of calls to Print form:
Print form builds each printed page in memory. Each page is printed when the page in memory is full or when you call PAGE BREAK. To ensure the printing of the last page after any use of Print form, you must conclude with the PAGE BREAK command (except in the context of an OPEN PRINTING JOB, see note). Otherwise, if the last page is not full, it stays in memory and is not printed.
Warning: If the command is called in the context of a printing job opened with OPEN PRINTING JOB, you must NOT call PAGE BREAK for the last page because it is automatically printed by the CLOSE PRINTING JOB command. If you call PAGE BREAK in this case, a blank page is printed.
This command prints external areas and objects (for example, 4D Write or 4D View areas). The area is reset for each execution of the command.
Warning: Subforms are not printed with Print form. To print only one form with such objects, use PRINT RECORD instead.
Print form generates only one On Printing Detail event for the form method.
4D Server: This command can be executed on 4D Server within the framework of a stored procedure. In this context:
The following example performs as a PRINT SELECTION command would. However, the report uses one of two different forms, depending on whether the record is for a check or a deposit:
QUERY([Register]) ` Select the records
If(OK=1)
ORDER BY([Register]) ` Sort the records
If(OK=1)
PRINT SETTINGS ` Display Printing dialog boxes
If(OK=1)
For($vlRecord;1;Records in selection([Register]))
If([Register]Type ="Check")
Print form([Register];"Check Out") ` Use one form for checks
Else
Print form([Register];"Deposit Out") ` Use another form for deposits
End if
NEXT RECORD([Register])
End for
PAGE BREAK ` Make sure the last page is printed
End if
End if
End if
Refer to the example of the SET PRINT MARKER command.
Product: 4D
Theme: Printing
Number:
5
Modified: 4D 2004.5
CANCEL
PAGE BREAK
PAGE SETUP
PRINT SETTINGS
4D Language Reference ( 4D v12.4)
4D Language Reference ( 4D v11 SQL Release 6)
4D Language Reference ( 4D v14 R3)
4D Language Reference ( 4D v14 R2)
4D Language Reference ( 4D v13.5)
4D Language Reference ( 4D v14.3)
4D Language Reference ( 4D v14 R4)