PreviewPrintController Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies a print controller that displays a document on a screen as a series of images.
public ref class PreviewPrintController : System::Drawing::Printing::PrintController
public class PreviewPrintController : System.Drawing.Printing.PrintController
type PreviewPrintController = class
inherit PrintController
Public Class PreviewPrintController
Inherits PrintController
- Inheritance
Remarks
Typically, to use the print preview feature, you create an instance of a PrintPreviewControl or PrintPreviewDialog class and set its Document property. The PreviewPrintController is used by the PrintPreviewControl and PrintPreviewDialog classes, though you can use the PreviewPrintController when managing the display of your own print preview window.
When used with a PrintPreviewControl or PrintPreviewDialog, PreviewPrintController sets the PrintController of the associated Document to a PrintControllerWithStatusDialog, performs the print preview, and sets the PrintController back to the original value.
OnStartPrint creates the Graphics that is displayed during the print preview. After OnStartPrint is called, the OnStartPage method sets the Graphics to a graphic of a single page. The OnEndPage method clears the Graphics, while the OnEndPrint method deallocates the object.
For more information about printing, see the System.Drawing.Printing namespace overview.
Constructors
PreviewPrintController() |
Initializes a new instance of the PreviewPrintController class. |
Properties
IsPreview |
Gets a value indicating whether this controller is used for print preview. |
IsPreview |
Gets a value indicating whether the PrintController is used for print preview. (Inherited from PrintController) |
UseAntiAlias |
Gets or sets a value indicating whether to use anti-aliasing when displaying the print preview. |
Methods
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetPreviewPageInfo() |
Captures the pages of a document as a series of images. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
OnEndPage(PrintDocument, PrintPageEventArgs) |
Completes the control sequence that determines when and how to preview a page in a print document. |
OnEndPrint(PrintDocument, PrintEventArgs) |
Completes the control sequence that determines when and how to preview a print document. |
OnStartPage(PrintDocument, PrintPageEventArgs) |
Begins the control sequence that determines when and how to preview a page in a print document. |
OnStartPrint(PrintDocument, PrintEventArgs) |
Begins the control sequence that determines when and how to preview a print document. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |