04 Documentation updates
Designer
NotesUIView class Print method PageSeparator parameter
Prints the selected document(s) or the current view.
- If no parameters are specified, or if the first parameter is omitted, displays the File Print dialog box.
- If the second form of the method is used, the document or view prints according to the specified parameters.
NOTE: This method is new with Release 5.
Defined in: NotesUIView
Syntax
Call notesUIView.Print
Call notesUIView.Print( numCopies% [, fromPage% ] [, toPage% ] [, draft ] [, pageSeparator% ] [, formOverride$ ] [, printview ] [, dateRangeBegin ] [, dateRangeEnd ] )
Parameters
numCopies%
Integer. The number of copies you want to print. If you omit this parameter you get the first form of the method and all other parameters are ignored.
fromPage%,
Integer. Optional. The page of a document where you want to start printing. "0" means all.
toPage%
Integer. Optional. The page of a document where you want to stop printing. "0" means all.
draft
Boolean. Optional. Specify True if you want to print the document in draft mode.
pageSeparator%
Integer. Optional. Determines the page separator.
| 0 | No page separator |
| 1 | Line between documents |
| 2 | Page break between documents |
formOverride$
Text. Optional. The name of the form that you want to use to print the document.
printView
Boolean. Optional. Specify True to indicate that you want to print the current view instead of the contents of the document. Defaults to False.
dateRangeBegin
Variant. Optional. Prints the beginning date if printing from a calendar view.
dateRangeEnd
Variant. Optional. Prints the end date if printing from a calendar view.