WorkflowView.PrintDocument Property
.NET Framework 3.0
Gets the PrintDocument associated with the WorkflowView.
Namespace: System.Workflow.ComponentModel.Design
Assembly: System.Workflow.ComponentModel (in system.workflow.componentmodel.dll)
Assembly: System.Workflow.ComponentModel (in system.workflow.componentmodel.dll)
The following example demonstrates how to retrieve the PrintDocument object, display a PrintDialog and associate the PrinterSettings that were selected by a user before printing the document.
public void Print() { System.Drawing.Printing.PrintDocument doc = this.workflowView.PrintDocument; PrintDialog dlg = new PrintDialog(); if( dlg.ShowDialog() == DialogResult.OK ) { doc.PrinterSettings = dlg.PrinterSettings; doc.Print(); } }
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.