Package com.grapecity.documents.excel
Interface IBarcode
- All Known Subinterfaces:
ICodabar,ICode128,ICode39,ICode49,ICode93,IDataMatrix,IEAN13,IEAN8,IGS1128,IPDF417,IQRCode
public interface IBarcode
All types of barcode inherits this interface.
-
Method Summary
Modifier and TypeMethodDescriptionA color that represents the barcode backgroundcolor.Type of code.getColor()A color that represents the barcode color.intA value that represents the size of bottom quiet zone.intA value that represents the size of left quiet zone.intA value that represents the size of right quiet zone.intA value that represents the size of top quiet zone.getValue()A string that represents encode on the symbol of barcode.
-
Method Details
-
getValue
String getValue()A string that represents encode on the symbol of barcode. -
getColor
String getColor()A color that represents the barcode color. The default value is 'rgb(0,0,0)'. -
getBackgroundColor
String getBackgroundColor()A color that represents the barcode backgroundcolor. The default value is 'rgb(255, 255, 255)'. -
getCodeType
BarcodeType getCodeType()Type of code. -
getQuietZoneLeft
int getQuietZoneLeft()A value that represents the size of left quiet zone. -
getQuietZoneRight
int getQuietZoneRight()A value that represents the size of right quiet zone. -
getQuietZoneTop
int getQuietZoneTop()A value that represents the size of top quiet zone. -
getQuietZoneBottom
int getQuietZoneBottom()A value that represents the size of bottom quiet zone.
-