Hi,
I have a problem with this simple line of code:
page.Graphics.DrawLine(PdfPens.Transparent, new PointF(0, 100), new PointF(100, 200));
Where page is a PdfPage obviously.
The problem is that the line is drawn BLACK instead of TRASPARENT.
I also tried to use an instance of PdfPen with the parameter Color.Transparent in the constructor but I have the same mistake...
Thank you in advance.