You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
1.3 KiB

using System.Collections.Generic;
namespace Utils.Printers
{
public struct PrintInfo
{
public double 顶边距 { get; set; }
public IList<string> 表前信息 { get; set; }
public int 表前信息字号 { get; set; }
public string 标题 { get; set; }
public long 单号 { get; set; }
public double 标题字号 { get; set; }
public double 标题左边距 { get; set; }
public int 正文字号 { get; set; }
public double 正文左边距 { get; set; }
public double 行距 { get; set; }
public List<Dictionary<string, string>> 表头信息 { get; set; }
public double 表头页宽 { get; set; }
public int 表头列数 { get; set; }
public int 表头标签文字最大个数 { get; set; }
public int 清单每页最大行数 { get; set; }
public IList<double> 清单每列列宽 { get; set; }
public bool 是否允许合计 { get; set; }
public IList<string> 合计列的列名 { get; set; }
public bool 是否打印页码 { get; set; }
public bool 是否打印打印人 { get; set; }
public bool 是否打印打印时间 { get; set; }
public string 打印人 { get; set; }
public int 页脚字号 { get; set; }
public IList<string> 页脚前信息 { get; set; }
public IList<string> 页脚后信息 { get; set; }
public int 页脚前信息字号 { get; set; }
public int 页脚后信息字号 { get; set; }
}
}