PreviewPrintController Class
Specifies a print controller that displays a document on a screen as a series of images.
System.Drawing.Printing::PrintController
System.Drawing.Printing::PreviewPrintController
Assembly: System.Drawing (in System.Drawing.dll)
The PreviewPrintController type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | PreviewPrintController | Initializes a new instance of the PreviewPrintController class. |
| Name | Description | |
|---|---|---|
![]() | IsPreview | Gets a value indicating whether this controller is used for print preview. (Overrides PrintController::IsPreview.) |
![]() | UseAntiAlias | Gets or sets a value indicating whether to use anti-aliasing when displaying the print preview. |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (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 | Completes the control sequence that determines when and how to preview a page in a print document. (Overrides PrintController::OnEndPage(PrintDocument, PrintPageEventArgs).) |
![]() | OnEndPrint | Completes the control sequence that determines when and how to preview a print document. (Overrides PrintController::OnEndPrint(PrintDocument, PrintEventArgs).) |
![]() | OnStartPage | Begins the control sequence that determines when and how to preview a page in a print document. (Overrides PrintController::OnStartPage(PrintDocument, PrintPageEventArgs).) |
![]() | OnStartPrint | Begins the control sequence that determines when and how to preview a print document. (Overrides PrintController::OnStartPrint(PrintDocument, PrintEventArgs).) |
![]() | ToString | Returns a string that represents the current object. (Inherited from Object.) |
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.
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.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
