Package com.aspose.barcode.component
Interface IBarCodeGeneratorControl
-
- All Known Implementing Classes:
BarcodeGeneratorView
public interface IBarCodeGeneratorControl
IBarCodeGeneratorControl for TypeConverters
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BaseEncodeType
getBarcodeType()
BarCode's encode type (symbology).float
getRotationAngle()
BarCode image rotation angle, measured in degree, e.g.void
setBarcodeType(BaseEncodeType value)
BarCode's encode type (symbology).void
setRotationAngle(float value)
BarCode image rotation angle, measured in degree, e.g.
-
-
-
Method Detail
-
getBarcodeType
BaseEncodeType getBarcodeType()
BarCode's encode type (symbology).
-
setBarcodeType
void setBarcodeType(BaseEncodeType value)
BarCode's encode type (symbology).
-
getRotationAngle
float getRotationAngle()
BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image.
-
setRotationAngle
void setRotationAngle(float value)
BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image.
-
-