Skip to content

Latest commit

 

History

History
12 lines (10 loc) · 344 Bytes

File metadata and controls

12 lines (10 loc) · 344 Bytes

BarCode Code-39 Generator

DSBarCode.BarCodeCtrl ctrl = new DSBarCode.BarCodeCtrl();
ctrl.ShowFooter = false;
ctrl.ShowHeader = false;
ctrl.BarCodeHeight = 40;
ctrl.Width = 500;
ctrl.Height = 60;
ctrl.BarCode = "13456789";
ctrl.SaveImage("c:\Downloads\test.bmp");

Test