TSRVPrint.Print |
Top Previous Next |
|
Prints the whole document. procedure Print(Title: String; Copies: Integer; Collate: Boolean); The method prints the document from SRichViewEdit according to PrintMode. The properties SRichViewEdit.MinPrintedItemNo and MaxPrintedItemNo are taken into account. Title – document title for the Print Manager. Copies – count of copies to print. Collate – if more than one copy is printed, defines whether to print them together or not (if Collate, pages are printed like 1, 2, 3, 1, 2, 3. If not Collate, pages are printed like 1, 1, 2, 2, 3, 3).
Print(Title, Copies, Collate) is equivalent to PrintPages(1, SRichViewEdit.PageCount, Title, Copies, Collate). See also: |