条码列印方法
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 widt hMoreThanHeight; } set { widthMoreThanHeight = value; } } hMoreThanHeight; } set { widthMoreThanHeight = value; } }
用户评论