pdfsharp - How to remove border in .FillRectangle garphics method in c# -


i using following code print graphics rectangle

var gr = xgraphics.frompdfpage(1);  color  color = system.drawing.color.white;               var brush = new system.drawing.solidbrush(color);                  gr.fillrectangle(brush, item.position.x, item.position.y, item.width, item.height); 

but when execute above code there border on rectangle.that rectangle in following image.

enter image description here

in image border showing when execute above code, there way can remove border?

how when skip fillrectangle? think "border" there , reactangle little small.


Comments

Popular posts from this blog

Hatching array of circles in AutoCAD using c# -

ios - UITEXTFIELD InputView Uipicker not working in swift -

Python Pig Latin Translator -