PrintControllerWithStatusDialog-Klasse
Steuert, wie ein Dokument gedruckt wird.
Namespace: System.Windows.Forms
Assembly: System.Windows.Forms (in system.windows.forms.dll)
Syntax
'Declaration
Public Class PrintControllerWithStatusDialog
Inherits PrintController
'Usage
Dim instance As PrintControllerWithStatusDialog
public class PrintControllerWithStatusDialog : PrintController
public ref class PrintControllerWithStatusDialog : public PrintController
public class PrintControllerWithStatusDialog extends PrintController
public class PrintControllerWithStatusDialog extends PrintController
Hinweise
Diese Klasse implementiert einen PrintController und fügt ein Statusdialogfeld hinzu. Ein Druckercontroller gibt an, wie ein PrintDocument gedruckt wird.
Eine Liste der anfänglichen Eigenschaftenwerte für eine Instanz der PrintControllerWithStatusDialog-Klasse finden Sie im PrintControllerWithStatusDialog-Konstruktor.
Beispiel
Im folgenden Codebeispiel wird erläutert, wie Sie einen neuen PrintController erstellen und ihn der PrintController-Eigenschaft zuweisen. Im Beispiel wird davon ausgegangen, dass Sie der Klasse den System.Drawing.Printing-Namespace hinzugefügt und folgende neue Instanz eines PrintDocument als myDocumentPrinter
erstellt haben.
Sub myPrint()
If useMyPrintController = True Then
myDocumentPrinter.PrintController = New myControllerImplementation()
If wantsStatusDialog = True Then
myDocumentPrinter.PrintController = _
New PrintControllerWithStatusDialog(myDocumentPrinter.PrintController)
End If
End If
myDocumentPrinter.Print()
End Sub
void myPrint() {
if (useMyPrintController==true) {
myDocumentPrinter.PrintController = new myControllerImplementation();
if (wantsStatusDialog==true) {
myDocumentPrinter.PrintController =
new PrintControllerWithStatusDialog(myDocumentPrinter.PrintController);
}
}
myDocumentPrinter.Print();
}
void myPrint()
{
if ( useMyPrintController )
{
myDocumentPrinter->PrintController = gcnew myControllerImplementation;
if ( wantsStatusDialog )
{
myDocumentPrinter->PrintController =
gcnew PrintControllerWithStatusDialog( myDocumentPrinter->PrintController );
}
}
myDocumentPrinter->Print();
}
void MyPrint()
{
if (useMyPrintController == true) {
myDocumentPrinter.set_PrintController
(new MyControllerImplementation());
if (wantsStatusDialog == true) {
myDocumentPrinter.set_PrintController
(new PrintControllerWithStatusDialog
(myDocumentPrinter.get_PrintController()));
}
}
myDocumentPrinter.Print();
} //MyPrint
Vererbungshierarchie
System.Object
System.Drawing.Printing.PrintController
System.Windows.Forms.PrintControllerWithStatusDialog
Threadsicherheit
Alle öffentlichen statischen (Shared in Visual Basic) Member dieses Typs sind threadsicher. Bei Instanzmembern ist die Threadsicherheit nicht gewährleistet.
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
Siehe auch
Referenz
PrintControllerWithStatusDialog-Member
System.Windows.Forms-Namespace
PrintController