可以使用BarCodeCellType的CreateBitmap方法,创建一个Image:
- FarPoint.Win.Spread.CellType.BarCodeCellType barc = new FarPoint.Win.Spread.CellType.BarCodeCellType();
- barc.DisplayMode = FarPoint.Win.Spread.CellType.BarCodeDisplayMode.Image;
- barc.Type = new FarPoint.Win.Spread.CellType.BarCode.UPC();
- pictureBox1.Image = barc.CreateBitmap(36000280753);
复制代码 |