Problem With LandScape Property Of PrintDocument
C#
4
Posts
2
Posters
0
Views
1
Watching
-
Hi I'm Using LandScape Property Of PrintDocument by this code :
void printDocument\_PrintPage(object sender, PrintPageEventArgs e) { e.PageSettings.Landscape = true; }
all page is LandScape except First Page that in not LandScape !!!!
-
Hi I'm Using LandScape Property Of PrintDocument by this code :
void printDocument\_PrintPage(object sender, PrintPageEventArgs e) { e.PageSettings.Landscape = true; }
all page is LandScape except First Page that in not LandScape !!!!
-
Could you set the
PrintDocument.DefaultPageSettings.Landscape
to true, before you start printing.The need to optimize rises from a bad design. My articles[^]
Thaaaaaaaanks
-
Thaaaaaaaanks