PDFsharp & MigraDoc Foundation

PDFsharp - A .NET library for processing PDF & MigraDoc Foundation - Creating documents on the fly
It is currently Wed May 15, 2024 4:42 am

All times are UTC


Forum rules


Please read this before posting on this forum: Forum Rules



Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: PageUnits
PostPosted: Mon Nov 03, 2008 4:25 pm 
Offline

Joined: Mon Nov 03, 2008 4:18 pm
Posts: 8
is pèossible to set the page Units in Millimeters?

I'M trying like this:

gfx.Graphics.PageUnit = XGraphicsUnit.Millimeter

But it doesnot works,
What i Wrong

Thanks


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Nov 03, 2008 4:36 pm 
Offline
PDFsharp Guru
User avatar

Joined: Mon Oct 16, 2006 8:16 am
Posts: 3097
Location: Cologne, Germany
PageUnit is a property with a "getter", but w/o "setter" - so you should get a compiler error with your code.

You can set this with the appropriate constructor, e. g.
Code:
XGraphics(Graphics gfx, XSize size, XGraphicsUnit pageUnit, XPageDirection pageDirection)


I normally use Unit.FromMillimeter so I can use mm in the program code (while PDFsharp still uses pt internally).

_________________
Regards
Thomas Hoevel
PDFsharp Team


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Mon Nov 03, 2008 4:56 pm 
Offline

Joined: Mon Nov 03, 2008 4:18 pm
Posts: 8
Thomas Hoevel wrote:
PageUnit is a property with a "getter", but w/o "setter" - so you should get a compiler error with your code.

You can set this with the appropriate constructor, e. g.
Code:
XGraphics(Graphics gfx, XSize size, XGraphicsUnit pageUnit, XPageDirection pageDirection)


I normally use Unit.FromMillimeter so I can use mm in the program code (while PDFsharp still uses pt internally).


Yes i Need Use Millimeters!!!!!
Can you post me a the right code to set unit in millimeters?

Thankyou!


Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: Tue Nov 04, 2008 9:09 am 
Offline
PDFsharp Guru
User avatar

Joined: Mon Oct 16, 2006 8:16 am
Posts: 3097
Location: Cologne, Germany
ridaria wrote:
Can you post me a the right code to set unit in millimeters?

I probably could - if I knew what you want.

Default unit is point.
To specify 20 Millimeters you just write
Code:
Unit.FromMillimeters(20)

and PDFsharp uses the correct value.

Instead of writing
Code:
XGraphics gfx = XGraphics.FromPdfPage(page);

you can also write
Code:
XGraphics gfx = XGraphics.FromPdfPage(page, XGraphicsUnit.Millimeter);

Then you can write
Code:
new XRect(0, 0, 20, 20)

to specify 20 Millimeters.

_________________
Regards
Thomas Hoevel
PDFsharp Team


Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC


Who is online

Users browsing this forum: Google [Bot] and 67 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Privacy Policy, Data Protection Declaration, Impressum
Powered by phpBB® Forum Software © phpBB Group