Xbasic
PRINT_TO_FAX Function
Syntax
OutputString as C = print_to_fax(C obj_type ,C obj_name ,C filter_str ,C order )
Arguments
- obj_type
Object_Type The name of an object type. The following values are possible:
- "Browse"
- "Form"
- "Label"
- "Letter"
- "Report"
- obj_name
The name of the object to fax.
- filter_str
Optional. Default = ".T." (All records). A character filter expression that evaluates to a logical value and selects records from the table.
- order
Optional. Default = record order. A character order expression that sorts selected records.
Description
PRINT_TO_FAX() selects the appropriate object, merges it with the selected data, and displays the Print dialog box..
Example
? PRINT_TO_FAX("Report", "Invoice", ".t.", "Invoice_number")
Limitations
Desktop applications only.
See Also