34 lines
905 B
C#
34 lines
905 B
C#
///
|
|
/// Copyright (c) 2017 Sensus Metering Systems
|
|
///
|
|
|
|
namespace Results.Output.Printers.OnePerMeter
|
|
{
|
|
public class OnePerMeterPrinterCfg
|
|
{
|
|
public Config.Entities.PageOrientation PageOrientation;
|
|
public int TopMargin;
|
|
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;
|
|
public bool GoodOnly;
|
|
public bool SupressPrinting; /// Bypass printing when true
|
|
public System.Globalization.CultureInfo CultureInfo;
|
|
public string Header; /// =Title
|
|
public string[] CommonItems;
|
|
public string[] TestItems;
|
|
public string[] TestItems2;
|
|
public string Footer;
|
|
public bool TestsAreRows;
|
|
public bool TestsAreRows2;
|
|
}
|
|
}
|