The PrintOut method sends the document to the current printer. Returns a Boolean.
Syntax
object.PrintOut( Method, SelectionOnly, NumCopies, Collate, xOverlap, yOverlap, Scale )
Parameter |
Type |
Description |
Method |
Variant |
optional; truncate, fit to page, tile, or the MVPrintMethod enumeration |
SelectionOnly |
Variant |
optional; print selected objects only |
NumCopies |
Variant |
optional; number of copies to print |
Collate |
Variant |
optional; collate copies |
xOverlap |
Variant |
optional; horizontal overlap on each page when using the tile Method |
yOverlap |
Variant |
optional; vertical overlap on each page when using the tile Method |
Scale |
Variant |
optional; size to print objects on the page, used with the truncate and tile Methods |
Example
This example demonstrates how to print two copies of a map document.
Plot.PrintOut(NumCopies:=2)
Used by: PlotDocument object