2017-07-23 09:53:27 +00:00
|
|
|
|
///
|
2020-07-28 14:01:34 +00:00
|
|
|
|
/// Copyright (c) 2017-2020 Sensus Slovensko a.s.
|
2017-07-23 09:53:27 +00:00
|
|
|
|
///
|
2021-09-23 09:46:40 +00:00
|
|
|
|
using Common;
|
2017-06-30 14:42:30 +00:00
|
|
|
|
|
|
|
|
|
|
namespace Results.Output.Printers.Enhanced
|
|
|
|
|
|
{
|
|
|
|
|
|
public class EnhancedPrinterCfg
|
|
|
|
|
|
{
|
2021-09-23 09:46:40 +00:00
|
|
|
|
public PageOrientation PageOrientation;
|
2017-12-04 07:58:02 +00:00
|
|
|
|
public string Template;
|
|
|
|
|
|
public int TopMargin;
|
2017-06-30 14:42:30 +00:00
|
|
|
|
public int BottomMargin;
|
|
|
|
|
|
public int LeftMargin;
|
|
|
|
|
|
public string TitFntFml;
|
|
|
|
|
|
public int TitFntSz;
|
|
|
|
|
|
public int TitFntSty;
|
|
|
|
|
|
public string HdrFntFml;
|
|
|
|
|
|
public int HdrFntSz;
|
|
|
|
|
|
public int HdrFntSty;
|
|
|
|
|
|
public string BodyFntFml;
|
|
|
|
|
|
public int BodyFntSz;
|
|
|
|
|
|
public int BodyFntSty;
|
2017-12-04 07:58:02 +00:00
|
|
|
|
public string FooterFntFml;
|
|
|
|
|
|
public int FooterFntSz;
|
|
|
|
|
|
public int FooterFntSty;
|
|
|
|
|
|
public bool GoodOnly;
|
|
|
|
|
|
public bool SupressPrinting; /// Bypass printing when true
|
2017-06-30 14:42:30 +00:00
|
|
|
|
public System.Globalization.CultureInfo CultureInfo;
|
2017-12-04 07:58:02 +00:00
|
|
|
|
public string Header; /// =Title
|
|
|
|
|
|
public string[] CommonItems;
|
2017-06-30 14:42:30 +00:00
|
|
|
|
public string[] TestItems;
|
|
|
|
|
|
public string Footer;
|
2020-07-28 14:01:34 +00:00
|
|
|
|
public BarcodeType BarcodeType; /// s/n is printed as barcode when valid (BarcodeType.None < BarcodeType < BarcodeType.Count)
|
|
|
|
|
|
public int BarcodeWidth;
|
|
|
|
|
|
public int BarcodeHeight;
|
|
|
|
|
|
}
|
2017-06-30 14:42:30 +00:00
|
|
|
|
}
|