Support paper size and source : Print Setting « GUI « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » GUI » Print SettingScreenshots 
Support paper size and source

Imports System
Imports System.Drawing.Printing

Module Client

    Sub Main()
        Dim pd As PrintDocument = New PrintDocument()
        Dim pg As PageSettings = pd.DefaultPageSettings
        Dim ps As PrinterSettings = pg.PrinterSettings
    
        Dim As PaperSize
        For Each p In ps.PaperSizes
          Console.WriteLine("Supports Paper Size: " + p.PaperName)
        Next
        Dim p1 As PaperSource
        For Each p1 In ps.PaperSources
          Console.WriteLine("Supports Paper Source: " + p1.SourceName)
        Next
    
    
    End Sub

End Module
           
       
Related examples in the same category
1.Page setting: paper size, source and resolution
2.Print setting: print name, is default printer, is plotterPrint setting: print name, is default printer, is plotter
3.Printer setting: is print valide, can duplex, Num, Max, Min copies and support colorPrinter setting: is print valide, can duplex, Num, Max, Min copies and support color
4.Printer Page Setting: color, Top, Bottom, Left, Right Bound and Top marginPrinter Page Setting: color, Top, Bottom, Left, Right Bound and Top margin
5.Page Setting: Top, Bottom, Left, Right Margin and LandscapePage Setting: Top, Bottom, Left, Right Margin and Landscape
w___w___w_._j_a___v__a__2__s__.___c_o___m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.