From f8aab88a04042e45461173ba20e5d2609a513672 Mon Sep 17 00:00:00 2001 From: Elias Fierke Date: Tue, 9 Jun 2026 08:56:43 +0200 Subject: [PATCH] [chore:] added "PRESSE/ELN" text --- Tasks/PdfBuilder.cs | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Tasks/PdfBuilder.cs b/Tasks/PdfBuilder.cs index 0b2192c..fb0ed9f 100644 --- a/Tasks/PdfBuilder.cs +++ b/Tasks/PdfBuilder.cs @@ -695,6 +695,10 @@ public class PdfBuilder gfx.DrawString(groupNo, fontBig, XBrushes.Black, new XRect(x + 5, y + r1 + r2 + 5, w * 0.50 - 10, r3 - 10), XStringFormats.Center); + + gfx.DrawString("PRESSE/ELN", fontBig, XBrushes.Black, + new XRect(x + 5, y + r1 + r2 + 5, w * 0.50 - 10, r3 - 90), + XStringFormats.Center); gfx.DrawString($"Fraktion {fraction}/{total_frac}", fontText, XBrushes.Black, new XRect(x + 5, y + r1 + r2 + r3 - 18, w * 0.50 - 10, 14), @@ -760,7 +764,7 @@ public class PdfBuilder // Right bottom postal area label - gfx.DrawString("Bereich für postalische Zwecke:", fontLabel, XBrushes.Black, + gfx.DrawString("Feld für Palettenlabel/NVE:", fontLabel, XBrushes.Black, new XRect(x + leftBottomW + 5, y + r1 + r2 + r3 + 4, w - leftBottomW - 10, 14), XStringFormats.TopLeft); }