PDFsharp Documentation

Albirex picture Albirex · Jul 23, 2014 · Viewed 18.2k times · Source

Is it possible to find good documentation for the PDFsharp library?

I searched on Google but I didn't find any reference documentation.

I don't know how XGraphics.RotateAtTransform and XGraphics.TranslateTransform work.

Answer

The PDFsharp documentation is included in the source code.

Help files created from the source code can be found here:
http://pdfsharp.codeplex.com/releases

The XGraphics class implements the same functions as the Graphics class from GDI+.

So for further information about the two methods given in the question, search information about Graphics.RotateAtTransform and Graphics.TranslateTransform from System.Drawing.