Posted 16 years ago
by cayenne
Hello actipro team,
I want to reduce the width of my barcode. I can set the BarHeight of the Symbology but how can I set the BarWidth (want to keep the BarWidthRatio)?[Modified at 04/21/2008 10:29 AM]
[Modified at 04/21/2008 10:30 AM]
I want to reduce the width of my barcode. I can set the BarHeight of the Symbology but how can I set the BarWidth (want to keep the BarWidthRatio)?
BarCode oBarCode = new BarCode();
Code128Symbology oSymbology = new Code128Symbology();
oBarCode.Symbology = oSymbology;
oSymbology.Value = "12345";
oSymbology.BarHeight = 10;
[Modified at 04/21/2008 10:30 AM]