From af6c5a49280b4238d838814e89f2acb12ee2f8d2 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Wed, 1 Jul 2026 11:05:59 +0200 Subject: [PATCH] [chore:] removed cell border --- Tasks/PdfBuilder.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tasks/PdfBuilder.cs b/Tasks/PdfBuilder.cs index 85f26b6..10e2448 100644 --- a/Tasks/PdfBuilder.cs +++ b/Tasks/PdfBuilder.cs @@ -284,7 +284,7 @@ public class PdfBuilder // Draw cell border var rect = new XRect(x, y, cellWidthPoints, cellHeightPoints); - gfx.DrawRectangle(XPens.Black, rect); + gfx.DrawRectangle(XPens.Transparent, rect); // Draw address content if available if (!string.IsNullOrEmpty(address)) DrawMarkdownText(gfx, address, x, y, cellWidthPoints, cellHeightPoints); @@ -304,7 +304,7 @@ public class PdfBuilder var cellHeightPoints = MmToPoints(GetCellHeightMm()); var rect = new XRect(x, y, cellWidthPoints, cellHeightPoints); - gfx.DrawRectangle(XPens.Black, rect); + gfx.DrawRectangle(XPens.Transparent, rect); } catch (Exception ex) {