Print setting: print name, is default printer, is plotter : Print Setting « GUI « VB.Net






Print setting: print name, is default printer, is plotter

Print setting: print name, is default printer, is plotter
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
    
        Console.WriteLine("PrinterName = " + pd.PrinterSettings.PrinterName)
        Console.WriteLine("Is default Printer = " + _
                             ps.IsDefaultPrinter.ToString())
        Console.WriteLine("Is plotter = " + ps.IsPlotter.ToString())

    End Sub

End Module
           
       








Related examples in the same category

1.Page setting: paper size, source and resolution
2.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
3.Support paper size and source
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