The PageSettings Class Printing
4.7.4 Choosing a Printer
The code given in Examples Ex am ple 4- 13 and Ex am ple 4- 14 merely prints to the default printer. To allow the user to select a specific printer and set other printer options, pass the PrintDocument object to a PrintDialog object and call the PrintDialog objects ShowDialog method. The ShowDialog method displays a PrintDialog dialog box shown in Figur e 5- 19 in Chapt er 5 . When the user clicks OK in the PrintDialog dialog box, the ShowDialog method sets the appropriate values in the given PrintDocument object. The PrintDocument objects Print method can then be called to print the document to the selected printer. Here is the code: Create the PrintDocument object and the dialog box object. Dim pd As New HelloPrintDocument Dim dlg As New PrintDialog Pass the PrintDocument object to the dialog box object. dlg.Document = pd Show the dialog box. Be sure to test the result so that printing occurs only if the user clicks OK. If dlg.ShowDialog = DialogResult.OK Then Print the document. pd.Print End If This code assumes the presence of the HelloPrintDocument class defined in Ex am ple 4- 13 or Ex am ple 4- 14 . Note that the HelloPrintDocument class itself does not need to be modified to support choosing a printer.4.7.5 The PageSettings Class
As mentioned earlier, the PrintPageEventArgs object passed to the OnPrintPage method has a PageSettings property that holds a PageSettings object. This object holds the settings applicable to printing a single page. The properties of the PageSettings class are: Bounds Represents a rectangle that specifies the full area of the page, including the area outside the margins. This is the same value found in the PageBounds property of the PrintPageEventArgs class. The syntax of the Bounds property is: Public ReadOnly Property Bounds As System.Drawing.Rectangle Color Indicates whether the page should be printed in color. The syntax of the Color property is: Public Property Color As Boolean 178 Landscape Indicates whether the page is being printed in landscape orientation. The syntax of the Landscape property is: Public Property Landscape As Boolean Margins Indicates the size of the margins. The syntax of the Margins property is: Public Property Margins As System.Drawing.Printing.Margins The Margins class has four properties, Left, Top, Right, and Bottom, each of which is an Integer expressing the size of the respective margin. PaperSize Indicates the size of the paper. The syntax of the PaperSize property is: Public Property PaperSize As System.Drawing.Printing.PaperSize The PaperSize class has four properties: Width An Integer expressing the width of the paper. This is the same value found in the Width member of the Bounds property of the PageSettings object. Height An Integer expressing the height of the paper. This is the same value found in the Height member of the Bounds property of the PageSettings object. Kind An enumeration of type PaperKind expressing the size of the paper in terms of standard named sizes, such as Letter and Legal . PaperName A string giving the name of the paper size, such as Letter and Legal . PaperSource Indicates the paper tray from which the page will be printed. The syntax of the PaperSource property is: Public Property PaperSource As System.Drawing.Printing.PaperSource The PaperSource class has two properties: Kind 179 An enumeration of type PaperSourceKind expressing the paper source in terms of standard names, such as Lower and Upper . SourceName A string giving the name of the paper source, such as Lower and Upper . PrinterResolution Indicates the resolution capability of the printer. The syntax of the PrinterResolution property is: Public Property PrinterResolution As _ System.Drawing.Printing.PrinterResolution The PrinterResolution class has three properties: X An Integer expressing the horizontal resolution of the printer in dots per inch. Y An Integer expressing the vertical resolution of the printer in dots per inch. Kind An enumeration of type PrinterResolutionKind expressing the resolution mode. The values of this enumeration are Draft , Low , Medium , High , and Custom . PrinterSettings Indicates the settings applicable to the printer being used. The syntax of the PrinterSettings property is: Public Property PrinterSettings As _ System.Drawing.Printing.PrinterSettings The PrinterSettings class is described in the next section.4.7.6 The PrinterSettings Class
Parts
» VB.NET - (O'Reilly) Programming Visual Basic NET
» What Is the Microsoft .NET Framework?
» hello, world An Example Visual Basic .NET Program
» Hello, Windows An Example Visual Basic .NET Program
» Hello, Browser An Example Visual Basic .NET Program
» Source Files Identifiers The Visual Basic .NET Language
» Numeric Literals String Literals Character Literals
» Date Literals Boolean Literals Nothing Summary of Literal Formats
» Custom Types Collections Types
» The Namespace Statement The Imports Statement
» Symbolic Constants Scope The Visual Basic .NET Language
» Access Modifiers Assignment The Visual Basic .NET Language
» Unary Operators Arithmetic Operators
» Relational Operators Operators and Expressions
» String-Concatenation Operators Bitwise Operators
» Logical Operators Operator Precedence
» Call Exit Branching Statements
» Goto If RaiseEvent Branching Statements
» Return Select Case Branching Statements
» For Each Iteration Statements
» Object Instantiation and New Constructors
» Handling Events Inheritance Classes
» Passing arrays as parameters
» Variable-length parameter lists Main method
» Implementing interface methods Overriding inherited methods
» Overloading Overloading inherited methods
» The MyBase Keyword Nested Classes Destructors
» Interfaces The Visual Basic .NET Language
» Enumerations The Visual Basic .NET Language
» Exceptions The Visual Basic .NET Language
» Delegates The Visual Basic .NET Language
» Using Events and Delegates Together
» Creating Custom Attributes Attributes
» Standard Modules Conditional Compilation
» Summary The Visual Basic .NET Language
» Common Language Infrastructure CLI and Common Language Runtime CLR
» Global Assembly Cache GAC Comparison of Assemblies, Modules, and Namespaces
» Application Domains Common Language Specification CLS
» Intermediate Language IL and Just-In-Time JIT Compilation Metadata
» Finalize Memory Management and Garbage Collection
» Dispose Memory Management and Garbage Collection
» A Brief Tour of the .NET Framework Namespaces
» Configuration File Format Configuration
» Configuration Section Groups The appSettings Section
» Adding event handlers Creating a Form in Code
» Handling Form Events Windows Forms I: Developing Desktop Applications
» Relationships Between Forms Windows Forms I: Developing Desktop Applications
» Merging Menus MDI Applications
» Detecting MDI Child Window Activation
» Component Attributes Windows Forms I: Developing Desktop Applications
» The Graphics Class 2-D Graphics Programming with GDI+
» The Pen Class 2-D Graphics Programming with GDI+
» The Brush Class 2-D Graphics Programming with GDI+
» System colors The Color Structure
» Alpha Blending 2-D Graphics Programming with GDI+
» Antialiasing 2-D Graphics Programming with GDI+
» The PrintPageEventArgs Class Printing
» The OnBeginPrint and OnEndPrint Methods Choosing a Printer
» The PageSettings Class Printing
» The PrinterSettings Class Printing
» Page Setup Dialog Box Print Preview
» Summary Windows Forms I: Developing Desktop Applications
» The Button Class The CheckBox Class The ComboBox Class
» The DateTimePicker Class The GroupBox Class The ImageList Class
» The Label Class The LinkLabel Class
» The ListBox Class Common Controls and Components
» The ListBox.ObjectCollection Class
» The ListView Class Common Controls and Components
» The MonthCalendar Class Common Controls and Components
» The Panel Class The PictureBox Class
» The RadioButton Class Common Controls and Components
» The TextBox Class The Timer Class
» Other Controls and Components
» Control Events Windows Forms II: Controls, Common Dialog Boxes, and Menus
» The Anchor Property Form and Control Layout
» Controlling dock order The Dock Property
» The Splitter control The Dock Property
» ColorDialog FontDialog OpenFileDialog Common Dialog Boxes
» PageSetupDialog PrintDialog PrintPreviewDialog SaveFileDialog
» Adding Menus in the Visual Studio .NET Windows Forms Designer
» Programmatically Creating Menus Menus
» Building Controls from Other Controls
» Building Controls That Draw Themselves Building Nonrectangular Controls
» Summary Windows Forms II: Controls, Common Dialog Boxes, and Menus
» Setting control properties using attributes Adding event handlers
» AutoEventWireup Handling Page Events
» The Button control Web Controls
» The CheckBox control The DropDownList control
» The Image control The Label control
» The ListBox control Web Controls
» The RadioButton control Web Controls
» The Table control Web Controls
» The TextBox control Web Controls
» Other web controls Web Controls
» HTML Controls Handling Control Events
» Programmatically Instantiating Controls More About Server Controls
» More About Validation-Control Tag Attributes
» Using Validation-Control Properties Providing a Summary View of Validation Failures
» Performing Custom Validation Adding Validation
» Using Directives to Modify Web Page Compilation
» The Server Object ASP.NET Objects: Interacting with the Framework
» The Application Object The Session Object The Cache Object The Request Object
» The Response Object ASP.NET Objects: Interacting with the Framework
» Discovering Browser Capabilities ASP.NET and Web Forms: Developing Browser-Based Applications
» The Session Object Maintaining State
» The Application Object Maintaining State
» Session and Application Startup and Shutdown global.asax Compiles to a Class
» Adding Global Objects Application-Level Code and global.asax
» ASP.NET authorization Authorization
» Windows NTFS authorization Code-access authorization
» IUSR_ComputerName Impersonation Accessing Network Resources
» User Controls Designing Custom Controls
» Creating a custom server control using Visual Studio .NET
» Creating a custom server control in code Using a custom server control in Visual Studio .NET
» Summary ASP.NET and Web Forms: Developing Browser-Based Applications
» The WebService Attribute The WebMethod Attribute
» Testing a Web Service with a Browser
» Consuming a Web Service in Visual Studio .NET
» Consuming a Web Service in Notepad
» Synchronous Versus Asynchronous Calls
» Web-Service Descriptions Web-Service Discovery
» Limitations of Web Services Summary
» A Brief History of Universal Data Access Managed Providers
» Connecting to a SQL Server Database
» Connecting to an OLE DB Data Source
» The DataSet Class Finding Tables
» Finding Column Values Finding Column Definitions Changing, Adding, and Deleting Rows
» Writing Updates Back to the Data Source
» Relations Between DataTables in a DataSet
» The DataSets XML Capabilities
» Binding a DataSet to a Windows Forms DataGrid
» Binding a DataSet to a Web Forms DataGrid
» Typed DataSets ADO.NET: Developing Database Applications
» Reading Data Using a DataReader
Show more