- Programmiersprache von VSC zu C# geändert - Framework von .NET Framework zu .NET geändert
19 lines
517 B
C#
19 lines
517 B
C#
using System.Drawing;
|
|
|
|
namespace EnvelopeGenerator.ServiceHost.Jobs.FinalizeDocument;
|
|
|
|
public class PDFBurnerParams
|
|
{
|
|
public List<string> IgnoredLabels { get; set; } = new() { "Date", "Datum", "ZIP", "PLZ", "Place", "Ort", "Position", "Stellung" };
|
|
|
|
public double TopMargin { get; set; } = 0.1;
|
|
|
|
public double YOffset { get; set; } = -0.3;
|
|
|
|
public string FontName { get; set; } = "Arial";
|
|
|
|
public int FontSize { get; set; } = 8;
|
|
|
|
public FontStyle FontStyle { get; set; } = FontStyle.Italic;
|
|
}
|