Package com.grapecity.documents.excel
Interface ICode39
- All Superinterfaces:
IBarcode,IFontOption,ILabelOption
Code 39 is a linear barcode that uses a total of nine bars to represent each symbol which includes numeric characters, upper case characters and some special characters ("%" , "*", "$", "/", "." , "-", "+").
-
Method Summary
Modifier and TypeMethodDescriptionbooleanSpecifies whether the symbol needs a check digit.booleanSpecifies whether to support full ASCII for Code39.booleanSpecifies whether to show the start and stop character in the label.intA value that represents the wide and narrow bar ratio.Methods inherited from interface com.grapecity.documents.excel.IBarcode
getBackgroundColor, getCodeType, getColor, getQuietZoneBottom, getQuietZoneLeft, getQuietZoneRight, getQuietZoneTop, getValueMethods inherited from interface com.grapecity.documents.excel.IFontOption
getFontFamily, getFontSize, getFontStyle, getFontTextAlign, getFontTextDecoration, getFontWeightMethods inherited from interface com.grapecity.documents.excel.ILabelOption
getLabelPosition, getShowLabel
-
Method Details
-
getLabelWithStartAndStopCharacter
boolean getLabelWithStartAndStopCharacter()Specifies whether to show the start and stop character in the label. The default value is 'false'. -
getCheckDigit
boolean getCheckDigit()Specifies whether the symbol needs a check digit. The default value is 'false'. -
getNwRatio
int getNwRatio()A value that represents the wide and narrow bar ratio. It has values 2|3. The default value is '3'. -
getFullASCII
boolean getFullASCII()Specifies whether to support full ASCII for Code39. The default value is 'false'.
-