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.
in image border showing when execute above code, there way can remove border?
how when skip fillrectangle
? think "border" there , reactangle little small.
Comments
Post a Comment