Page Setting: Top, Bottom, Left, Right Margin and Landscape : 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.Development
8.Event
9.File Directory
10.Generics
11.GUI
12.Language Basics
13.LINQ
14.Network Remote
15.Security
16.Thread
17.Windows Presentation Foundation
18.Windows System
19.XML
20.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » GUI » Print SettingScreenshots 
Page Setting: Top, Bottom, Left, Right Margin and Landscape
Page Setting: Top, Bottom, Left, Right Margin and Landscape

Imports System
Imports System.Drawing.Printing

Module Client

    Sub Main()
        Dim pd As PrintDocument = New PrintDocument()
        Dim pg As PageSettings = pd.DefaultPageSettings
    
    
        Console.WriteLine("Top Margin = " + pg.Margins.Top.ToString())
        Console.WriteLine("Bottom Margin = " + pg.Margins.Bottom.ToString())
        Console.WriteLine("Left Margin = " + pg.Margins.Left.ToString())
        Console.WriteLine("Right Margin = " + pg.Margins.Right.ToString())
        Console.WriteLine("Landscape = " + pg.Landscape.ToString())
        Console.WriteLine("PaperSize = " + pg.PaperSize.PaperName)
        Console.WriteLine("PaperSource = " + pg.PaperSource.SourceName)
    
    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.Support paper size and source
5.Printer Page Setting: color, Top, Bottom, Left, Right Bound and Top marginPrinter Page Setting: color, Top, Bottom, Left, Right Bound and Top margin
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.