com.aspose.barcode.jr
Class Code128CodeBuilder
java.lang.Object
com.aspose.barcode.jr.Code128CodeBuilder
public final class Code128CodeBuilder
- extends java.lang.Object
Use to generate customized CodeText for Code128 barcode.For example, this class can be used within the Scriptlet of the report to customize barcode.
[Sample]
Code128CodeBuilder builder = new Code128CodeBuilder(Code128Set.A);
String codeText = builder.Append("1234").Switch(Code128Set.B).Append("5678").toString();
Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Code128CodeBuilder
public Code128CodeBuilder(int codeset)
Code128CodeBuilder
public Code128CodeBuilder()
Append
public Code128CodeBuilder Append(java.lang.String v)
toString
public java.lang.String toString()
- Overrides:
toString
in class java.lang.Object
Switch
public Code128CodeBuilder Switch(int codeset)