IBarCodeGeneratorControl
public interface IBarCodeGeneratorControl
Interface declares obligatory methods for classes intended for use in UI with generating barcode
Methods
Method | Description |
---|---|
getEncodeType() | BarCode’s encode type (symbology). |
getRotationAngle() | BarCode image rotation angle, measured in degree, e.g. |
setEncodeType(BaseEncodeType value) | BarCode’s encode type (symbology). |
setRotationAngle(float value) | BarCode image rotation angle, measured in degree, e.g. |
getEncodeType()
public abstract BaseEncodeType getEncodeType()
BarCode’s encode type (symbology).
Returns: BaseEncodeType
getRotationAngle()
public abstract 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.
Returns: float
setEncodeType(BaseEncodeType value)
public abstract void setEncodeType(BaseEncodeType value)
BarCode’s encode type (symbology).
Parameters:
Parameter | Type | Description |
---|---|---|
value | BaseEncodeType |
setRotationAngle(float value)
public abstract 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.
Parameters:
Parameter | Type | Description |
---|---|---|
value | float |