3-2-23 drawBarcodeCodaBlock
This method requests the printing of CodaBlock barcode to the image buffer.
[Syntax]
-(long) drawBarcodeCodaBlock:(NSString*)data
xPosition:(NSInteger)xPostion
yPosition:(NSInteger)yPostion
widthNarrow:(NSInteger)widthNarrow
widthWide:(NSInteger)widthWide
height:(NSInteger)height
securityLevel:(BOOL)securityLevel
numberOfCharactersPerrow:(NSInteger)numberOfCharactersPerrow
mode:(char)mode
numberOfRowToEncode:(NSInteger)numberOfRowToEncode;
[Parameters]
data
Barcode value to print
xPosition
X coordinate of the position to print
yPosition
Y coordinate of the position to print
widthNarrow
Width of narrow bar
widthWide
Width of wide bar
height
Height of barcode
securityLevel
securityLevel setting
numberOfCharactersPerrow
Number of characters per row (data columns): 2~62
mode
Barcode printing mode (Reference: 2-11 Codablock Mode)
numberOfRowToEncode
Number of rows to encode
[Return Value]
Upon successful operation, _SDK_RESULT_SUCCESS will be returned.
Refer to the 2-1 Result Codes for more details on other result codes.
[Discussion]
Nothing will be printed when this API is called.
Contents requested by this API will be printed when 3-2-13 doPrint API is called.
[See Also]
2-1 Result Codes
2-11 Codablock Mode
3-2-13 doPrint