PDFsharp & MigraDoc Foundation
https://forum.pdfsharp.net/

Page Margins change when I don't want them to
https://forum.pdfsharp.net/viewtopic.php?f=2&t=692
Page 1 of 1

Author:  fuzzylintman [ Tue Mar 31, 2009 9:19 pm ]
Post subject:  Page Margins change when I don't want them to

I have set the document properties:

Code:
Document doc = new Document();
doc.DefaultPageSetup.LeftMargin = Unit.FromInch(0.75);
doc.DefaultPageSetup.MirrorMargins = true;
doc.DefaultPageSetup.TopMargin = Unit.FromInch(0.75);
...
// Add 1 section with a bunch of paragraphs...
...


and this works... for Page 1. On page 2, it seems to revert to the default margins. Am I doing something wrong?

TIA!

-mdb

Author:  Thomas Hoevel [ Wed Apr 01, 2009 7:28 am ]
Post subject: 

MirrorMargins means that left margin is used on right side and vice versa on even pages.

This is meant for booklets - left rather means "inner" and right means "outer" if MirrorMargins is set.

So what you want probably requires setting MirrorMargins to false and setting right and bottom margins to the same values as left and top margins respectively.

Page 1 of 1 All times are UTC
Powered by phpBB® Forum Software © phpBB Group
https://www.phpbb.com/