条码列印方法

时间:2015-01-30 08:15:03
【文件属性】:

文件名称:条码列印方法

文件大小:7KB

文件格式:CS

更新时间:2015-01-30 08:15:03

rdlc

rdlc报表条码列印方法 //打印机名称 private string printerName =""; public string PrinterName { get { return printerName; } set { printerName = value; } } //是否横向 private bool landscape = false; public bool Landscape { get { return landscape; } set { landscape = value; } } //是否横向 private bool widthMoreThanHeight = false; public bool WidthMoreThanHeight { get { return widthMoreThanHeight; } set { widthMoreThanHeight = value; } }


网友评论