接口 ICode39
- 所有超级接口:
IBarcode
,IFontOption
,ILabelOption
Code 39是一种线性条码,它使用总共九个条来代表每个符号,包括数字字符、大写字母以及一些特殊字符("%","*","$","/",".","-","+")。
-
方法概要
修饰符和类型方法说明boolean
指定是否需要校验码。boolean
指定是否支持Code39的全ASCII。boolean
指定是否在标签中显示开始和结束字符。int
一个表示宽条和窄条比例的值。从接口继承的方法 com.grapecity.documents.excel.IBarcode
getBackgroundColor, getCodeType, getColor, getQuietZoneBottom, getQuietZoneLeft, getQuietZoneRight, getQuietZoneTop, getValue
从接口继承的方法 com.grapecity.documents.excel.IFontOption
getFontFamily, getFontSize, getFontStyle, getFontTextAlign, getFontTextDecoration, getFontWeight
从接口继承的方法 com.grapecity.documents.excel.ILabelOption
getLabelPosition, getShowLabel
-
方法详细资料
-
getLabelWithStartAndStopCharacter
boolean getLabelWithStartAndStopCharacter()指定是否在标签中显示开始和结束字符。默认值为 'false'。 -
getCheckDigit
boolean getCheckDigit()指定是否需要校验码。默认值为 'false'。 -
getNwRatio
int getNwRatio()一个表示宽条和窄条比例的值。其值为2|3。默认值为'3'。 -
getFullASCII
boolean getFullASCII()指定是否支持Code39的全ASCII。默认值为'false'。
-