Applies to
The information in this topic applies only to the specified Visual Studio Tools for Office projects and versions of Microsoft Office.
Project type
Document-level projects
Application-level projects
Microsoft Office version
Word 2003
Word 2007
For more information, see Features Available by Application and Project Type.
If your solution generates a report, you might want to display the report to the user in Print Preview mode.
Call the PrintPreview method of the Microsoft.Office.Tools.Word..::.Document class. To use this code example, run it from the ThisDocument class in your project.
Me.PrintPreview()
this.PrintPreview();
Set the PrintPreview property of the Application object to true.
Application.PrintPreview = True
Application.PrintPreview = true;
Call the PrintPreview method of the Microsoft.Office.Interop.Word..::.Document that you want to preview. To use this code example, run it from the ThisAddIn class in your project.
Me.Application.ActiveDocument.PrintPreview()
this.Application.ActiveDocument.PrintPreview();