diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/_index.md index 327de4719..e4d5123d5 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/_index.md @@ -27,7 +27,7 @@ This package contains tools for 1D/2D barcode recognition. | [BarcodeSettings](../com.aspose.barcode.barcoderecognition/barcodesettings) | The main BarCode decoding parameters. | | [BarcodeSettingsInternal](../com.aspose.barcode.barcoderecognition/barcodesettingsinternal) | | | [BarcodeSvmDetectorSettings](../com.aspose.barcode.barcoderecognition/barcodesvmdetectorsettings) | Barcode detector settings. | -| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultyDecodeType and SingleDecodeType. | +| [BaseDecodeType](../com.aspose.barcode.barcoderecognition/basedecodetype) | Base class for MultiDecodeType and SingleDecodeType. | | [BaseExtendedParameters](../com.aspose.barcode.barcoderecognition/baseextendedparameters) | Basic class for extended parameters of recognized barcode storing | | [CodabarExtendedParameters](../com.aspose.barcode.barcoderecognition/codabarextendedparameters) | Stores a Codabar additional information of recognized barcode | | [Code128DataPortion](../com.aspose.barcode.barcoderecognition/code128dataportion) | Contains the data of subtype for Code128 type barcode | @@ -41,6 +41,7 @@ This package contains tools for 1D/2D barcode recognition. | [GS1CompositeBarExtendedParameters](../com.aspose.barcode.barcoderecognition/gs1compositebarextendedparameters) | Stores special data of **GS1 Composite Bar** recognized barcode | | [ImageScalingModeInternal](../com.aspose.barcode.barcoderecognition/imagescalingmodeinternal) | | | [MaxiCodeExtendedParameters](../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | Stores a MaxiCode additional information of recognized barcode | +| [MultiDecodeType](../com.aspose.barcode.barcoderecognition/multidecodetype) | Composite decode type. | | [MultyDecodeType](../com.aspose.barcode.barcoderecognition/multydecodetype) | Composite decode type. | | [OneDExtendedParameters](../com.aspose.barcode.barcoderecognition/onedextendedparameters) | Stores special data of 1D recognized barcode like separate codetext and checksum | | [Pdf417ExtendedParameters](../com.aspose.barcode.barcoderecognition/pdf417extendedparameters) | Stores a MacroPdf417 metadata information of recognized barcode | diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md index 94596d3b9..3de7a78df 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/_index.md @@ -3,7 +3,7 @@ title: AustraliaPostCustomerInformationDecoder second_title: Aspose.BarCode for Android via Java API Reference description: Public interface for Customer Information Field decoding which is used in AustraliaPost symbology. type: docs -weight: 49 +weight: 50 url: /androidjava/com.aspose.barcode.barcoderecognition/australiapostcustomerinformationdecoder/ ---``` public interface AustraliaPostCustomerInformationDecoder diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md index e3605cb71..853692ca7 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/_index.md @@ -3,7 +3,7 @@ title: BarcodeQualityMode second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 50 +weight: 51 url: /androidjava/com.aspose.barcode.barcoderecognition/barcodequalitymode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md index 5fdbcf9e7..3da5655a4 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/barcodereader/_index.md @@ -56,7 +56,7 @@ BarCodeReader encapsulates an image which may contain one or several barcodes, i | [equals(Object arg0)](#equals-java.lang.Object-) | | | [exportToXml(OutputStream xmlStream)](#exportToXml-java.io.OutputStream-) | Exports BarCode properties to the xml-stream specified | | [exportToXml(String xmlFile)](#exportToXml-java.lang.String-) | Exports BarCode properties to the xml-file specified | -| [getBarCodeDecodeType()](#getBarCodeDecodeType--) | Gets the decode type of the input barcode decoding | +| [getBarCodeReadType()](#getBarCodeReadType--) | Gets the decode type of the input barcode decoding | | [getBarcodeSettings()](#getBarcodeSettings--) | The main BarCode decoding parameters. | | [getClass()](#getClass--) | | | [getFoundBarCodes()](#getFoundBarCodes--) | Gets recognized BarCodeResult s array | @@ -176,7 +176,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > Bitmap bmp = BitmapFactory.decodeFile("test.png"); -> BarCodeReader reader = new BarCodeReader(bmp, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -233,7 +233,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); -> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -262,7 +262,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); -> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -291,7 +291,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); -> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -320,7 +320,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > BufferedImage bmp = ImageIO.read(new File("c:\\test.png")); -> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -349,7 +349,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > Bitmap bmp = BitmapFactory.decodeFile("test.png"); -> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(bmp, new Rectangle(0, 0, bmp.getWidth(), bmp.getHeight()), new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -417,7 +417,7 @@ Initializes a new instance of the BarCodeReader class. > ``` > This sample shows how to detect Code39 and Code128 barcodes. > -> BarCodeReader reader = new BarCodeReader("test.png", new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader("test.png", new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -500,7 +500,7 @@ Initializes a new instance of the BarCodeReader class. > This sample shows how to detect Code39 and Code128 barcodes. > > InputStream fstr = new FileInputStream("test.png"); -> BarCodeReader reader = new BarCodeReader(fstr, new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(fstr, new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -617,9 +617,9 @@ Exports BarCode properties to the xml-file specified boolean - Whether or not export completed successfully. Returns **True** in case of success; **False** Otherwise -### getBarCodeDecodeType() {#getBarCodeDecodeType--} +### getBarCodeReadType() {#getBarCodeReadType--} ``` -public BaseDecodeType getBarCodeDecodeType() +public BaseDecodeType getBarCodeReadType() ``` @@ -1019,14 +1019,15 @@ Sets decode type for recognition. Must be called before ReadBarCodes() method. > ``` > This sample shows how to detect Code39 and Code128 barcodes. > -> BarCodeReader reader = new BarCodeReader()) -> reader.setBarCodeReadType(new MultyDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader(); +> reader.setBarCodeReadType(new MultiDecodeType(DecodeType.CODE_39, DecodeType.CODE_128); > reader.setBarCodeImage("test.png"); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); > System.out.println("BarCode CodeText: " + result.getCodeText()); > } +> System.out.println("BarCodeReadType: " + reader.getBarCodeReadType().toString()); > ``` **Parameters:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md index c85c3f6c3..ba7b7b216 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/_index.md @@ -1,7 +1,7 @@ --- title: BaseDecodeType second_title: Aspose.BarCode for Android via Java API Reference -description: Base class for MultyDecodeType and SingleDecodeType. +description: Base class for MultiDecodeType and SingleDecodeType. type: docs weight: 23 url: /androidjava/com.aspose.barcode.barcoderecognition/basedecodetype/ @@ -12,22 +12,22 @@ java.lang.Object public abstract class BaseDecodeType ``` -Base class for MultyDecodeType and SingleDecodeType. +Base class for MultiDecodeType and SingleDecodeType. -------------------- > ``` -> This sample shows how to use BaseDecodeType with SingleDecodeType and MultyDecodeType +> This sample shows how to use BaseDecodeType with SingleDecodeType and MultiDecodeType > > BaseDecodeType decodeOne = DecodeType.CODE_128; -> BaseDecodeType decodeTwo = new MultyDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII); +> BaseDecodeType decodeTwo = new MultiDecodeType(DecodeType.CODE_128, DecodeType.CODE_39_STANDARD, DecodeType.CODE_39_FULL_ASCII); > ``` ## Methods | Method | Description | | --- | --- | | [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Determines whether any of the given decode types is included into | -| [equals(MultyDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. | | [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. | | [equals(Object other)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) value. | | [getClass()](#getClass--) | | @@ -36,7 +36,7 @@ Base class for MultyDecodeType and SingleDecodeType. | [notifyAll()](#notifyAll--) | | | [toString()](#toString--) | | | [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. | -| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. | | [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | @@ -56,9 +56,9 @@ Determines whether any of the given decode types is included into **Returns:** boolean - Value is a true if any types are included into. -### equals(MultyDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-} +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} ``` -public boolean equals(MultyDecodeType other) +public boolean equals(MultiDecodeType other) ``` @@ -67,7 +67,7 @@ Returns a value indicating whether this instance is equal to a specified [BaseDe **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| other | [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) | An java.lang.Object value to compare to this instance. | +| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | An java.lang.Object value to compare to this instance. | **Returns:** boolean - True if obj has the same value as this instance; otherwise, false. @@ -158,29 +158,29 @@ Converts the string representation of a BaseDecodeType to its instance, having d **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("None"). -### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-} +otherwise it returns indefinite type. or MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} ``` -public static MultyDecodeType tryParseMultyDecodeType(String parsingType) +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) ``` -Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. +Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("None"). +otherwise it returns indefinite type. or MultiDecodeType ("None"). ### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} ``` public static SingleDecodeType tryParseSingleDecodeType(String parsingType) diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md index 41c3c08e5..dcfd8c21f 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/_index.md @@ -3,7 +3,7 @@ title: ChecksumValidation second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 51 +weight: 52 url: /androidjava/com.aspose.barcode.barcoderecognition/checksumvalidation/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md index d8370fdf5..c586e80c2 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/codabarextendedparameters/_index.md @@ -17,19 +17,23 @@ Stores a Codabar additional information of recognized barcode | Method | Description | | --- | --- | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified CodabarExtendedParameters value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value. | | [getClass()](#getClass--) | | -| [getCodabarStartSymbol()](#getCodabarStartSymbol--) | Gets or sets a Codabar start symbol. | -| [getCodabarStopSymbol()](#getCodabarStopSymbol--) | Gets or sets a Codabar stop symbol. | +| [getCodabarStartSymbol()](#getCodabarStartSymbol--) | Gets a Codabar start symbol. | +| [getCodabarStopSymbol()](#getCodabarStopSymbol--) | Gets a Codabar stop symbol. | +| [getStartSymbol()](#getStartSymbol--) | Gets a Codabar start symbol. | +| [getStopSymbol()](#getStopSymbol--) | Gets a Codabar stop symbol. | | [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [isEmpty()](#isEmpty--) | Tests whether all parameters has only default values | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [op_Equality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Returns a value indicating whether the first CodabarExtendedParameters value is equal to the second. | -| [op_Inequality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Returns a value indicating if the first CodabarExtendedParameters value is different from the second. | -| [setCodabarStartSymbol(int value)](#setCodabarStartSymbol-int-) | Gets or sets a Codabar start symbol. | -| [setCodabarStopSymbol(int value)](#setCodabarStopSymbol-int-) | Gets or sets a Codabar stop symbol. | -| [toString()](#toString--) | Returns a human-readable string representation of this CodabarExtendedParameters . | +| [op_Equality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Returns a value indicating whether the first [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value is equal to the second. | +| [op_Inequality(CodabarExtendedParameters first, CodabarExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-com.aspose.barcode.barcoderecognition.CodabarExtendedParameters-) | Returns a value indicating if the first [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value is different from the second. | +| [setCodabarStartSymbol(short value)](#setCodabarStartSymbol-short-) | Sets a Codabar start symbol. | +| [setCodabarStopSymbol(short value)](#setCodabarStopSymbol-short-) | Sets a Codabar stop symbol. | +| [setStartSymbol(short value)](#setStartSymbol-short-) | Sets a Codabar start symbol. | +| [setStopSymbol(short value)](#setStopSymbol-short-) | Sets a Codabar stop symbol. | +| [toString()](#toString--) | Returns a human-readable string representation of this [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -39,7 +43,7 @@ public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified CodabarExtendedParameters value. +Returns a value indicating whether this instance is equal to a specified [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value. **Parameters:** | Parameter | Type | Description | @@ -60,24 +64,44 @@ public final native Class getClass() java.lang.Class ### getCodabarStartSymbol() {#getCodabarStartSymbol--} ``` -public int getCodabarStartSymbol() +public final short getCodabarStartSymbol() ``` -Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A +Gets a Codabar start symbol. Default value: CodabarSymbol.A **Returns:** -int +short - a Codabar start symbol. ### getCodabarStopSymbol() {#getCodabarStopSymbol--} ``` -public int getCodabarStopSymbol() +public final short getCodabarStopSymbol() ``` -Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A +Gets a Codabar stop symbol. Default value: CodabarSymbol.A **Returns:** -int +short - a Codabar stop symbol. +### getStartSymbol() {#getStartSymbol--} +``` +public final short getStartSymbol() +``` + + +Gets a Codabar start symbol. Default value: CodabarSymbol.A + +**Returns:** +short - a Codabar start symbol. +### getStopSymbol() {#getStopSymbol--} +``` +public final short getStopSymbol() +``` + + +Gets a Codabar stop symbol. Default value: CodabarSymbol.A + +**Returns:** +short - a Codabar stop symbol. ### hashCode() {#hashCode--} ``` public int hashCode() @@ -122,7 +146,7 @@ public static boolean op_Equality(CodabarExtendedParameters first, CodabarExtend ``` -Returns a value indicating whether the first CodabarExtendedParameters value is equal to the second. +Returns a value indicating whether the first [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value is equal to the second. **Parameters:** | Parameter | Type | Description | @@ -138,7 +162,7 @@ public static boolean op_Inequality(CodabarExtendedParameters first, CodabarExte ``` -Returns a value indicating if the first CodabarExtendedParameters value is different from the second. +Returns a value indicating if the first [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters) value is different from the second. **Parameters:** | Parameter | Type | Description | @@ -148,31 +172,57 @@ Returns a value indicating if the first CodabarExtendedParameters value is dif **Returns:** boolean - **true** if first has the different value from second; otherwise, **false** . -### setCodabarStartSymbol(int value) {#setCodabarStartSymbol-int-} +### setCodabarStartSymbol(short value) {#setCodabarStartSymbol-short-} +``` +public final void setCodabarStartSymbol(short value) +``` + + +Sets a Codabar start symbol. Default value: CodabarSymbol.A + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | short | a Codabar start symbol. | + +### setCodabarStopSymbol(short value) {#setCodabarStopSymbol-short-} +``` +public final void setCodabarStopSymbol(short value) +``` + + +Sets a Codabar stop symbol. Default value: CodabarSymbol.A + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | short | a Codabar stop symbol. | + +### setStartSymbol(short value) {#setStartSymbol-short-} ``` -public void setCodabarStartSymbol(int value) +public final void setStartSymbol(short value) ``` -Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A +Sets a Codabar start symbol. Default value: CodabarSymbol.A **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | short | a Codabar start symbol. | -### setCodabarStopSymbol(int value) {#setCodabarStopSymbol-int-} +### setStopSymbol(short value) {#setStopSymbol-short-} ``` -public void setCodabarStopSymbol(int value) +public final void setStopSymbol(short value) ``` -Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A +Sets a Codabar stop symbol. Default value: CodabarSymbol.A **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | short | a Codabar stop symbol. | ### toString() {#toString--} ``` @@ -180,10 +230,10 @@ public String toString() ``` -Returns a human-readable string representation of this CodabarExtendedParameters . +Returns a human-readable string representation of this [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). **Returns:** -java.lang.String - A string that represents this CodabarExtendedParameters . +java.lang.String - A string that represents this [CodabarExtendedParameters](../../com.aspose.barcode.barcoderecognition/codabarextendedparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md index 140a202b5..6715bec0f 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/_index.md @@ -3,7 +3,7 @@ title: ComplexBackgroundMode second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 52 +weight: 53 url: /androidjava/com.aspose.barcode.barcoderecognition/complexbackgroundmode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md index e8f0957a2..517be5443 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/_index.md @@ -3,7 +3,7 @@ title: CustomerInformationInterpretingType second_title: Aspose.BarCode for Android via Java API Reference description: Defines the interpreting typeC_TABLE or N_TABLE of customer information for AustralianPost BarCode. type: docs -weight: 53 +weight: 54 url: /androidjava/com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md index b0dd82314..647630c42 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/decodetype/_index.md @@ -19,7 +19,7 @@ Specify the type of barcode to read. > ``` > This sample shows how to detect Code39 and Code128 barcodes. > -> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.CODE_39, DecodeType.CODE_128); +> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.CODE_39_FULL_ASCII, DecodeType.CODE_128); > for(BarCodeResult result : reader.readBarCodes()) > { > System.out.println("BarCode Type: " + result.getCodeTypeName()); @@ -142,7 +142,7 @@ Specify the type of barcode to read. | [parse(String parsingType, SingleDecodeType[] result)](#parse-java.lang.String-com.aspose.barcode.barcoderecognition.SingleDecodeType---) | Converts the string representation of a SingleDecodeType to its instance. | | [scanSets(BaseDecodeType[] barcodeTypes)](#scanSets-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Specify scan sets by barcodeTypes | | [toString()](#toString--) | | -| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. | | [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | @@ -155,7 +155,7 @@ public DecodeType() ### ALL_SUPPORTED_TYPES {#ALL-SUPPORTED-TYPES} ``` -public static final MultyDecodeType ALL_SUPPORTED_TYPES +public static final MultiDecodeType ALL_SUPPORTED_TYPES ``` @@ -667,7 +667,7 @@ Specifies that the data should be decoded with **MICR E-13B** barcode specific ### MOST_COMMON_TYPES {#MOST-COMMON-TYPES} ``` -public static final MultyDecodeType MOST_COMMON_TYPES +public static final MultiDecodeType MOST_COMMON_TYPES ``` @@ -739,7 +739,7 @@ Specifies that the data should be decoded with **Planet** barcode specificatio ### POSTAL_TYPES {#POSTAL-TYPES} ``` -public static final MultyDecodeType POSTAL_TYPES +public static final MultiDecodeType POSTAL_TYPES ``` @@ -827,7 +827,7 @@ Specifies that the data should be decoded with **Swiss Post Parcel Barcode** b ### TYPES_1D {#TYPES-1D} ``` -public static final MultyDecodeType TYPES_1D +public static final MultiDecodeType TYPES_1D ``` @@ -835,7 +835,7 @@ Specifies that data will be checked with all of **1D** barcode symbologies ### TYPES_2D {#TYPES-2D} ``` -public static final MultyDecodeType TYPES_2D +public static final MultiDecodeType TYPES_2D ``` @@ -1039,13 +1039,13 @@ public String toString() **Returns:** java.lang.String -### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-} +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} ``` -public static MultyDecodeType tryParseMultyDecodeType(String parsingType) +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) ``` -Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. +Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. **Parameters:** | Parameter | Type | Description | @@ -1053,7 +1053,7 @@ Converts the string representation of a MultyDecodeType to its instance. A retur | parsingType | java.lang.String | A string in the format as either "AllSupportedTypes" or "EAN8,EAN13,CodaBar" to convert. | **Returns:** -[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; otherwise it returns indefinite type: new MultyDecodeType(DecodeType.None) +com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully; otherwise it returns indefinite type: new MultiDecodeType(DecodeType.None) ### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} ``` public static SingleDecodeType tryParseSingleDecodeType(String parsingType) diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md index 8e00d0223..34cda7ca1 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/_index.md @@ -3,7 +3,7 @@ title: DeconvolutionMode second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 54 +weight: 55 url: /androidjava/com.aspose.barcode.barcoderecognition/deconvolutionmode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md index 0aeec421b..64a72b696 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/dotcodeextendedparameters/_index.md @@ -14,41 +14,42 @@ public final class DotCodeExtendedParameters extends BaseExtendedParameters Stores special data of DotCode recognized barcode --------------------- - -> ``` -> This sample shows how to get DotCode raw values -> -> -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, "12345"); -> { -> generator.save("test.png"); -> } -> BarCodeReader reader = new BarCodeReader("test.png", DecodeType.DOT_CODE); -> { -> for(BarCodeResult result : reader.ReadBarCodes()) -> { -> System.out.println("BarCode type: " + result.getCodeTypeName()); -> System.out.println("BarCode codetext: " + result.getCodeText()); -> System.out.println("DotCode barcode ID: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodeId()); -> System.out.println("DotCode barcodes count: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodesCount()); -> } -> } -> ``` +This sample shows how to get DotCode raw values + +``` + + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, "12345"); + generator.save("c:\\test.png"); + + BarCodeReader reader = new BarCodeReader(@"c:\\test.png", DecodeType.DOT_CODE); + for (BarCodeResult result : reader.readBarCodes() + { + System.out.println("BarCode type: " + result.getCodeTypeName()); + System.out.println("BarCode codetext: " + result.getCodeText()); + System.out.println("DotCode barcode ID: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodeId()); + System.out.println("DotCode barcodes count: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodesCount()); + } + +``` ## Methods | Method | Description | | --- | --- | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified DotCodeExtendedParameters value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value. | | [getClass()](#getClass--) | | | [getDotCodeIsReaderInitialization()](#getDotCodeIsReaderInitialization--) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | | [getDotCodeStructuredAppendModeBarcodeId()](#getDotCodeStructuredAppendModeBarcodeId--) | Gets the ID of the DotCode structured append mode barcode. | | [getDotCodeStructuredAppendModeBarcodesCount()](#getDotCodeStructuredAppendModeBarcodesCount--) | Gets the DotCode structured append mode barcodes count. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Gets the ID of the DotCode structured append mode barcode. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Gets the DotCode structured append mode barcodes count. | | [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [isEmpty()](#isEmpty--) | Tests whether all parameters has only default values | +| [isReaderInitialization()](#isReaderInitialization--) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [toString()](#toString--) | Returns a human-readable string representation of this DotCodeExtendedParameters . | +| [op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-) | Returns a value indicating whether the first [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value is equal to the second. | +| [op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-) | Returns a value indicating if the first [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value is different from the second. | +| [toString()](#toString--) | Returns a human-readable string representation of this [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -58,7 +59,7 @@ public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified DotCodeExtendedParameters value. +Returns a value indicating whether this instance is equal to a specified [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value. **Parameters:** | Parameter | Type | Description | @@ -79,7 +80,7 @@ public final native Class getClass() java.lang.Class ### getDotCodeIsReaderInitialization() {#getDotCodeIsReaderInitialization--} ``` -public boolean getDotCodeIsReaderInitialization() +public final boolean getDotCodeIsReaderInitialization() ``` @@ -89,7 +90,7 @@ Indicates whether code is used for instruct reader to interpret the following da boolean ### getDotCodeStructuredAppendModeBarcodeId() {#getDotCodeStructuredAppendModeBarcodeId--} ``` -public int getDotCodeStructuredAppendModeBarcodeId() +public final int getDotCodeStructuredAppendModeBarcodeId() ``` @@ -98,10 +99,10 @@ Gets the ID of the DotCode structured append mode barcode. ID starts from 1 and Value: The ID of the DotCode structured append mode barcode. **Returns:** -int +int - the ID of the DotCode structured append mode barcode. ### getDotCodeStructuredAppendModeBarcodesCount() {#getDotCodeStructuredAppendModeBarcodesCount--} ``` -public int getDotCodeStructuredAppendModeBarcodesCount() +public final int getDotCodeStructuredAppendModeBarcodesCount() ``` @@ -110,7 +111,31 @@ Gets the DotCode structured append mode barcodes count. Default value is -1. Cou Value: The count of the DotCode structured append mode barcode. **Returns:** -int +int - the DotCode structured append mode barcodes count. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Gets the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +Value: The ID of the DotCode structured append mode barcode. + +**Returns:** +int - the ID of the DotCode structured append mode barcode. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Gets the DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +Value: The count of the DotCode structured append mode barcode. + +**Returns:** +int - the DotCode structured append mode barcodes count. ### hashCode() {#hashCode--} ``` public int hashCode() @@ -131,6 +156,16 @@ Tests whether all parameters has only default values Value: Returns **true** if all parameters has only default values; otherwise, **false** . +**Returns:** +boolean +### isReaderInitialization() {#isReaderInitialization--} +``` +public final boolean isReaderInitialization() +``` + + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. + **Returns:** boolean ### notify() {#notify--} @@ -149,16 +184,48 @@ public final native void notifyAll() +### op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-} +``` +public static boolean op_Equality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) +``` + + +Returns a value indicating whether the first [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value is equal to the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | A first compared value | +| second | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the same value as second; otherwise, **false** . +### op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-com.aspose.barcode.barcoderecognition.DotCodeExtendedParameters-} +``` +public static boolean op_Inequality(DotCodeExtendedParameters first, DotCodeExtendedParameters second) +``` + + +Returns a value indicating if the first [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) value is different from the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | A first compared value | +| second | [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the different value from second; otherwise, **false** . ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this DotCodeExtendedParameters . +Returns a human-readable string representation of this [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). **Returns:** -java.lang.String - A string that represents this DotCodeExtendedParameters . +java.lang.String - A string that represents this [DotCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/dotcodeextendedparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md index ce3994ac4..31731f793 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/_index.md @@ -3,7 +3,7 @@ title: ImageScalingMode second_title: Aspose.BarCode for Android via Java API Reference description: Specify the size of scaled image type: docs -weight: 55 +weight: 56 url: /androidjava/com.aspose.barcode.barcoderecognition/imagescalingmode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md index c8ccc919d..b65ca4412 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/_index.md @@ -3,7 +3,7 @@ title: InverseImageMode second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 56 +weight: 57 url: /androidjava/com.aspose.barcode.barcoderecognition/inverseimagemode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md index 6598063fd..9e04f2df8 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparameters/_index.md @@ -9,7 +9,7 @@ url: /androidjava/com.aspose.barcode.barcoderecognition/maxicodeextendedparamete **Inheritance:** java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseExtendedParameters](../../com.aspose.barcode.barcoderecognition/baseextendedparameters) ``` -public class MaxiCodeExtendedParameters extends BaseExtendedParameters +public final class MaxiCodeExtendedParameters extends BaseExtendedParameters ``` Stores a MaxiCode additional information of recognized barcode @@ -17,17 +17,21 @@ Stores a MaxiCode additional information of recognized barcode | Method | Description | | --- | --- | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeExtendedParameters value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value. | | [getClass()](#getClass--) | | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | | [getMaxiCodeMode()](#getMaxiCodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeStructuredAppendModeBarcodeId()](#getMaxiCodeStructuredAppendModeBarcodeId--) | Gets a MaxiCode barcode id in structured append mode. | | [getMaxiCodeStructuredAppendModeBarcodesCount()](#getMaxiCodeStructuredAppendModeBarcodesCount--) | Gets a MaxiCode barcodes count in structured append mode. | -| [hashCode()](#hashCode--) | | +| [getMode()](#getMode--) | Gets a MaxiCode encode mode. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Gets a MaxiCode barcode id in structured append mode. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Gets a MaxiCode barcodes count in structured append mode. | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [isEmpty()](#isEmpty--) | Tests whether all parameters has only default values | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [toString()](#toString--) | Returns a human-readable string representation of this MaxiCodeExtendedParameters . | +| [op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-) | Returns a value indicating whether the first [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value is equal to the second. | +| [op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-) | Returns a value indicating if the first [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value is different from the second. | +| [toString()](#toString--) | Returns a human-readable string representation of this [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -37,15 +41,15 @@ public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified MaxiCodeExtendedParameters value. +Returns a value indicating whether this instance is equal to a specified [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| obj | java.lang.Object | An java.lang.Object value to compare to this instance. | +| obj | java.lang.Object | An System.Object value to compare to this instance. | **Returns:** -boolean - **true** if obj has the same value as this instance; otherwise, **false**. +boolean - **true** if obj has the same value as this instance; otherwise, **false** . ### getClass() {#getClass--} ``` public final native Class getClass() @@ -56,56 +60,76 @@ public final native Class getClass() **Returns:** java.lang.Class -### getHashCode() {#getHashCode--} +### getMaxiCodeMode() {#getMaxiCodeMode--} ``` -public int getHashCode() +public final int getMaxiCodeMode() ``` -Returns the hash code for this instance. +Gets a MaxiCode encode mode. Default value: Mode4 **Returns:** -int - A 32-bit signed integer hash code. -### getMaxiCodeMode() {#getMaxiCodeMode--} +int - a MaxiCode encode mode. +### getMaxiCodeStructuredAppendModeBarcodeId() {#getMaxiCodeStructuredAppendModeBarcodeId--} ``` -public int getMaxiCodeMode() +public final int getMaxiCodeStructuredAppendModeBarcodeId() +``` + + +Gets a MaxiCode barcode id in structured append mode. Default value: 0 + +**Returns:** +int - a MaxiCode barcode id in structured append mode. +### getMaxiCodeStructuredAppendModeBarcodesCount() {#getMaxiCodeStructuredAppendModeBarcodesCount--} +``` +public final int getMaxiCodeStructuredAppendModeBarcodesCount() +``` + + +Gets a MaxiCode barcodes count in structured append mode. Default value: -1 + +**Returns:** +int - a MaxiCode barcodes count in structured append mode. +### getMode() {#getMode--} +``` +public final int getMode() ``` Gets a MaxiCode encode mode. Default value: Mode4 **Returns:** -int -### getMaxiCodeStructuredAppendModeBarcodeId() {#getMaxiCodeStructuredAppendModeBarcodeId--} +int - a MaxiCode encode mode. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} ``` -public int getMaxiCodeStructuredAppendModeBarcodeId() +public final int getStructuredAppendModeBarcodeId() ``` Gets a MaxiCode barcode id in structured append mode. Default value: 0 **Returns:** -int -### getMaxiCodeStructuredAppendModeBarcodesCount() {#getMaxiCodeStructuredAppendModeBarcodesCount--} +int - a MaxiCode barcode id in structured append mode. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} ``` -public int getMaxiCodeStructuredAppendModeBarcodesCount() +public final int getStructuredAppendModeBarcodesCount() ``` Gets a MaxiCode barcodes count in structured append mode. Default value: -1 **Returns:** -int +int - a MaxiCode barcodes count in structured append mode. ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code. ### isEmpty() {#isEmpty--} ``` public boolean isEmpty() @@ -134,16 +158,48 @@ public final native void notifyAll() +### op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-} +``` +public static boolean op_Equality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) +``` + + +Returns a value indicating whether the first [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value is equal to the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | A first compared value | +| second | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the same value as second; otherwise, **false** . +### op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-com.aspose.barcode.barcoderecognition.MaxiCodeExtendedParameters-} +``` +public static boolean op_Inequality(MaxiCodeExtendedParameters first, MaxiCodeExtendedParameters second) +``` + + +Returns a value indicating if the first [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) value is different from the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | A first compared value | +| second | [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the different value from second; otherwise, **false** . ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this MaxiCodeExtendedParameters . +Returns a human-readable string representation of this [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). **Returns:** -java.lang.String - A string that represents this MaxiCodeExtendedParameters . +java.lang.String - A string that represents this [MaxiCodeExtendedParameters](../../com.aspose.barcode.barcoderecognition/maxicodeextendedparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md new file mode 100644 index 000000000..56d3892ad --- /dev/null +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/_index.md @@ -0,0 +1,334 @@ +--- +title: MultiDecodeType +second_title: Aspose.BarCode for Android via Java API Reference +description: Composite decode type. +type: docs +weight: 37 +url: /androidjava/com.aspose.barcode.barcoderecognition/multidecodetype/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +``` +public class MultiDecodeType extends BaseDecodeType +``` + +Composite decode type. + +This sample shows how to create compound MultiDecode types that combine SingleDecodeType and MultiDecode types. + +``` + +``` +## Constructors + +| Constructor | Description | +| --- | --- | +| [MultiDecodeType(SingleDecodeType[] barcodeTypes)](#MultiDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Initializes a new instance of the MultiDecodeType class. | +| [MultiDecodeType(BaseDecodeType[] barcodeTypes)](#MultiDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initializes a new instance of the MultiDecodeType class. | +## Methods + +| Method | Description | +| --- | --- | +| [add(SingleDecodeType singleType)](#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultiDecodeType. | +| [containsAll(BaseDecodeType[] barcodeTypes)](#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Check if this contains all types from barcode types. | +| [containsAny(BaseDecodeType[] decodeTypes)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Is contain any of types | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this decode types collection contains only specified [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. | +| [exclude(SingleDecodeType singleType)](#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Excludes [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) from the MultiDecodeType and returns new MultiDecodeType instance. | +| [getClass()](#getClass--) | | +| [getSingleTypes()](#getSingleTypes--) | Represents a list of single types. | +| [getSingleTypesCount()](#getSingleTypesCount--) | Returns a number of single types. | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [toString()](#toString--) | Overridden method representing MultiDecodeType as a string. | +| [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. | +| [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MultiDecodeType(SingleDecodeType[] barcodeTypes) {#MultiDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +``` +public MultiDecodeType(SingleDecodeType[] barcodeTypes) +``` + + +Initializes a new instance of the MultiDecodeType class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Array of single decode types | + +### MultiDecodeType(BaseDecodeType[] barcodeTypes) {#MultiDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public MultiDecodeType(BaseDecodeType[] barcodeTypes) +``` + + +Initializes a new instance of the MultiDecodeType class. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Array of multi and single decode types | + +### add(SingleDecodeType singleType) {#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final void add(SingleDecodeType singleType) +``` + + +Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultiDecodeType. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | A Single DecodeType to be added to the list | + +### containsAll(BaseDecodeType[] barcodeTypes) {#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public final boolean containsAll(BaseDecodeType[] barcodeTypes) +``` + + +Check if this contains all types from barcode types. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Input single or multi barcode types | + +**Returns:** +boolean - Value is a true if all types are included into +### containsAny(BaseDecodeType[] decodeTypes) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +``` +public boolean containsAny(BaseDecodeType[] decodeTypes) +``` + + +Is contain any of types + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| decodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Decode types | + +**Returns:** +boolean - Value is a true if any types are included into +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} +``` +public boolean equals(MultiDecodeType other) +``` + + +Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | An MultiDecodeType value to compare to this instance. | + +**Returns:** +boolean - **true** if obj has the same value as this instance; otherwise, **false** . +### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public boolean equals(SingleDecodeType other) +``` + + +Returns a value indicating whether this decode types collection contains only specified [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | An [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value to compare to this decode types collection. | + +**Returns:** +boolean - **true** if this collection contains only specified decode type; otherwise, **false** . +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | An System.Object value to compare to this instance. | + +**Returns:** +boolean - **true** if obj has the same value as this instance; otherwise, **false** . +### exclude(SingleDecodeType singleType) {#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-} +``` +public final MultiDecodeType exclude(SingleDecodeType singleType) +``` + + +Excludes [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) from the MultiDecodeType and returns new MultiDecodeType instance. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | A Single DecodeType to be excluded. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - New MultiDecodeType instance with excluded SingleDecodeType. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getSingleTypes() {#getSingleTypes--} +``` +public final List getSingleTypes() +``` + + +Represents a list of single types. + +**Returns:** +java.util.List - List of single types +### getSingleTypesCount() {#getSingleTypesCount--} +``` +public final int getSingleTypesCount() +``` + + +Returns a number of single types. + +**Returns:** +int +### hashCode() {#hashCode--} +``` +public int hashCode() +``` + + +Returns the hash code for this instance. + +**Returns:** +int - A 32-bit signed integer hash code. +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### toString() {#toString--} +``` +public String toString() +``` + + +Overridden method representing MultiDecodeType as a string. + +**Returns:** +java.lang.String - A string representing MultiDecodeType instance as "singleDecodeType1, singleDecodeType2, ..." + + **"AllSupportedTypes"** returns when all types are included. +### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} +``` +public static BaseDecodeType tryParseBaseDecodeType(String parsingType) +``` + + +Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. A return value indicates whether the conversion succeeded or failed. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | + +**Returns:** +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; + +otherwise it returns indefinite type. or MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} +``` +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) +``` + + +Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | + +**Returns:** +com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully; + +otherwise it returns indefinite type. or MultiDecodeType ("None"). +### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} +``` +public static SingleDecodeType tryParseSingleDecodeType(String parsingType) +``` + + +Converts the string representation of a SingleDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| parsingType | java.lang.String | A string containing a SingleDecodeType in the format as "EAN8" or "EAN13" or "CodaBar"... to convert. | + +**Returns:** +[SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) - An actual SingleDecodeType is returned, when conversion has completed successfully; + +otherwise it returns indefinite type. or SingleDecodeType (-1, "None"). +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md index 25f1e4975..6f1474e95 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/_index.md @@ -3,13 +3,13 @@ title: MultyDecodeType second_title: Aspose.BarCode for Android via Java API Reference description: Composite decode type. type: docs -weight: 37 +weight: 38 url: /androidjava/com.aspose.barcode.barcoderecognition/multydecodetype/ --- **Inheritance:** -java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) +java.lang.Object, [com.aspose.barcode.barcoderecognition.BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype), com.aspose.barcode.barcoderecognition.MultiDecodeType ``` -public class MultyDecodeType extends BaseDecodeType +public class MultyDecodeType extends MultiDecodeType ``` Composite decode type. @@ -26,65 +26,65 @@ Composite decode type. | Constructor | Description | | --- | --- | -| [MultyDecodeType(BaseDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initializes a new instance of the MultyDecodeType class. | -| [MultyDecodeType(SingleDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Initializes a new instance of the MultyDecodeType class. | +| [MultyDecodeType(SingleDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-) | Initializes a new instance of the [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) class. | +| [MultyDecodeType(BaseDecodeType[] barcodeTypes)](#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Initializes a new instance of the [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) class. | ## Methods | Method | Description | | --- | --- | -| [add(SingleDecodeType singleType)](#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultyDecodeType. | +| [add(SingleDecodeType singleType)](#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultiDecodeType. | | [containsAll(BaseDecodeType[] barcodeTypes)](#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Check if this contains all types from barcode types. | | [containsAny(BaseDecodeType[] decodeTypes)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Is contain any of types | -| [equals(MultyDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-) | Returns a value indicating whether this instance is equal to a specified value. | -| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this decode types collection contains only specified value. | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MultyDecodeType value. | -| [exclude(SingleDecodeType singleType)](#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Excludes SingleDecodeType from the MultyDecodeType and returns new MultyDecodeType instance. | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. | +| [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Returns a value indicating whether this decode types collection contains only specified [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. | +| [exclude(SingleDecodeType singleType)](#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | Excludes [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) from the MultiDecodeType and returns new MultiDecodeType instance. | | [getClass()](#getClass--) | | | [getSingleTypes()](#getSingleTypes--) | Represents a list of single types. | | [getSingleTypesCount()](#getSingleTypesCount--) | Returns a number of single types. | | [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [toString()](#toString--) | Overridden method representing MultyDecodeType as a string. | +| [toString()](#toString--) | Overridden method representing MultiDecodeType as a string. | | [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. | -| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. | | [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | -### MultyDecodeType(BaseDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} +### MultyDecodeType(SingleDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} ``` -public MultyDecodeType(BaseDecodeType[] barcodeTypes) +public MultyDecodeType(SingleDecodeType[] barcodeTypes) ``` -Initializes a new instance of the MultyDecodeType class. +Initializes a new instance of the [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) class. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Array of single decode types | +| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Array of single decode types | -### MultyDecodeType(SingleDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.SingleDecodeType...-} +### MultyDecodeType(BaseDecodeType[] barcodeTypes) {#MultyDecodeType-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} ``` -public MultyDecodeType(SingleDecodeType[] barcodeTypes) +public MultyDecodeType(BaseDecodeType[] barcodeTypes) ``` -Initializes a new instance of the MultyDecodeType class. +Initializes a new instance of the [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) class. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| barcodeTypes | [SingleDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/singledecodetype) | Array of multy and single decode types | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Array of multi and single decode types | ### add(SingleDecodeType singleType) {#add-com.aspose.barcode.barcoderecognition.SingleDecodeType-} ``` -public void add(SingleDecodeType singleType) +public final void add(SingleDecodeType singleType) ``` -Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultyDecodeType. +Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) to the MultiDecodeType. **Parameters:** | Parameter | Type | Description | @@ -93,7 +93,7 @@ Adds one more [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/sin ### containsAll(BaseDecodeType[] barcodeTypes) {#containsAll-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} ``` -public boolean containsAll(BaseDecodeType[] barcodeTypes) +public final boolean containsAll(BaseDecodeType[] barcodeTypes) ``` @@ -102,10 +102,10 @@ Check if this contains all types from barcode types. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Input single or multy barcode types | +| barcodeTypes | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Input single or multi barcode types | **Returns:** -boolean - True if all types are included into +boolean - Value is a true if all types are included into ### containsAny(BaseDecodeType[] decodeTypes) {#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-} ``` public boolean containsAny(BaseDecodeType[] decodeTypes) @@ -121,58 +121,58 @@ Is contain any of types **Returns:** boolean - Value is a true if any types are included into -### equals(MultyDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-} +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} ``` -public boolean equals(MultyDecodeType other) +public boolean equals(MultiDecodeType other) ``` -Returns a value indicating whether this instance is equal to a specified value. +Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| other | [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) | An java.lang.Object value to compare to this instance. | +| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | An MultiDecodeType value to compare to this instance. | **Returns:** -boolean - +boolean - **true** if obj has the same value as this instance; otherwise, **false** . ### equals(SingleDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-} ``` public boolean equals(SingleDecodeType other) ``` -Returns a value indicating whether this decode types collection contains only specified value. +Returns a value indicating whether this decode types collection contains only specified [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | An java.lang.Object value to compare to this instance. | +| other | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | An [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value to compare to this decode types collection. | **Returns:** -boolean - if this collection contains only specified decode type; otherwise, **false**. +boolean - **true** if this collection contains only specified decode type; otherwise, **false** . ### equals(Object obj) {#equals-java.lang.Object-} ``` public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified MultyDecodeType value. +Returns a value indicating whether this instance is equal to a specified MultiDecodeType value. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| obj | java.lang.Object | An MultyDecodeType value to compare to this instance. | +| obj | java.lang.Object | An System.Object value to compare to this instance. | **Returns:** -boolean - True if obj has the same value as this instance; otherwise, false. +boolean - **true** if obj has the same value as this instance; otherwise, **false** . ### exclude(SingleDecodeType singleType) {#exclude-com.aspose.barcode.barcoderecognition.SingleDecodeType-} ``` -public MultyDecodeType exclude(SingleDecodeType singleType) +public final MultiDecodeType exclude(SingleDecodeType singleType) ``` -Excludes SingleDecodeType from the MultyDecodeType and returns new MultyDecodeType instance. +Excludes [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) from the MultiDecodeType and returns new MultiDecodeType instance. **Parameters:** | Parameter | Type | Description | @@ -180,7 +180,7 @@ Excludes SingleDecodeType from the MultyDecodeType and returns new MultyDecode | singleType | [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) | A Single DecodeType to be excluded. | **Returns:** -[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - New MultyDecodeType instance with excluded SingleDecodeType. +com.aspose.barcode.barcoderecognition.MultiDecodeType - New MultiDecodeType instance with excluded SingleDecodeType. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -193,7 +193,7 @@ public final native Class getClass() java.lang.Class ### getSingleTypes() {#getSingleTypes--} ``` -public List getSingleTypes() +public final List getSingleTypes() ``` @@ -203,7 +203,7 @@ Represents a list of single types. java.util.List - List of single types ### getSingleTypesCount() {#getSingleTypesCount--} ``` -public int getSingleTypesCount() +public final int getSingleTypesCount() ``` @@ -243,12 +243,12 @@ public String toString() ``` -Overridden method representing MultyDecodeType as a string. +Overridden method representing MultiDecodeType as a string. **Returns:** -java.lang.String - A string representing MultyDecodeType instance as "singleDecodeType1, singleDecodeType2, ..." +java.lang.String - A string representing MultiDecodeType instance as "singleDecodeType1, singleDecodeType2, ..." -returns when all types are included. + **"AllSupportedTypes"** returns when all types are included. ### tryParseBaseDecodeType(String parsingType) {#tryParseBaseDecodeType-java.lang.String-} ``` public static BaseDecodeType tryParseBaseDecodeType(String parsingType) @@ -260,29 +260,29 @@ Converts the string representation of a BaseDecodeType to its instance, having d **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("None"). -### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-} +otherwise it returns indefinite type. or MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} ``` -public static MultyDecodeType tryParseMultyDecodeType(String parsingType) +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) ``` -Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. +Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string in the format as either "AllSupportedTypes" or "EAN8,EAN13,CodaBar" to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("NONE"). +otherwise it returns indefinite type. or MultiDecodeType ("None"). ### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} ``` public static SingleDecodeType tryParseSingleDecodeType(String parsingType) diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md index f4e8cc6d3..11593ad13 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/_index.md @@ -3,7 +3,7 @@ title: OneDExtendedParameters second_title: Aspose.BarCode for Android via Java API Reference description: Stores special data of 1D recognized barcode like separate codetext and checksum type: docs -weight: 38 +weight: 39 url: /androidjava/com.aspose.barcode.barcoderecognition/onedextendedparameters/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md index fe7a2a849..4eb70bf0c 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/_index.md @@ -3,7 +3,7 @@ title: Pdf417ExtendedParameters second_title: Aspose.BarCode for Android via Java API Reference description: Stores a MacroPdf417 metadata information of recognized barcode type: docs -weight: 39 +weight: 40 url: /androidjava/com.aspose.barcode.barcoderecognition/pdf417extendedparameters/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md index 70ef59d1b..5f8e8fa9a 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/processorsettings/_index.md @@ -3,7 +3,7 @@ title: ProcessorSettings second_title: Aspose.BarCode for Android via Java API Reference description: ProcessorSettings allow to recognize barcodes with multi-threaded increasing of performance type: docs -weight: 40 +weight: 41 url: /androidjava/com.aspose.barcode.barcoderecognition/processorsettings/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md index ae6d6ef21..d599f5c16 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/_index.md @@ -3,7 +3,7 @@ title: QRExtendedParameters second_title: Aspose.BarCode for Android via Java API Reference description: Stores a QR Structured Append information of recognized barcode type: docs -weight: 41 +weight: 42 url: /androidjava/com.aspose.barcode.barcoderecognition/qrextendedparameters/ --- **Inheritance:** @@ -14,27 +14,18 @@ public final class QRExtendedParameters extends BaseExtendedParameters Stores a QR Structured Append information of recognized barcode --------------------- - -> ``` -> This sample shows how to get QR Structured Append data -> -> BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.QR); -> for(BarCodeResult result : reader.readBarCodes()) -> { -> System.out.println("BarCode Type: " + result.getCodeTypeName()); -> System.out.println("BarCode CodeText: " + result.getCodeText()); -> System.out.println("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); -> System.out.println("QR Structured Append Index: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodeIndex()); -> System.out.println("QR Structured Append ParityData: " + result.getExtended().getQR().getQRStructuredAppendModeParityData()); -> } -> ``` +This sample shows how to get QR Structured Append data + +``` +{ +``` ## Methods | Method | Description | | --- | --- | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value. | | [getClass()](#getClass--) | | +| [getErrorLevel()](#getErrorLevel--) | Reed-Solomon error correction level of recognized barcode. | | [getMicroQRVersion()](#getMicroQRVersion--) | Version of recognized MicroQR Code. | | [getQRErrorLevel()](#getQRErrorLevel--) | Reed-Solomon error correction level of recognized barcode. | | [getQRStructuredAppendModeBarCodeIndex()](#getQRStructuredAppendModeBarCodeIndex--) | Gets the index of the QR structured append mode barcode. | @@ -42,11 +33,17 @@ Stores a QR Structured Append information of recognized barcode | [getQRStructuredAppendModeParityData()](#getQRStructuredAppendModeParityData--) | Gets the QR structured append mode parity data. | | [getQRVersion()](#getQRVersion--) | Version of recognized QR Code. | | [getRectMicroQRVersion()](#getRectMicroQRVersion--) | Version of recognized RectMicroQR Code. | +| [getStructuredAppendModeBarCodeIndex()](#getStructuredAppendModeBarCodeIndex--) | Gets the index of the QR structured append mode barcode. | +| [getStructuredAppendModeBarCodesQuantity()](#getStructuredAppendModeBarCodesQuantity--) | Gets the QR structured append mode barcodes quantity. | +| [getStructuredAppendModeParityData()](#getStructuredAppendModeParityData--) | Gets the QR structured append mode parity data. | +| [getVersion()](#getVersion--) | Version of recognized QR Code. | | [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [isEmpty()](#isEmpty--) | Tests whether all parameters has only default values | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [toString()](#toString--) | Returns a human-readable string representation of this QRExtendedParameters . | +| [op_Equality(QRExtendedParameters first, QRExtendedParameters second)](#op-Equality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-) | Returns a value indicating whether the first [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value is equal to the second. | +| [op_Inequality(QRExtendedParameters first, QRExtendedParameters second)](#op-Inequality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-) | Returns a value indicating if the first [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value is different from the second. | +| [toString()](#toString--) | Returns a human-readable string representation of this [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -56,7 +53,7 @@ public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value. +Returns a value indicating whether this instance is equal to a specified [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value. **Parameters:** | Parameter | Type | Description | @@ -75,29 +72,39 @@ public final native Class getClass() **Returns:** java.lang.Class +### getErrorLevel() {#getErrorLevel--} +``` +public final QRErrorLevel getErrorLevel() +``` + + +Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) ### getMicroQRVersion() {#getMicroQRVersion--} ``` -public MicroQRVersion getMicroQRVersion() +public final MicroQRVersion getMicroQRVersion() ``` Version of recognized MicroQR Code. From M1 to M4. **Returns:** -[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) - Version of recognized MicroQR Code. From M1 to M4. +[MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) ### getQRErrorLevel() {#getQRErrorLevel--} ``` -public QRErrorLevel getQRErrorLevel() +public final QRErrorLevel getQRErrorLevel() ``` Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. **Returns:** -[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) - Reed-Solomon error correction level of recognized barcode. +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) ### getQRStructuredAppendModeBarCodeIndex() {#getQRStructuredAppendModeBarCodeIndex--} ``` -public int getQRStructuredAppendModeBarCodeIndex() +public final int getQRStructuredAppendModeBarCodeIndex() ``` @@ -106,10 +113,10 @@ Gets the index of the QR structured append mode barcode. Index starts from 0. De Value: The quantity of the QR structured append mode barcode. **Returns:** -int +int - the index of the QR structured append mode barcode. ### getQRStructuredAppendModeBarCodesQuantity() {#getQRStructuredAppendModeBarCodesQuantity--} ``` -public int getQRStructuredAppendModeBarCodesQuantity() +public final int getQRStructuredAppendModeBarCodesQuantity() ``` @@ -118,10 +125,10 @@ Gets the QR structured append mode barcodes quantity. Default value is -1. Value: The quantity of the QR structured append mode barcode. **Returns:** -int +int - the QR structured append mode barcodes quantity. ### getQRStructuredAppendModeParityData() {#getQRStructuredAppendModeParityData--} ``` -public int getQRStructuredAppendModeParityData() +public final int getQRStructuredAppendModeParityData() ``` @@ -130,27 +137,73 @@ Gets the QR structured append mode parity data. Default value is -1. Value: The index of the QR structured append mode barcode. **Returns:** -int +int - the QR structured append mode parity data. ### getQRVersion() {#getQRVersion--} ``` -public QRVersion getQRVersion() +public final QRVersion getQRVersion() ``` Version of recognized QR Code. From Version1 to Version40. **Returns:** -[QRVersion](../../com.aspose.barcode.generation/qrversion) - Version of recognized QR Code +[QRVersion](../../com.aspose.barcode.generation/qrversion) ### getRectMicroQRVersion() {#getRectMicroQRVersion--} ``` -public RectMicroQRVersion getRectMicroQRVersion() +public final RectMicroQRVersion getRectMicroQRVersion() ``` Version of recognized RectMicroQR Code. From R7x43 to R17x139. **Returns:** -[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) - Version of recognized RectMicroQR Code +[RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) +### getStructuredAppendModeBarCodeIndex() {#getStructuredAppendModeBarCodeIndex--} +``` +public final int getStructuredAppendModeBarCodeIndex() +``` + + +Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1. + +Value: The quantity of the QR structured append mode barcode. + +**Returns:** +int - the index of the QR structured append mode barcode. +### getStructuredAppendModeBarCodesQuantity() {#getStructuredAppendModeBarCodesQuantity--} +``` +public final int getStructuredAppendModeBarCodesQuantity() +``` + + +Gets the QR structured append mode barcodes quantity. Default value is -1. + +Value: The quantity of the QR structured append mode barcode. + +**Returns:** +int - the QR structured append mode barcodes quantity. +### getStructuredAppendModeParityData() {#getStructuredAppendModeParityData--} +``` +public final int getStructuredAppendModeParityData() +``` + + +Gets the QR structured append mode parity data. Default value is -1. + +Value: The index of the QR structured append mode barcode. + +**Returns:** +int - the QR structured append mode parity data. +### getVersion() {#getVersion--} +``` +public final QRVersion getVersion() +``` + + +Version of recognized QR Code. From Version1 to Version40. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) ### hashCode() {#hashCode--} ``` public int hashCode() @@ -189,16 +242,48 @@ public final native void notifyAll() +### op_Equality(QRExtendedParameters first, QRExtendedParameters second) {#op-Equality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-} +``` +public static boolean op_Equality(QRExtendedParameters first, QRExtendedParameters second) +``` + + +Returns a value indicating whether the first [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value is equal to the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | A first compared value | +| second | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the same value as second; otherwise, **false** . +### op_Inequality(QRExtendedParameters first, QRExtendedParameters second) {#op-Inequality-com.aspose.barcode.barcoderecognition.QRExtendedParameters-com.aspose.barcode.barcoderecognition.QRExtendedParameters-} +``` +public static boolean op_Inequality(QRExtendedParameters first, QRExtendedParameters second) +``` + + +Returns a value indicating if the first [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) value is different from the second. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| first | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | A first compared value | +| second | [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters) | A second compared value | + +**Returns:** +boolean - **true** if first has the different value from second; otherwise, **false** . ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this QRExtendedParameters . +Returns a human-readable string representation of this [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). **Returns:** -java.lang.String - A string that represents this QRExtendedParameters . +java.lang.String - A string that represents this [QRExtendedParameters](../../com.aspose.barcode.barcoderecognition/qrextendedparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md index 7a1b9971b..5a10a66ce 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/quadrangle/_index.md @@ -3,7 +3,7 @@ title: Quadrangle second_title: Aspose.BarCode for Android via Java API Reference description: Stores a set of four Points that represent a Quadrangle region. type: docs -weight: 42 +weight: 43 url: /androidjava/com.aspose.barcode.barcoderecognition/quadrangle/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md index 1d1b28496..7be0a8130 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/_index.md @@ -3,7 +3,7 @@ title: QualitySettings second_title: Aspose.BarCode for Android via Java API Reference description: QualitySettings allows to configure recognition quality and speed manually. type: docs -weight: 43 +weight: 44 url: /androidjava/com.aspose.barcode.barcoderecognition/qualitysettings/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md index bec1214e6..c0f8673cc 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/_index.md @@ -3,7 +3,7 @@ title: QualitySettingsInternal second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 44 +weight: 45 url: /androidjava/com.aspose.barcode.barcoderecognition/qualitysettingsinternal/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md index 30812afdb..63d41d5dd 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/_index.md @@ -3,7 +3,7 @@ title: RecognitionAbortedException second_title: Aspose.BarCode for Android via Java API Reference description: Represents recognition abort exception which is thrown in timeout exceeding during recognition with BarCodeReader. type: docs -weight: 45 +weight: 46 url: /androidjava/com.aspose.barcode.barcoderecognition/recognitionabortedexception/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md index e7d024217..33140266d 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/_index.md @@ -3,7 +3,7 @@ title: RecognitionOptions second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 46 +weight: 47 url: /androidjava/com.aspose.barcode.barcoderecognition/recognitionoptions/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md index 82e3b8ab0..c5d5583ee 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/_index.md @@ -3,7 +3,7 @@ title: SingleDecodeType second_title: Aspose.BarCode for Android via Java API Reference description: Single decode type. type: docs -weight: 47 +weight: 48 url: /androidjava/com.aspose.barcode.barcoderecognition/singledecodetype/ --- **Inheritance:** @@ -26,7 +26,7 @@ Single decode type. See decode type to get instance. | Method | Description | | --- | --- | | [containsAny(BaseDecodeType[] types)](#containsAny-com.aspose.barcode.barcoderecognition.BaseDecodeType...-) | Returns a value indicating whether this instance is included into the list specified. | -| [equals(MultyDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-) | | +| [equals(MultiDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-) | | | [equals(SingleDecodeType other)](#equals-com.aspose.barcode.barcoderecognition.SingleDecodeType-) | | | [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified [SingleDecodeType](../../com.aspose.barcode.barcoderecognition/singledecodetype) value. | | [getClass()](#getClass--) | | @@ -40,7 +40,7 @@ Single decode type. See decode type to get instance. | [parseSingleDecodeType(String stringDecodeType)](#parseSingleDecodeType-java.lang.String-) | Converts the string representation of the name of a SingleDecodeType to its instance. | | [toString()](#toString--) | Overridden method representing SingleDecodeType as the Name string. | | [tryParseBaseDecodeType(String parsingType)](#tryParseBaseDecodeType-java.lang.String-) | Converts the string representation of a BaseDecodeType to its instance, having determined the concrete type. | -| [tryParseMultyDecodeType(String parsingType)](#tryParseMultyDecodeType-java.lang.String-) | Converts the string representation of a MultyDecodeType to its instance. | +| [tryParseMultiDecodeType(String parsingType)](#tryParseMultiDecodeType-java.lang.String-) | Converts the string representation of a MultiDecodeType to its instance. | | [tryParseSingleDecodeType(String parsingType)](#tryParseSingleDecodeType-java.lang.String-) | Converts the string representation of a SingleDecodeType to its instance. | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | @@ -56,13 +56,13 @@ Returns a value indicating whether this instance is included into the list speci **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| types | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Array of single and multy decode types | +| types | [BaseDecodeType\[\]](../../com.aspose.barcode.barcoderecognition/basedecodetype) | Array of single and multi decode types | **Returns:** boolean - Value is a true if any types are included into -### equals(MultyDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultyDecodeType-} +### equals(MultiDecodeType other) {#equals-com.aspose.barcode.barcoderecognition.MultiDecodeType-} ``` -public boolean equals(MultyDecodeType other) +public boolean equals(MultiDecodeType other) ``` @@ -71,7 +71,7 @@ Returns a value indicating whether this instance is equal to a specified [BaseDe **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| other | [MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) | | +| other | com.aspose.barcode.barcoderecognition.MultiDecodeType | | **Returns:** boolean @@ -222,29 +222,29 @@ Converts the string representation of a BaseDecodeType to its instance, having d **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +[BaseDecodeType](../../com.aspose.barcode.barcoderecognition/basedecodetype) - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("None"). -### tryParseMultyDecodeType(String parsingType) {#tryParseMultyDecodeType-java.lang.String-} +otherwise it returns indefinite type. or MultiDecodeType ("None"). +### tryParseMultiDecodeType(String parsingType) {#tryParseMultiDecodeType-java.lang.String-} ``` -public static MultyDecodeType tryParseMultyDecodeType(String parsingType) +public static MultiDecodeType tryParseMultiDecodeType(String parsingType) ``` -Converts the string representation of a MultyDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. +Converts the string representation of a MultiDecodeType to its instance. A return value indicates whether the conversion succeeded or failed. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| parsingType | java.lang.String | A string containing a MultyDecodeType representation to convert. | +| parsingType | java.lang.String | A string containing a MultiDecodeType representation to convert. | **Returns:** -[MultyDecodeType](../../com.aspose.barcode.barcoderecognition/multydecodetype) - An actual MultyDecodeType is returned, when conversion has completed successfully; +com.aspose.barcode.barcoderecognition.MultiDecodeType - An actual MultiDecodeType is returned, when conversion has completed successfully; -otherwise it returns indefinite type. or MultyDecodeType ("None"). +otherwise it returns indefinite type. or MultiDecodeType ("None"). ### tryParseSingleDecodeType(String parsingType) {#tryParseSingleDecodeType-java.lang.String-} ``` public static SingleDecodeType tryParseSingleDecodeType(String parsingType) diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md index 40d4786b0..629cb6271 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/_index.md @@ -3,7 +3,7 @@ title: TextEncodingDetection second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 48 +weight: 49 url: /androidjava/com.aspose.barcode.barcoderecognition/textencodingdetection/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md b/english/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md index 99cf1a835..5efdf51ed 100644 --- a/english/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md +++ b/english/androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/_index.md @@ -3,7 +3,7 @@ title: XDimensionMode second_title: Aspose.BarCode for Android via Java API Reference description: type: docs -weight: 57 +weight: 58 url: /androidjava/com.aspose.barcode.barcoderecognition/xdimensionmode/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/_index.md index 233c289c4..dc1fdc250 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/_index.md @@ -34,6 +34,7 @@ This package contains tools for processing complex barcode | [MaxiCodeCodetextMode3](../com.aspose.barcode.complexbarcode/maxicodecodetextmode3) | Class for encoding and decoding the text embedded in the MaxiCode code for modes 3. | | [MaxiCodeSecondMessage](../com.aspose.barcode.complexbarcode/maxicodesecondmessage) | Base class for encoding and decoding second message for MaxiCode barcode. | | [MaxiCodeStandardCodetext](../com.aspose.barcode.complexbarcode/maxicodestandardcodetext) | Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. | +| [MaxiCodeStandardSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage) | Class for encoding and decoding standart second message for MaxiCode barcode. | | [MaxiCodeStandartSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage) | Class for encoding and decoding standart second message for MaxiCode barcode. | | [MaxiCodeStructuredCodetext](../com.aspose.barcode.complexbarcode/maxicodestructuredcodetext) | Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3. | | [MaxiCodeStructuredSecondMessage](../com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage) | Class for encoding and decoding structured second message for MaxiCode barcode. | diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md index d3c1e80e1..495979888 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/addresstype/_index.md @@ -3,7 +3,7 @@ title: AddressType second_title: Aspose.BarCode for Android via Java API Reference description: Address type type: docs -weight: 40 +weight: 41 url: /androidjava/com.aspose.barcode.complexbarcode/addresstype/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md index 604e9b8d8..96777b210 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/_index.md @@ -3,7 +3,7 @@ title: HIBCLICDateFormat second_title: Aspose.BarCode for Android via Java API Reference description: Specifies the different types of date formats for HIBC LIC. type: docs -weight: 41 +weight: 42 url: /androidjava/com.aspose.barcode.complexbarcode/hibclicdateformat/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md index 890a431b9..ca1303733 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/_index.md @@ -3,7 +3,7 @@ title: IComplexCodetext second_title: Aspose.BarCode for Android via Java API Reference description: Interface for complex codetext used with ComplexBarcodeGenerator. type: docs -weight: 39 +weight: 40 url: /androidjava/com.aspose.barcode.complexbarcode/icomplexcodetext/ ---``` public interface IComplexCodetext diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md index 9ef79c4ec..8bc53de72 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dcodetext/_index.md @@ -292,7 +292,7 @@ public void setCustomerContentEncodeMode(DataMatrixEncodeMode value) ``` -Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40. +Encode mode of Datamatrix barcode. Default value: EncodeMode.C40. **Parameters:** | Parameter | Type | Description | diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md index 834c4dc4e..ac22d7a30 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/_index.md @@ -3,7 +3,7 @@ title: Mailmark2DType second_title: Aspose.BarCode for Android via Java API Reference description: 2D Mailmark Type defines size of Data Matrix barcode type: docs -weight: 42 +weight: 43 url: /androidjava/com.aspose.barcode.complexbarcode/mailmark2dtype/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md index 73c145e6c..12c5f9acc 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetext/_index.md @@ -15,17 +15,21 @@ java.lang.Object public abstract class MaxiCodeCodetext implements IComplexCodetext ``` -Base class for encoding and decoding the text embedded in the MaxiCode code. This sample shows how to decode raw MaxiCode codetext to MaxiCodeCodetext instance. +Base class for encoding and decoding the text embedded in the MaxiCode code. + +This sample shows how to decode raw MaxiCode codetext to MaxiCodeCodetext instance. ``` -BarCodeReader reader = new BarCodeReader("test.png", DecodeType.MAXI_CODE); + + BarCodeReader reader = new BarCodeReader("test.png", DecodeType.MAXI_CODE); for (BarCodeResult result : reader.readBarCodes()) { - MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); + MaxiCodeCodetext resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMode(), result.getCodeText()); System.out.println("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType()); System.out.println("MaxiCode mode: " + resultMaxiCodeCodetext.getMode()); System.out.println("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext()); } + ``` ## Constructors @@ -41,6 +45,7 @@ BarCodeReader reader = new BarCodeReader("test.png", DecodeType.MAXI_CODE); | [getClass()](#getClass--) | | | [getConstructedCodetext()](#getConstructedCodetext--) | Constructs codetext | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMode()](#getMode--) | Gets MaxiCode mode. | | [hashCode()](#hashCode--) | | @@ -48,6 +53,7 @@ BarCodeReader reader = new BarCodeReader("test.png", DecodeType.MAXI_CODE); | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [toString()](#toString--) | | | [wait()](#wait--) | | @@ -76,14 +82,14 @@ public boolean equals(Object arg0) boolean ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` Gets barcode type. **Returns:** -[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -103,27 +109,37 @@ public abstract String getConstructedCodetext() Constructs codetext **Returns:** -java.lang.String +java.lang.String - Constructed codetext ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Gets a MaxiCode encode mode. Default value: Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMode() {#getMode--} ``` public abstract int getMode() @@ -175,29 +191,42 @@ public final native void notifyAll() ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) +``` + + +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets a MaxiCode encode mode. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### toString() {#toString--} ``` diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md index ef937cd08..4c7f49e73 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode2/_index.md @@ -96,18 +96,19 @@ Class for encoding and decoding the text embedded in the MaxiCode code for modes | [getConstructedCodetext()](#getConstructedCodetext--) | Constructs codetext | | [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMode()](#getMode--) | Gets MaxiCode mode. | | [getPostalCode()](#getPostalCode--) | Identifies the postal code. | | [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | | [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | -| [hashCode()](#hashCode--) | | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initializes instance from constructed codetext. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | | [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | @@ -139,14 +140,14 @@ Returns a value indicating whether this instance is equal to a specified MaxiCod boolean - **true** if obj has the same value as this instance; otherwise, **false** ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` Gets barcode type. **Returns:** -[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -179,34 +180,34 @@ Identifies 3 digit country code. int ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int -### getHashCode() {#getHashCode--} +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} ``` -public int getHashCode() +public final MaxiCodeEncodeMode getEncodeMode() ``` -Returns the hash code for this instance. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -int - A 32-bit signed integer hash code. +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMode() {#getMode--} ``` public int getMode() @@ -249,14 +250,14 @@ Identifies 3 digit service category. int ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code. ### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} ``` public void initFromString(String constructedCodetext) @@ -301,29 +302,42 @@ Identifies 3 digit country code. ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Sets a MaxiCode encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets a MaxiCode encode mode. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setPostalCode(String value) {#setPostalCode-java.lang.String-} ``` diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md index 561c58450..0f2565dd9 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodecodetextmode3/_index.md @@ -96,18 +96,19 @@ Class for encoding and decoding the text embedded in the MaxiCode code for modes | [getConstructedCodetext()](#getConstructedCodetext--) | Constructs codetext | | [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMode()](#getMode--) | Gets MaxiCode mode. | | [getPostalCode()](#getPostalCode--) | Identifies the postal code. | | [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | | [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | -| [hashCode()](#hashCode--) | | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initializes instance from constructed codetext. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | | [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | @@ -139,14 +140,14 @@ Returns a value indicating whether this instance is equal to a specified MaxiCod boolean - **true** if obj has the same value as this instance; otherwise, **false** ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` Gets barcode type. **Returns:** -[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -179,34 +180,34 @@ Identifies 3 digit country code. int ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int -### getHashCode() {#getHashCode--} +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} ``` -public int getHashCode() +public final MaxiCodeEncodeMode getEncodeMode() ``` -Returns the hash code for this instance. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -int - A 32-bit signed integer hash code. +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMode() {#getMode--} ``` public int getMode() @@ -249,14 +250,14 @@ Identifies 3 digit service category. int ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code. ### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} ``` public void initFromString(String constructedCodetext) @@ -301,29 +302,42 @@ Identifies 3 digit country code. ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Sets a MaxiCode encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets a MaxiCode encode mode. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setPostalCode(String value) {#setPostalCode-java.lang.String-} ``` diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md index 756209798..1eadba8cb 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardcodetext/_index.md @@ -50,15 +50,16 @@ Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. | [getClass()](#getClass--) | | | [getConstructedCodetext()](#getConstructedCodetext--) | Constructs codetext | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMessage()](#getMessage--) | Gets message. | | [getMode()](#getMode--) | Gets MaxiCode mode. | -| [hashCode()](#hashCode--) | | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initializes instance from constructed codetext. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMessage(String value)](#setMessage-java.lang.String-) | Sets message. | | [setMode(int mode)](#setMode-int-) | Sets MaxiCode mode. | @@ -89,14 +90,14 @@ Returns a value indicating whether this instance is equal to a specified MaxiCod boolean - if obj has the same value as this instance; otherwise, **false**. ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` Gets barcode type. **Returns:** -[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -119,34 +120,34 @@ Constructs codetext java.lang.String - Constructed codetext ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int -### getHashCode() {#getHashCode--} +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} ``` -public int getHashCode() +public final MaxiCodeEncodeMode getEncodeMode() ``` -Returns the hash code for this instance. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -int - A 32-bit signed integer hash code +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMessage() {#getMessage--} ``` public String getMessage() @@ -169,14 +170,14 @@ Gets MaxiCode mode. int - MaxiCode mode ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code ### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} ``` public void initFromString(String constructedCodetext) @@ -208,29 +209,42 @@ public final native void notifyAll() ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) +``` + + +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets a MaxiCode encode mode. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMessage(String value) {#setMessage-java.lang.String-} ``` diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md new file mode 100644 index 000000000..719bae1f2 --- /dev/null +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/_index.md @@ -0,0 +1,171 @@ +--- +title: MaxiCodeStandardSecondMessage +second_title: Aspose.BarCode for Android via Java API Reference +description: Class for encoding and decoding standart second message for MaxiCode barcode. +type: docs +weight: 30 +url: /androidjava/com.aspose.barcode.complexbarcode/maxicodestandardsecondmessage/ +--- +**Inheritance:** +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +``` +public class MaxiCodeStandardSecondMessage extends MaxiCodeSecondMessage +``` + +Class for encoding and decoding standart second message for MaxiCode barcode. +## Constructors + +| Constructor | Description | +| --- | --- | +| [MaxiCodeStandardSecondMessage()](#MaxiCodeStandardSecondMessage--) | | +## Methods + +| Method | Description | +| --- | --- | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStandartSecondMessage value. | +| [getClass()](#getClass--) | | +| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | +| [getMessage()](#getMessage--) | Gets second message | +| [hashCode()](#hashCode--) | | +| [notify()](#notify--) | | +| [notifyAll()](#notifyAll--) | | +| [setMessage(String value)](#setMessage-java.lang.String-) | Sets second message | +| [toString()](#toString--) | | +| [wait()](#wait--) | | +| [wait(long arg0)](#wait-long-) | | +| [wait(long arg0, int arg1)](#wait-long-int-) | | +### MaxiCodeStandardSecondMessage() {#MaxiCodeStandardSecondMessage--} +``` +public MaxiCodeStandardSecondMessage() +``` + + +### equals(Object obj) {#equals-java.lang.Object-} +``` +public boolean equals(Object obj) +``` + + +Returns a value indicating whether this instance is equal to a specified MaxiCodeStandartSecondMessage value. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| obj | java.lang.Object | An MaxiCodeStandartSecondMessage value to compare to this instance | + +**Returns:** +boolean - **true** if obj has the same value as this instance; otherwise, **false**. +### getClass() {#getClass--} +``` +public final native Class getClass() +``` + + + + +**Returns:** +java.lang.Class +### getHashCode() {#getHashCode--} +``` +public int getHashCode() +``` + + +Returns the hash code for this instance. + +**Returns:** +int - A 32-bit signed integer hash code. +### getMessage() {#getMessage--} +``` +public String getMessage() +``` + + +Gets second message + +**Returns:** +java.lang.String +### hashCode() {#hashCode--} +``` +public native int hashCode() +``` + + + + +**Returns:** +int +### notify() {#notify--} +``` +public final native void notify() +``` + + + + +### notifyAll() {#notifyAll--} +``` +public final native void notifyAll() +``` + + + + +### setMessage(String value) {#setMessage-java.lang.String-} +``` +public void setMessage(String value) +``` + + +Sets second message + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | | + +### toString() {#toString--} +``` +public String toString() +``` + + + + +**Returns:** +java.lang.String +### wait() {#wait--} +``` +public final void wait() +``` + + + + +### wait(long arg0) {#wait-long-} +``` +public final void wait(long arg0) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | + +### wait(long arg0, int arg1) {#wait-long-int-} +``` +public final void wait(long arg0, int arg1) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| arg0 | long | | +| arg1 | int | | + diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md index 43aa9c419..691d0f02d 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/_index.md @@ -3,13 +3,13 @@ title: MaxiCodeStandartSecondMessage second_title: Aspose.BarCode for Android via Java API Reference description: Class for encoding and decoding standart second message for MaxiCode barcode. type: docs -weight: 30 +weight: 31 url: /androidjava/com.aspose.barcode.complexbarcode/maxicodestandartsecondmessage/ --- **Inheritance:** -java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage) +java.lang.Object, [com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage](../../com.aspose.barcode.complexbarcode/maxicodesecondmessage), com.aspose.barcode.complexbarcode.MaxiCodeStandardSecondMessage ``` -public class MaxiCodeStandartSecondMessage extends MaxiCodeSecondMessage +public class MaxiCodeStandartSecondMessage extends MaxiCodeStandardSecondMessage ``` Class for encoding and decoding standart second message for MaxiCode barcode. @@ -22,7 +22,7 @@ Class for encoding and decoding standart second message for MaxiCode barcode. | Method | Description | | --- | --- | -| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified value. | +| [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified MaxiCodeStandartSecondMessage value. | | [getClass()](#getClass--) | | | [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | | [getMessage()](#getMessage--) | Gets second message | @@ -46,12 +46,12 @@ public boolean equals(Object obj) ``` -Returns a value indicating whether this instance is equal to a specified value. +Returns a value indicating whether this instance is equal to a specified MaxiCodeStandartSecondMessage value. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| obj | java.lang.Object | An value to compare to this instance | +| obj | java.lang.Object | An MaxiCodeStandartSecondMessage value to compare to this instance | **Returns:** boolean - **true** if obj has the same value as this instance; otherwise, **false**. diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md index 7b1ecbad3..a03f33e79 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/_index.md @@ -3,7 +3,7 @@ title: MaxiCodeStructuredCodetext second_title: Aspose.BarCode for Android via Java API Reference description: Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3. type: docs -weight: 31 +weight: 32 url: /androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredcodetext/ --- **Inheritance:** @@ -43,18 +43,19 @@ BarCodeReader reader = new BarCodeReader("c:\\test.png", DecodeType.MAXI_CODE); | [getConstructedCodetext()](#getConstructedCodetext--) | Constructs codetext | | [getCountryCode()](#getCountryCode--) | Identifies 3 digit country code. | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMode()](#getMode--) | Gets MaxiCode mode. | | [getPostalCode()](#getPostalCode--) | Identifies the postal code. | | [getSecondMessage()](#getSecondMessage--) | Identifies second message of the barcode. | | [getServiceCategory()](#getServiceCategory--) | Identifies 3 digit service category. | -| [hashCode()](#hashCode--) | | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [initFromString(String constructedCodetext)](#initFromString-java.lang.String-) | Initializes instance from constructed codetext. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setCountryCode(int value)](#setCountryCode-int-) | Identifies 3 digit country code. | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | | [setPostalCode(String value)](#setPostalCode-java.lang.String-) | Identifies the postal code. | | [setSecondMessage(MaxiCodeSecondMessage value)](#setSecondMessage-com.aspose.barcode.complexbarcode.MaxiCodeSecondMessage-) | Identifies second message of the barcode. | @@ -86,14 +87,14 @@ Returns a value indicating whether this instance is equal to a specified MaxiCod boolean - **true** if obj has the same value as this instance; otherwise, **false** ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` Gets barcode type. **Returns:** -[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type +[BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) - Barcode type. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -126,34 +127,34 @@ Identifies 3 digit country code. int ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int -### getHashCode() {#getHashCode--} +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} ``` -public int getHashCode() +public final MaxiCodeEncodeMode getEncodeMode() ``` -Returns the hash code for this instance. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -int - A 32-bit signed integer hash code. +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMode() {#getMode--} ``` public abstract int getMode() @@ -196,14 +197,14 @@ Identifies 3 digit service category. int ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code. ### initFromString(String constructedCodetext) {#initFromString-java.lang.String-} ``` public void initFromString(String constructedCodetext) @@ -248,29 +249,42 @@ Identifies 3 digit country code. ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Sets a MaxiCode encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets a MaxiCode encode mode. +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | ### setPostalCode(String value) {#setPostalCode-java.lang.String-} ``` diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md index 301e0296b..bec261ff4 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/_index.md @@ -3,7 +3,7 @@ title: MaxiCodeStructuredSecondMessage second_title: Aspose.BarCode for Android via Java API Reference description: Class for encoding and decoding structured second message for MaxiCode barcode. type: docs -weight: 32 +weight: 33 url: /androidjava/com.aspose.barcode.complexbarcode/maxicodestructuredsecondmessage/ --- **Inheritance:** @@ -26,11 +26,10 @@ Class for encoding and decoding structured second message for MaxiCode barcode. | [clear()](#clear--) | Clear identifiers list | | [equals(Object obj)](#equals-java.lang.Object-) | Returns a value indicating whether this instance is equal to a specified value. | | [getClass()](#getClass--) | | -| [getHashCode()](#getHashCode--) | Returns the hash code for this instance. | | [getIdentifiers()](#getIdentifiers--) | Gets identifiers list | | [getMessage()](#getMessage--) | Gets constructed second message | | [getYear()](#getYear--) | Gets year. | -| [hashCode()](#hashCode--) | | +| [hashCode()](#hashCode--) | Returns the hash code for this instance. | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setYear(int value)](#setYear-int-) | Sets year. | @@ -90,16 +89,6 @@ public final native Class getClass() **Returns:** java.lang.Class -### getHashCode() {#getHashCode--} -``` -public int getHashCode() -``` - - -Returns the hash code for this instance. - -**Returns:** -int - A 32-bit signed integer hash code. ### getIdentifiers() {#getIdentifiers--} ``` public List getIdentifiers() @@ -132,14 +121,14 @@ Gets year. Year must be 2 digit integer value. int ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` - +Returns the hash code for this instance. **Returns:** -int +int - A 32-bit signed integer hash code. ### notify() {#notify--} ``` public final native void notify() diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md index 635ce9e93..f366e0ce3 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/primarydata/_index.md @@ -3,7 +3,7 @@ title: PrimaryData second_title: Aspose.BarCode for Android via Java API Reference description: Class for storing HIBC LIC primary data. type: docs -weight: 33 +weight: 34 url: /androidjava/com.aspose.barcode.complexbarcode/primarydata/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md index 1fbc6129e..d5d59ad85 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/_index.md @@ -3,7 +3,7 @@ title: QrBillStandardVersion second_title: Aspose.BarCode for Android via Java API Reference description: SwissQR bill standard version type: docs -weight: 43 +weight: 44 url: /androidjava/com.aspose.barcode.complexbarcode/qrbillstandardversion/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md index e5e2056ab..fe3e88209 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/_index.md @@ -3,7 +3,7 @@ title: SecondaryAndAdditionalData second_title: Aspose.BarCode for Android via Java API Reference description: Class for storing HIBC LIC secondary and additional data. type: docs -weight: 34 +weight: 35 url: /androidjava/com.aspose.barcode.complexbarcode/secondaryandadditionaldata/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md index 23ed13d3b..ece20afb8 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/swissqrbill/_index.md @@ -3,7 +3,7 @@ title: SwissQRBill second_title: Aspose.BarCode for Android via Java API Reference description: SwissQR bill data type: docs -weight: 35 +weight: 36 url: /androidjava/com.aspose.barcode.complexbarcode/swissqrbill/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md index c6aca2b76..b8eae06aa 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/_index.md @@ -3,7 +3,7 @@ title: SwissQRCodetext second_title: Aspose.BarCode for Android via Java API Reference description: Class for encoding and decoding the text embedded in the SwissQR code. type: docs -weight: 36 +weight: 37 url: /androidjava/com.aspose.barcode.complexbarcode/swissqrcodetext/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md index f5c8c6c79..e1e233176 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/_index.md @@ -3,7 +3,7 @@ title: USADriveIdCodetext second_title: Aspose.BarCode for Android via Java API Reference description: Class for encoding and decoding the text embedded in the USA Driving License PDF417 code. type: docs -weight: 37 +weight: 38 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveidcodetext/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md index d8f10c64a..87dfc6ac8 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/_index.md @@ -3,7 +3,7 @@ title: USADriveIdCountry second_title: Aspose.BarCode for Android via Java API Reference description: Enum for Country Identification in the US Drivers License type: docs -weight: 44 +weight: 45 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveidcountry/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md index 9d62d1e79..3b53651be 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/_index.md @@ -3,7 +3,7 @@ title: USADriveIdEyeColor second_title: Aspose.BarCode for Android via Java API Reference description: Enum for Eye Color in the US Drivers License type: docs -weight: 45 +weight: 46 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveideyecolor/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md index 5e657a796..2e1e7807b 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/_index.md @@ -3,7 +3,7 @@ title: USADriveIdHairColor second_title: Aspose.BarCode for Android via Java API Reference description: Enum for Hair Color in the US Drivers License type: docs -weight: 46 +weight: 47 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveidhaircolor/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md index 52c464a17..2b95c035a 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/_index.md @@ -3,7 +3,7 @@ title: USADriveIdJurisdSubfile second_title: Aspose.BarCode for Android via Java API Reference description: Class for Jurisdiction specific fields for USA DL type: docs -weight: 38 +weight: 39 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveidjurisdsubfile/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md index 8c798f1f5..7ccfe2e5f 100644 --- a/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md +++ b/english/androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/_index.md @@ -3,7 +3,7 @@ title: USADriveIdSex second_title: Aspose.BarCode for Android via Java API Reference description: Enum for Sex field in the US Drivers License type: docs -weight: 47 +weight: 48 url: /androidjava/com.aspose.barcode.complexbarcode/usadriveidsex/ --- **Inheritance:** diff --git a/english/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md b/english/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md index f1fbd41eb..ac01e9cc7 100644 --- a/english/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md +++ b/english/androidjava/com.aspose.barcode.component.barcodescanner/barcoderecognitionsettings/_index.md @@ -27,7 +27,7 @@ BarcodeRecognitionSettings contains the API to customization BarcodeRecognitionF | --- | --- | | [describeContents()](#describeContents--) | | | [equals(Object arg0)](#equals-java.lang.Object-) | | -| [getBarCodeDecodeType()](#getBarCodeDecodeType--) | | +| [getBarCodeReadType()](#getBarCodeReadType--) | | | [getBarcodeReaderSettings()](#getBarcodeReaderSettings--) | internal | | [getBarcodeScannerFragmentSettings()](#getBarcodeScannerFragmentSettings--) | | | [getBarcodeSettings()](#getBarcodeSettings--) | The main BarCode decoding parameters. | @@ -77,9 +77,9 @@ public boolean equals(Object arg0) **Returns:** boolean -### getBarCodeDecodeType() {#getBarCodeDecodeType--} +### getBarCodeReadType() {#getBarCodeReadType--} ``` -public BaseDecodeType getBarCodeDecodeType() +public BaseDecodeType getBarCodeReadType() ``` diff --git a/english/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md index 4a41b9a56..36f2ac5c4 100644 --- a/english/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/australianpostparameters/_index.md @@ -21,12 +21,16 @@ AustralianPost barcode parameters. | [getAustralianPostEncodingTable()](#getAustralianPostEncodingTable--) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" | | [getAustralianPostShortBarHeight()](#getAustralianPostShortBarHeight--) | Short bar's height of AustralianPost barcode. | | [getClass()](#getClass--) | | +| [getEncodingTable()](#getEncodingTable--) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" | +| [getShortBarHeight()](#getShortBarHeight--) | Short bar's height of AustralianPost barcode. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setAustralianPostEncodingTable(CustomerInformationInterpretingType value)](#setAustralianPostEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" | | [setAustralianPostShortBarHeight(Unit value)](#setAustralianPostShortBarHeight-com.aspose.barcode.generation.Unit-) | Short bar's height of AustralianPost barcode. | -| [toString()](#toString--) | Returns a human-readable string representation of this AustralianPostParameters . | +| [setEncodingTable(CustomerInformationInterpretingType value)](#setEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" | +| [setShortBarHeight(Unit value)](#setShortBarHeight-com.aspose.barcode.generation.Unit-) | Short bar's height of AustralianPost barcode. | +| [toString()](#toString--) | Returns a human-readable string representation of this [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -47,7 +51,7 @@ public boolean equals(Object arg0) boolean ### getAustralianPostEncodingTable() {#getAustralianPostEncodingTable--} ``` -public CustomerInformationInterpretingType getAustralianPostEncodingTable() +public final CustomerInformationInterpretingType getAustralianPostEncodingTable() ``` @@ -57,7 +61,7 @@ Interpreting type for the Customer Information of AustralianPost, default to Cus [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) ### getAustralianPostShortBarHeight() {#getAustralianPostShortBarHeight--} ``` -public Unit getAustralianPostShortBarHeight() +public final Unit getAustralianPostShortBarHeight() ``` @@ -75,6 +79,26 @@ public final native Class getClass() **Returns:** java.lang.Class +### getEncodingTable() {#getEncodingTable--} +``` +public final CustomerInformationInterpretingType getEncodingTable() +``` + + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +**Returns:** +[CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) +### getShortBarHeight() {#getShortBarHeight--} +``` +public final Unit getShortBarHeight() +``` + + +Short bar's height of AustralianPost barcode. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -103,7 +127,7 @@ public final native void notifyAll() ### setAustralianPostEncodingTable(CustomerInformationInterpretingType value) {#setAustralianPostEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-} ``` -public void setAustralianPostEncodingTable(CustomerInformationInterpretingType value) +public final void setAustralianPostEncodingTable(CustomerInformationInterpretingType value) ``` @@ -116,7 +140,33 @@ Interpreting type for the Customer Information of AustralianPost, default to Cus ### setAustralianPostShortBarHeight(Unit value) {#setAustralianPostShortBarHeight-com.aspose.barcode.generation.Unit-} ``` -public void setAustralianPostShortBarHeight(Unit value) +public final void setAustralianPostShortBarHeight(Unit value) +``` + + +Short bar's height of AustralianPost barcode. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setEncodingTable(CustomerInformationInterpretingType value) {#setEncodingTable-com.aspose.barcode.barcoderecognition.CustomerInformationInterpretingType-} +``` +public final void setEncodingTable(CustomerInformationInterpretingType value) +``` + + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [CustomerInformationInterpretingType](../../com.aspose.barcode.barcoderecognition/customerinformationinterpretingtype) | | + +### setShortBarHeight(Unit value) {#setShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setShortBarHeight(Unit value) ``` @@ -133,10 +183,10 @@ public String toString() ``` -Returns a human-readable string representation of this AustralianPostParameters . +Returns a human-readable string representation of this [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). **Returns:** -java.lang.String - A string that represents this AustralianPostParameters . +java.lang.String - A string that represents this [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md index ba2338998..35c0fffb9 100644 --- a/english/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/aztecparameters/_index.md @@ -24,10 +24,13 @@ Aztec parameters. | [getAztecSymbolMode()](#getAztecSymbolMode--) | Gets a Aztec Symbol mode. | | [getClass()](#getClass--) | | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Gets a Aztec encode mode. | +| [getErrorLevel()](#getErrorLevel--) | Level of error correction of Aztec types of barcode. | | [getLayersCount()](#getLayersCount--) | Gets layers count of Aztec symbol. | | [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | Barcode ID for Structured Append mode of Aztec barcode. | | [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Barcodes count for Structured Append mode of Aztec barcode. | | [getStructuredAppendFileId()](#getStructuredAppendFileId--) | File ID for Structured Append mode of Aztec barcode (optional field). | +| [getSymbolMode()](#getSymbolMode--) | Gets a Aztec Symbol mode. | | [hashCode()](#hashCode--) | | | [isReaderInitialization()](#isReaderInitialization--) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | | [notify()](#notify--) | | @@ -37,12 +40,15 @@ Aztec parameters. | [setAztecErrorLevel(int value)](#setAztecErrorLevel-int-) | Level of error correction of Aztec types of barcode. | | [setAztecSymbolMode(AztecSymbolMode value)](#setAztecSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-) | Sets a Aztec Symbol mode. | | [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(AztecEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-) | Sets a Aztec encode mode. | +| [setErrorLevel(int value)](#setErrorLevel-int-) | Level of error correction of Aztec types of barcode. | | [setLayersCount(int value)](#setLayersCount-int-) | Sets layers count of Aztec symbol. | | [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | | [setStructuredAppendBarcodeId(int value)](#setStructuredAppendBarcodeId-int-) | Barcode ID for Structured Append mode of Aztec barcode. | | [setStructuredAppendBarcodesCount(int value)](#setStructuredAppendBarcodesCount-int-) | Barcodes count for Structured Append mode of Aztec barcode. | | [setStructuredAppendFileId(String value)](#setStructuredAppendFileId-java.lang.String-) | File ID for Structured Append mode of Aztec barcode (optional field). | -| [toString()](#toString--) | Returns a human-readable string representation of this AztecParameters . | +| [setSymbolMode(AztecSymbolMode value)](#setSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-) | Sets a Aztec Symbol mode. | +| [toString()](#toString--) | Returns a human-readable string representation of this [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -63,7 +69,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -73,17 +79,17 @@ Height/Width ratio of 2D BarCode module. float ### getAztecEncodeMode() {#getAztecEncodeMode--} ``` -public AztecEncodeMode getAztecEncodeMode() +public final AztecEncodeMode getAztecEncodeMode() ``` Gets a Aztec encode mode. Default value: Auto. **Returns:** -com.aspose.barcode.generation.AztecEncodeMode +com.aspose.barcode.generation.AztecEncodeMode - a Aztec encode mode. ### getAztecErrorLevel() {#getAztecErrorLevel--} ``` -public int getAztecErrorLevel() +public final int getAztecErrorLevel() ``` @@ -93,14 +99,14 @@ Level of error correction of Aztec types of barcode. Value should between 5 to 9 int ### getAztecSymbolMode() {#getAztecSymbolMode--} ``` -public AztecSymbolMode getAztecSymbolMode() +public final AztecSymbolMode getAztecSymbolMode() ``` Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. **Returns:** -[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) +[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) - a Aztec Symbol mode. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -113,27 +119,47 @@ public final native Class getClass() java.lang.Class ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` Gets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1 +**Returns:** +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} +``` +public final AztecEncodeMode getEncodeMode() +``` + + +Gets a Aztec encode mode. Default value: Auto. + +**Returns:** +com.aspose.barcode.generation.AztecEncodeMode - a Aztec encode mode. +### getErrorLevel() {#getErrorLevel--} +``` +public final int getErrorLevel() +``` + + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + **Returns:** int ### getLayersCount() {#getLayersCount--} ``` -public int getLayersCount() +public final int getLayersCount() ``` Gets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto). **Returns:** -int +int - layers count of Aztec symbol. ### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} ``` -public int getStructuredAppendBarcodeId() +public final int getStructuredAppendBarcodeId() ``` @@ -143,7 +169,7 @@ Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in int ### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} ``` -public int getStructuredAppendBarcodesCount() +public final int getStructuredAppendBarcodesCount() ``` @@ -153,7 +179,7 @@ Barcodes count for Structured Append mode of Aztec barcode. Barcodes count shoul int ### getStructuredAppendFileId() {#getStructuredAppendFileId--} ``` -public String getStructuredAppendFileId() +public final String getStructuredAppendFileId() ``` @@ -161,6 +187,16 @@ File ID for Structured Append mode of Aztec barcode (optional field). File ID sh **Returns:** java.lang.String +### getSymbolMode() {#getSymbolMode--} +``` +public final AztecSymbolMode getSymbolMode() +``` + + +Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +**Returns:** +[AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) - a Aztec Symbol mode. ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -173,7 +209,7 @@ public native int hashCode() int ### isReaderInitialization() {#isReaderInitialization--} ``` -public boolean isReaderInitialization() +public final boolean isReaderInitialization() ``` @@ -199,7 +235,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -212,7 +248,7 @@ Height/Width ratio of 2D BarCode module. ### setAztecEncodeMode(AztecEncodeMode value) {#setAztecEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-} ``` -public void setAztecEncodeMode(AztecEncodeMode value) +public final void setAztecEncodeMode(AztecEncodeMode value) ``` @@ -221,11 +257,11 @@ Sets a Aztec encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | com.aspose.barcode.generation.AztecEncodeMode | | +| value | com.aspose.barcode.generation.AztecEncodeMode | a Aztec encode mode. | ### setAztecErrorLevel(int value) {#setAztecErrorLevel-int-} ``` -public void setAztecErrorLevel(int value) +public final void setAztecErrorLevel(int value) ``` @@ -238,7 +274,7 @@ Level of error correction of Aztec types of barcode. Value should between 5 to 9 ### setAztecSymbolMode(AztecSymbolMode value) {#setAztecSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-} ``` -public void setAztecSymbolMode(AztecSymbolMode value) +public final void setAztecSymbolMode(AztecSymbolMode value) ``` @@ -247,16 +283,42 @@ Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) | | +| value | [AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) | a Aztec Symbol mode. | ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` Sets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1 +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | ECI encoding. | + +### setEncodeMode(AztecEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.AztecEncodeMode-} +``` +public final void setEncodeMode(AztecEncodeMode value) +``` + + +Sets a Aztec encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | com.aspose.barcode.generation.AztecEncodeMode | a Aztec encode mode. | + +### setErrorLevel(int value) {#setErrorLevel-int-} +``` +public final void setErrorLevel(int value) +``` + + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + **Parameters:** | Parameter | Type | Description | | --- | --- | --- | @@ -264,7 +326,7 @@ Sets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1 ### setLayersCount(int value) {#setLayersCount-int-} ``` -public void setLayersCount(int value) +public final void setLayersCount(int value) ``` @@ -273,11 +335,11 @@ Sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 f **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | int | layers count of Aztec symbol. | ### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} ``` -public void setReaderInitialization(boolean value) +public final void setReaderInitialization(boolean value) ``` @@ -290,7 +352,7 @@ Used to instruct the reader to interpret the data contained within the symbol as ### setStructuredAppendBarcodeId(int value) {#setStructuredAppendBarcodeId-int-} ``` -public void setStructuredAppendBarcodeId(int value) +public final void setStructuredAppendBarcodeId(int value) ``` @@ -303,7 +365,7 @@ Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in ### setStructuredAppendBarcodesCount(int value) {#setStructuredAppendBarcodesCount-int-} ``` -public void setStructuredAppendBarcodesCount(int value) +public final void setStructuredAppendBarcodesCount(int value) ``` @@ -316,7 +378,7 @@ Barcodes count for Structured Append mode of Aztec barcode. Barcodes count shoul ### setStructuredAppendFileId(String value) {#setStructuredAppendFileId-java.lang.String-} ``` -public void setStructuredAppendFileId(String value) +public final void setStructuredAppendFileId(String value) ``` @@ -327,16 +389,29 @@ File ID for Structured Append mode of Aztec barcode (optional field). File ID sh | --- | --- | --- | | value | java.lang.String | | +### setSymbolMode(AztecSymbolMode value) {#setSymbolMode-com.aspose.barcode.generation.AztecSymbolMode-} +``` +public final void setSymbolMode(AztecSymbolMode value) +``` + + +Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [AztecSymbolMode](../../com.aspose.barcode.generation/aztecsymbolmode) | a Aztec Symbol mode. | + ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this AztecParameters . +Returns a human-readable string representation of this [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). **Returns:** -java.lang.String - A string that represents this AztecParameters . +java.lang.String - A string that represents this [AztecParameters](../../com.aspose.barcode.generation/aztecparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md index 160017cec..933cf9d62 100644 --- a/english/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/barcodeparameters/_index.md @@ -18,10 +18,11 @@ Barcode generation parameters. | Method | Description | | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getAspectRatio()](#getAspectRatio--) | | | [getAustralianPost()](#getAustralianPost--) | AustralianPost barcode parameters. | | [getAztec()](#getAztec--) | Aztec parameters. | | [getBarColor()](#getBarColor--) | Bars color. | -| [getBarHeight()](#getBarHeight--) | Height of 1D barcodes' bars in Unit value. | +| [getBarHeight()](#getBarHeight--) | Height of 1D barcodes' bars in [Unit](../../com.aspose.barcode.generation/unit) value. | | [getBarWidthReduction()](#getBarWidthReduction--) | Get bars reduction value that is used to compensate ink spread while printing. | | [getBarcodeType()](#getBarcodeType--) | | | [getChecksumAlwaysShow()](#getChecksumAlwaysShow--) | Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. | @@ -32,6 +33,7 @@ Barcode generation parameters. | [getCode16K()](#getCode16K--) | Code16K parameters. | | [getCodeText()](#getCodeText--) | | | [getCodeTextParameters()](#getCodeTextParameters--) | Codetext parameters. | +| [getComplexBarcode()](#getComplexBarcode--) | | | [getCoupon()](#getCoupon--) | Coupon parameters. | | [getDataBar()](#getDataBar--) | Databar parameters. | | [getDataMatrix()](#getDataMatrix--) | DataMatrix parameters. | @@ -56,7 +58,7 @@ Barcode generation parameters. | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setBarColor(int value)](#setBarColor-int-) | Bars color. | -| [setBarHeight(Unit value)](#setBarHeight-com.aspose.barcode.generation.Unit-) | Height of 1D barcodes' bars in Unit value. | +| [setBarHeight(Unit value)](#setBarHeight-com.aspose.barcode.generation.Unit-) | Height of 1D barcodes' bars in [Unit](../../com.aspose.barcode.generation/unit) value. | | [setBarWidthReduction(Unit value)](#setBarWidthReduction-com.aspose.barcode.generation.Unit-) | Sets bars reduction value that is used to compensate ink spread while printing. | | [setChecksumAlwaysShow(boolean value)](#setChecksumAlwaysShow-boolean-) | Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. | | [setChecksumEnabled(EnableChecksum value)](#setChecksumEnabled-com.aspose.barcode.generation.EnableChecksum-) | | @@ -86,9 +88,19 @@ public boolean equals(Object arg0) **Returns:** boolean +### getAspectRatio() {#getAspectRatio--} +``` +public final float getAspectRatio() +``` + + + + +**Returns:** +float ### getAustralianPost() {#getAustralianPost--} ``` -public AustralianPostParameters getAustralianPost() +public final AustralianPostParameters getAustralianPost() ``` @@ -98,7 +110,7 @@ AustralianPost barcode parameters. [AustralianPostParameters](../../com.aspose.barcode.generation/australianpostparameters) ### getAztec() {#getAztec--} ``` -public AztecParameters getAztec() +public final AztecParameters getAztec() ``` @@ -108,7 +120,7 @@ Aztec parameters. [AztecParameters](../../com.aspose.barcode.generation/aztecparameters) ### getBarColor() {#getBarColor--} ``` -public int getBarColor() +public final int getBarColor() ``` @@ -118,27 +130,27 @@ Bars color. Default value: Color.Black. int ### getBarHeight() {#getBarHeight--} ``` -public Unit getBarHeight() +public final Unit getBarHeight() ``` -Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. +Height of 1D barcodes' bars in [Unit](../../com.aspose.barcode.generation/unit) value. Ignored if BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. **Returns:** [Unit](../../com.aspose.barcode.generation/unit) ### getBarWidthReduction() {#getBarWidthReduction--} ``` -public Unit getBarWidthReduction() +public final Unit getBarWidthReduction() ``` -Get bars reduction value that is used to compensate ink spread while printing. +Get bars reduction value that is used to compensate ink spread while printing. Default value: 0 **Returns:** -[Unit](../../com.aspose.barcode.generation/unit) +[Unit](../../com.aspose.barcode.generation/unit) - bars reduction value that is used to compensate ink spread while printing. ### getBarcodeType() {#getBarcodeType--} ``` -public BaseEncodeType getBarcodeType() +public final BaseEncodeType getBarcodeType() ``` @@ -148,7 +160,7 @@ public BaseEncodeType getBarcodeType() [BaseEncodeType](../../com.aspose.barcode.generation/baseencodetype) ### getChecksumAlwaysShow() {#getChecksumAlwaysShow--} ``` -public boolean getChecksumAlwaysShow() +public final boolean getChecksumAlwaysShow() ``` @@ -168,7 +180,7 @@ public final native Class getClass() java.lang.Class ### getCodabar() {#getCodabar--} ``` -public CodabarParameters getCodabar() +public final CodabarParameters getCodabar() ``` @@ -178,7 +190,7 @@ Codabar parameters. [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters) ### getCodablock() {#getCodablock--} ``` -public CodablockParameters getCodablock() +public final CodablockParameters getCodablock() ``` @@ -188,7 +200,7 @@ Codablock parameters. [CodablockParameters](../../com.aspose.barcode.generation/codablockparameters) ### getCode128() {#getCode128--} ``` -public Code128Parameters getCode128() +public final Code128Parameters getCode128() ``` @@ -198,7 +210,7 @@ Code128 parameters. [Code128Parameters](../../com.aspose.barcode.generation/code128parameters) ### getCode16K() {#getCode16K--} ``` -public Code16KParameters getCode16K() +public final Code16KParameters getCode16K() ``` @@ -208,7 +220,7 @@ Code16K parameters. [Code16KParameters](../../com.aspose.barcode.generation/code16kparameters) ### getCodeText() {#getCodeText--} ``` -public String getCodeText() +public final String getCodeText() ``` @@ -218,7 +230,7 @@ public String getCodeText() java.lang.String ### getCodeTextParameters() {#getCodeTextParameters--} ``` -public CodetextParameters getCodeTextParameters() +public final CodetextParameters getCodeTextParameters() ``` @@ -226,9 +238,19 @@ Codetext parameters. **Returns:** [CodetextParameters](../../com.aspose.barcode.generation/codetextparameters) +### getComplexBarcode() {#getComplexBarcode--} +``` +public final ComplexBarcode getComplexBarcode() +``` + + + + +**Returns:** +[ComplexBarcode](../../com.aspose.barcode.generation/complexbarcode) ### getCoupon() {#getCoupon--} ``` -public CouponParameters getCoupon() +public final CouponParameters getCoupon() ``` @@ -238,7 +260,7 @@ Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. [CouponParameters](../../com.aspose.barcode.generation/couponparameters) ### getDataBar() {#getDataBar--} ``` -public DataBarParameters getDataBar() +public final DataBarParameters getDataBar() ``` @@ -248,7 +270,7 @@ Databar parameters. [DataBarParameters](../../com.aspose.barcode.generation/databarparameters) ### getDataMatrix() {#getDataMatrix--} ``` -public DataMatrixParameters getDataMatrix() +public final DataMatrixParameters getDataMatrix() ``` @@ -258,7 +280,7 @@ DataMatrix parameters. [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters) ### getDotCode() {#getDotCode--} ``` -public DotCodeParameters getDotCode() +public final DotCodeParameters getDotCode() ``` @@ -268,41 +290,60 @@ DotCode parameters. [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters) ### getEnableEscape() {#getEnableEscape--} ``` -public boolean getEnableEscape() +public final boolean getEnableEscape() ``` Indicates whether explains the character "\\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\\" will be explained as a special escape character. Otherwise, "\\" acts as normal characters. --------------------- - Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \\013 and \\\\CR stands for CR. **Returns:** boolean ### getFilledBars() {#getFilledBars--} ``` -public boolean getFilledBars() +public final boolean getFilledBars() ``` Gets a value indicating whether bars filled. Only for 1D barcodes. Default value: true. **Returns:** -boolean +boolean - a value indicating whether bars filled. ### getGS1CompositeBar() {#getGS1CompositeBar--} ``` -public GS1CompositeBarParameters getGS1CompositeBar() +public final GS1CompositeBarParameters getGS1CompositeBar() ``` -GS1 Composite Bar parameters. This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '|' String codetext = "(01)03212345678906|(21)A1B2C3D4E5F6G7H8"; BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS\_1\_COMPOSITE\_BAR, codetext); generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS\_1\_CODE\_128); generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC\_A); // Aspect ratio of 2D component generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); // X-Dimension of 1D and 2D components generator.getParameters().getBarcode().getXDimension().setPixels(3); /// // Height of 1D component generator.getParameters().getBarcode().getBarHeight().setPixels(100); /// generator.save("test.png"); +GS1 Composite Bar parameters. + +This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '|' + +``` + + [C#] + var codetext = "(01)03212345678906|(21)A1B2C3D4E5F6G7H8"; + using (var generator = new BarcodeGenerator(EncodeTypes.GS1CompositeBar, codetext)) + { + generator.Parameters.Barcode.GS1CompositeBar.LinearComponentType = EncodeTypes.GS1Code128; + generator.Parameters.Barcode.GS1CompositeBar.TwoDComponentType = TwoDComponentType.CC_A; + // Aspect ratio of 2D component + generator.Parameters.Barcode.Pdf417.AspectRatio = 3; + // X-Dimension of 1D and 2D components + generator.Parameters.Barcode.XDimension.Pixels = 3; + // Height of 1D component + generator.Parameters.Barcode.BarHeight.Pixels = 100; + generator.Save("test.png"); + } + +``` **Returns:** -[GS1CompositeBarParameters](../../com.aspose.barcode.generation/gs1compositebarparameters) - GS1 Composite Bar parameters. +[GS1CompositeBarParameters](../../com.aspose.barcode.generation/gs1compositebarparameters) ### getHanXin() {#getHanXin--} ``` -public HanXinParameters getHanXin() +public final HanXinParameters getHanXin() ``` @@ -312,7 +353,7 @@ HanXin parameters. [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters) ### getITF() {#getITF--} ``` -public ITFParameters getITF() +public final ITFParameters getITF() ``` @@ -322,7 +363,7 @@ ITF parameters. [ITFParameters](../../com.aspose.barcode.generation/itfparameters) ### getMaxiCode() {#getMaxiCode--} ``` -public MaxiCodeParameters getMaxiCode() +public final MaxiCodeParameters getMaxiCode() ``` @@ -332,7 +373,7 @@ MaxiCode parameters. [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters) ### getPadding() {#getPadding--} ``` -public Padding getPadding() +public final Padding getPadding() ``` @@ -342,7 +383,7 @@ Barcode paddings. Default value: 5pt 5pt 5pt 5pt. [Padding](../../com.aspose.barcode.generation/padding) ### getPatchCode() {#getPatchCode--} ``` -public PatchCodeParameters getPatchCode() +public final PatchCodeParameters getPatchCode() ``` @@ -352,7 +393,7 @@ PatchCode parameters. [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters) ### getPdf417() {#getPdf417--} ``` -public Pdf417Parameters getPdf417() +public final Pdf417Parameters getPdf417() ``` @@ -362,7 +403,7 @@ PDF417 parameters. [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters) ### getPostal() {#getPostal--} ``` -public PostalParameters getPostal() +public final PostalParameters getPostal() ``` @@ -372,7 +413,7 @@ Postal parameters. Used for Postnet, Planet. [PostalParameters](../../com.aspose.barcode.generation/postalparameters) ### getQR() {#getQR--} ``` -public QrParameters getQR() +public final QrParameters getQR() ``` @@ -382,7 +423,7 @@ QR, MicroQR and RectMicroQR parameters. [QrParameters](../../com.aspose.barcode.generation/qrparameters) ### getSupplement() {#getSupplement--} ``` -public SupplementParameters getSupplement() +public final SupplementParameters getSupplement() ``` @@ -392,7 +433,7 @@ Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA [SupplementParameters](../../com.aspose.barcode.generation/supplementparameters) ### getThrowExceptionWhenCodeTextIncorrect() {#getThrowExceptionWhenCodeTextIncorrect--} ``` -public boolean getThrowExceptionWhenCodeTextIncorrect() +public final boolean getThrowExceptionWhenCodeTextIncorrect() ``` @@ -402,7 +443,7 @@ Only for 1D barcodes. If codetext is incorrect and value set to true - exception boolean ### getWideNarrowRatio() {#getWideNarrowRatio--} ``` -public float getWideNarrowRatio() +public final float getWideNarrowRatio() ``` @@ -412,17 +453,17 @@ Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times float ### getXDimension() {#getXDimension--} ``` -public Unit getXDimension() +public final Unit getXDimension() ``` -x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if BaseGenerationParameters.AutoSizeMode property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. +x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. **Returns:** [Unit](../../com.aspose.barcode.generation/unit) ### hashCode() {#hashCode--} ``` -public native int hashCode() +public int hashCode() ``` @@ -432,7 +473,7 @@ public native int hashCode() int ### isChecksumEnabled() {#isChecksumEnabled--} ``` -public EnableChecksum isChecksumEnabled() +public final EnableChecksum isChecksumEnabled() ``` @@ -464,7 +505,7 @@ public final native void notifyAll() ### setBarColor(int value) {#setBarColor-int-} ``` -public void setBarColor(int value) +public final void setBarColor(int value) ``` @@ -477,11 +518,11 @@ Bars color. Default value: Color.Black. ### setBarHeight(Unit value) {#setBarHeight-com.aspose.barcode.generation.Unit-} ``` -public void setBarHeight(Unit value) +public final void setBarHeight(Unit value) ``` -Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. +Height of 1D barcodes' bars in [Unit](../../com.aspose.barcode.generation/unit) value. Ignored if BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. **Parameters:** | Parameter | Type | Description | @@ -490,20 +531,20 @@ Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property ### setBarWidthReduction(Unit value) {#setBarWidthReduction-com.aspose.barcode.generation.Unit-} ``` -public void setBarWidthReduction(Unit value) +public final void setBarWidthReduction(Unit value) ``` -Sets bars reduction value that is used to compensate ink spread while printing. +Sets bars reduction value that is used to compensate ink spread while printing. Default value: 0 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [Unit](../../com.aspose.barcode.generation/unit) | | +| value | [Unit](../../com.aspose.barcode.generation/unit) | bars reduction value that is used to compensate ink spread while printing. | ### setChecksumAlwaysShow(boolean value) {#setChecksumAlwaysShow-boolean-} ``` -public void setChecksumAlwaysShow(boolean value) +public final void setChecksumAlwaysShow(boolean value) ``` @@ -516,7 +557,7 @@ Always display checksum digit in the human readable text for Code128 and GS1Code ### setChecksumEnabled(EnableChecksum value) {#setChecksumEnabled-com.aspose.barcode.generation.EnableChecksum-} ``` -public void setChecksumEnabled(EnableChecksum value) +public final void setChecksumEnabled(EnableChecksum value) ``` @@ -535,7 +576,7 @@ Checksum always used: Rest symbology ### setCodeText(String value) {#setCodeText-java.lang.String-} ``` -public void setCodeText(String value) +public final void setCodeText(String value) ``` @@ -548,14 +589,12 @@ public void setCodeText(String value) ### setEnableEscape(boolean value) {#setEnableEscape-boolean-} ``` -public void setEnableEscape(boolean value) +public final void setEnableEscape(boolean value) ``` Indicates whether explains the character "\\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\\" will be explained as a special escape character. Otherwise, "\\" acts as normal characters. --------------------- - Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \\013 and \\\\CR stands for CR. **Parameters:** @@ -565,7 +604,7 @@ Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII contr ### setFilledBars(boolean value) {#setFilledBars-boolean-} ``` -public void setFilledBars(boolean value) +public final void setFilledBars(boolean value) ``` @@ -574,15 +613,36 @@ Sets a value indicating whether bars filled. Only for 1D barcodes. Default value **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | boolean | | +| value | boolean | a value indicating whether bars filled. | ### setGS1CompositeBar(GS1CompositeBarParameters value) {#setGS1CompositeBar-com.aspose.barcode.generation.GS1CompositeBarParameters-} ``` -public void setGS1CompositeBar(GS1CompositeBarParameters value) +public final void setGS1CompositeBar(GS1CompositeBarParameters value) ``` -GS1 Composite Bar parameters. This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '/' String codetext = "(01)03212345678906/(21)A1B2C3D4E5F6G7H8"; BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS\_1\_COMPOSITE\_BAR, codetext); generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS\_1\_CODE\_128); generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC\_A); // Aspect ratio of 2D component generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); // X-Dimension of 1D and 2D components generator.getParameters().getBarcode().getXDimension().setPixels(3); /// // Height of 1D component generator.getParameters().getBarcode().getBarHeight().setPixels(100); /// generator.save("test.png"); +GS1 Composite Bar parameters. + +This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '|' + +``` + + [C#] + var codetext = "(01)03212345678906|(21)A1B2C3D4E5F6G7H8"; + using (var generator = new BarcodeGenerator(EncodeTypes.GS1CompositeBar, codetext)) + { + generator.Parameters.Barcode.GS1CompositeBar.LinearComponentType = EncodeTypes.GS1Code128; + generator.Parameters.Barcode.GS1CompositeBar.TwoDComponentType = TwoDComponentType.CC_A; + // Aspect ratio of 2D component + generator.Parameters.Barcode.Pdf417.AspectRatio = 3; + // X-Dimension of 1D and 2D components + generator.Parameters.Barcode.XDimension.Pixels = 3; + // Height of 1D component + generator.Parameters.Barcode.BarHeight.Pixels = 100; + generator.Save("test.png"); + } + +``` **Parameters:** | Parameter | Type | Description | @@ -591,11 +651,11 @@ GS1 Composite Bar parameters. This sample shows how to create and save a GS1 Com ### setThrowExceptionWhenCodeTextIncorrect(boolean value) {#setThrowExceptionWhenCodeTextIncorrect-boolean-} ``` -public void setThrowExceptionWhenCodeTextIncorrect(boolean value) +public final void setThrowExceptionWhenCodeTextIncorrect(boolean value) ``` -Only for 1D barcodes. If codetext is incorrect and value set to true - exception will be thrown. Otherwise codetext will be corrected to match barcode's specification. Exception always will be thrown for: Databar symbology if codetext is incorrect. Exception always will not be thrown for: AustraliaPost, SingapurePost, Code39Extended, Code93Extended, Code16K, Code128 symbology if codetext is incorrect. +Only for 1D barcodes. If codetext is incorrect and value set to true - exception will be thrown. Otherwise codetext will be corrected to match barcode's specification. Exception always will be thrown for: Databar symbology if codetext is incorrect. Exception always will not be thrown for: AustraliaPost, SingapurePost, Code39FullASCII, Code93, Code16K, Code128 symbology if codetext is incorrect. **Parameters:** | Parameter | Type | Description | @@ -604,11 +664,11 @@ Only for 1D barcodes. If codetext is incorrect and value set to true - exception ### setWideNarrowRatio(float value) {#setWideNarrowRatio-float-} ``` -public void setWideNarrowRatio(float value) +public final void setWideNarrowRatio(float value) ``` -Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39Extended, Code39Standard +Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39, Code39FullASCII **Parameters:** | Parameter | Type | Description | @@ -617,11 +677,11 @@ Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times ### setXDimension(Unit value) {#setXDimension-com.aspose.barcode.generation.Unit-} ``` -public void setXDimension(Unit value) +public final void setXDimension(Unit value) ``` -x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if BaseGenerationParameters.AutoSizeMode property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. +x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if BaseGenerationParameters.AutoSizeMode ([BaseGenerationParameters.getAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#getAutoSizeMode)/[BaseGenerationParameters.setAutoSizeMode](../../com.aspose.barcode.generation/basegenerationparameters\#setAutoSizeMode)) property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation. **Parameters:** | Parameter | Type | Description | diff --git a/english/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md b/english/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md index 807e73730..68cd23e33 100644 --- a/english/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/barcodeparametersinternal/_index.md @@ -35,6 +35,7 @@ public class BarcodeParametersInternal | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | +| [setBarColor(BarcodeParameters barcodeParameters, int value)](#setBarColor-com.aspose.barcode.generation.BarcodeParameters-int-) | | | [toString()](#toString--) | | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | @@ -246,6 +247,20 @@ public final native void notifyAll() +### setBarColor(BarcodeParameters barcodeParameters, int value) {#setBarColor-com.aspose.barcode.generation.BarcodeParameters-int-} +``` +public static void setBarColor(BarcodeParameters barcodeParameters, int value) +``` + + + + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeParameters | [BarcodeParameters](../../com.aspose.barcode.generation/barcodeparameters) | | +| value | int | | + ### toString() {#toString--} ``` public String toString() diff --git a/english/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md index 6167c3109..6a523c868 100644 --- a/english/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/codabarparameters/_index.md @@ -18,17 +18,23 @@ Codabar parameters. | Method | Description | | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getChecksumMode()](#getChecksumMode--) | Get the checksum algorithm for Codabar barcodes. | | [getClass()](#getClass--) | | -| [getCodabarChecksumMode()](#getCodabarChecksumMode--) | Gets the checksum algorithm for Codabar barcodes. | +| [getCodabarChecksumMode()](#getCodabarChecksumMode--) | Get the checksum algorithm for Codabar barcodes. | | [getCodabarStartSymbol()](#getCodabarStartSymbol--) | Start symbol (character) of Codabar symbology. | | [getCodabarStopSymbol()](#getCodabarStopSymbol--) | Stop symbol (character) of Codabar symbology. | +| [getStartSymbol()](#getStartSymbol--) | Start symbol (character) of Codabar symbology. | +| [getStopSymbol()](#getStopSymbol--) | Stop symbol (character) of Codabar symbology. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [setCodabarChecksumMode(CodabarChecksumMode value)](#setCodabarChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-) | Sets the checksum algorithm for Codabar barcodes. | +| [setChecksumMode(CodabarChecksumMode value)](#setChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-) | Set the checksum algorithm for Codabar barcodes. | +| [setCodabarChecksumMode(CodabarChecksumMode value)](#setCodabarChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-) | Set the checksum algorithm for Codabar barcodes. | | [setCodabarStartSymbol(short value)](#setCodabarStartSymbol-short-) | Start symbol (character) of Codabar symbology. | | [setCodabarStopSymbol(short value)](#setCodabarStopSymbol-short-) | Stop symbol (character) of Codabar symbology. | -| [toString()](#toString--) | Returns a human-readable string representation of this CodabarParameters . | +| [setStartSymbol(short value)](#setStartSymbol-short-) | Start symbol (character) of Codabar symbology. | +| [setStopSymbol(short value)](#setStopSymbol-short-) | Stop symbol (character) of Codabar symbology. | +| [toString()](#toString--) | Returns a human-readable string representation of this [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -47,6 +53,16 @@ public boolean equals(Object arg0) **Returns:** boolean +### getChecksumMode() {#getChecksumMode--} +``` +public final CodabarChecksumMode getChecksumMode() +``` + + +Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Returns:** +[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) - the checksum algorithm for Codabar barcodes. ### getClass() {#getClass--} ``` public final native Class getClass() @@ -59,17 +75,17 @@ public final native Class getClass() java.lang.Class ### getCodabarChecksumMode() {#getCodabarChecksumMode--} ``` -public CodabarChecksumMode getCodabarChecksumMode() +public final CodabarChecksumMode getCodabarChecksumMode() ``` -Gets the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode . +Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). **Returns:** -[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) +[CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) - the checksum algorithm for Codabar barcodes. ### getCodabarStartSymbol() {#getCodabarStartSymbol--} ``` -public short getCodabarStartSymbol() +public final short getCodabarStartSymbol() ``` @@ -79,7 +95,27 @@ Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A short ### getCodabarStopSymbol() {#getCodabarStopSymbol--} ``` -public short getCodabarStopSymbol() +public final short getCodabarStopSymbol() +``` + + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +**Returns:** +short +### getStartSymbol() {#getStartSymbol--} +``` +public final short getStartSymbol() +``` + + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +**Returns:** +short +### getStopSymbol() {#getStopSymbol--} +``` +public final short getStopSymbol() ``` @@ -113,22 +149,35 @@ public final native void notifyAll() +### setChecksumMode(CodabarChecksumMode value) {#setChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-} +``` +public final void setChecksumMode(CodabarChecksumMode value) +``` + + +Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) | the checksum algorithm for Codabar barcodes. | + ### setCodabarChecksumMode(CodabarChecksumMode value) {#setCodabarChecksumMode-com.aspose.barcode.generation.CodabarChecksumMode-} ``` -public void setCodabarChecksumMode(CodabarChecksumMode value) +public final void setCodabarChecksumMode(CodabarChecksumMode value) ``` -Sets the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode . +Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode (\#getChecksumMode.getChecksumMode/\#setChecksumMode.setChecksumMode). **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) | | +| value | [CodabarChecksumMode](../../com.aspose.barcode.generation/codabarchecksummode) | the checksum algorithm for Codabar barcodes. | ### setCodabarStartSymbol(short value) {#setCodabarStartSymbol-short-} ``` -public void setCodabarStartSymbol(short value) +public final void setCodabarStartSymbol(short value) ``` @@ -141,7 +190,33 @@ Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A ### setCodabarStopSymbol(short value) {#setCodabarStopSymbol-short-} ``` -public void setCodabarStopSymbol(short value) +public final void setCodabarStopSymbol(short value) +``` + + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | short | | + +### setStartSymbol(short value) {#setStartSymbol-short-} +``` +public final void setStartSymbol(short value) +``` + + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | short | | + +### setStopSymbol(short value) {#setStopSymbol-short-} +``` +public final void setStopSymbol(short value) ``` @@ -158,10 +233,10 @@ public String toString() ``` -Returns a human-readable string representation of this CodabarParameters . +Returns a human-readable string representation of this [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). **Returns:** -java.lang.String - A string that represents this CodabarParameters . +java.lang.String - A string that represents this [CodabarParameters](../../com.aspose.barcode.generation/codabarparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/code128parameters/_index.md b/english/androidjava/com.aspose.barcode.generation/code128parameters/_index.md index f37fcca14..68a065855 100644 --- a/english/androidjava/com.aspose.barcode.generation/code128parameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/code128parameters/_index.md @@ -19,12 +19,14 @@ Code128 parameters. | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | -| [getCode128EncodeMode()](#getCode128EncodeMode--) | Gets or sets a Code128 encode mode. | +| [getCode128EncodeMode()](#getCode128EncodeMode--) | Gets a Code128 encode mode. | +| [getEncodeMode()](#getEncodeMode--) | Gets a Code128 encode mode. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [setCode128EncodeMode(Code128EncodeMode value)](#setCode128EncodeMode-com.aspose.barcode.generation.Code128EncodeMode-) | Gets or sets a Code128 encode mode. | -| [toString()](#toString--) | Returns a human-readable string representation of this Code128Parameters . | +| [setCode128EncodeMode(Code128EncodeMode value)](#setCode128EncodeMode-com.aspose.barcode.generation.Code128EncodeMode-) | Sets a Code128 encode mode. | +| [setEncodeMode(Code128EncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.Code128EncodeMode-) | Sets a Code128 encode mode. | +| [toString()](#toString--) | Returns a human-readable string representation of this [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -55,14 +57,24 @@ public final native Class getClass() java.lang.Class ### getCode128EncodeMode() {#getCode128EncodeMode--} ``` -public Code128EncodeMode getCode128EncodeMode() +public final Code128EncodeMode getCode128EncodeMode() ``` -Gets or sets a Code128 encode mode. Default value: Code128EncodeMode.Auto +Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto **Returns:** -[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) - a Code128 encode mode. +### getEncodeMode() {#getEncodeMode--} +``` +public final Code128EncodeMode getEncodeMode() +``` + + +Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +**Returns:** +[Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) - a Code128 encode mode. ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -91,16 +103,29 @@ public final native void notifyAll() ### setCode128EncodeMode(Code128EncodeMode value) {#setCode128EncodeMode-com.aspose.barcode.generation.Code128EncodeMode-} ``` -public void setCode128EncodeMode(Code128EncodeMode value) +public final void setCode128EncodeMode(Code128EncodeMode value) +``` + + +Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) | a Code128 encode mode. | + +### setEncodeMode(Code128EncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.Code128EncodeMode-} +``` +public final void setEncodeMode(Code128EncodeMode value) ``` -Gets or sets a Code128 encode mode. Default value: Code128EncodeMode.Auto +Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) | | +| value | [Code128EncodeMode](../../com.aspose.barcode.generation/code128encodemode) | a Code128 encode mode. | ### toString() {#toString--} ``` @@ -108,10 +133,10 @@ public String toString() ``` -Returns a human-readable string representation of this Code128Parameters . +Returns a human-readable string representation of this [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). **Returns:** -java.lang.String - A string that represents this Code128Parameters . +java.lang.String - A string that represents this [Code128Parameters](../../com.aspose.barcode.generation/code128parameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md b/english/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md index 2995b4573..74a466753 100644 --- a/english/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/datamatrixencodemode/_index.md @@ -28,20 +28,20 @@ DataMatrix encoder's encoding mode, default to Auto > byte[] encodedArr = { (byte)0xFF, (byte)0xFE, (byte)0xFD, (byte)0xFC, (byte)0xFB, (byte)0xFA, (byte)0xF9 }; > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); > generator.setCodetext(encodedArr); -> generator.getParameters().getBarcode().getDataMatrix().setDataMatrixEncodeMode(DataMatrixEncodeMode.BINARY); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.BINARY); > generator.save("test.bmp"); > //Extended codetext mode > //create codetext > DataMatrixExtCodetextBuilder codetextBuilder=new DataMatrixExtCodetextBuilder(); -> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251,DataMatrixEncodeMode.BYTES,"World"); +> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251,EncodeMode.BYTES,"World"); > codetextBuilder.addPlainCodetext("Will"); > codetextBuilder.addECICodetext(ECIEncodings.UTF8,"\u72acRight\u72d7"); -> codetextBuilder.addCodetextWithEncodeMode(DataMatrixEncodeMode.C40,"ABCDE"); +> codetextBuilder.addCodetextWithEncodeMode(EncodeMode.C40,"ABCDE"); > //generate codetext > String codetext=codetextBuilder.getExtended(); > //generate > BarcodeGenerator generator=new BarcodeGenerator(EncodeTypes.DATA_MATRIX,codetext); -> generator.getParameters().getBarcode().getDataMatrix().setDataMatrixEncodeMode(DataMatrixEncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.EXTENDED_CODETEXT); > generator.save("test.bmp"); > ``` ## Fields diff --git a/english/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md b/english/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md index 5620d9649..303d0fb33 100644 --- a/english/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/datamatrixextcodetextbuilder/_index.md @@ -12,7 +12,7 @@ java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.a public class DataMatrixExtCodetextBuilder extends ExtCodetextBuilder ``` -Extended codetext generator for 2D DataMatrix barcodes for ExtendedCodetext Mode of DataMatrixEncodeMode +Extended codetext generator for 2D DataMatrix barcodes for ExtendedCodetext Mode of EncodeMode -------------------- @@ -20,15 +20,15 @@ Extended codetext generator for 2D DataMatrix barcodes for ExtendedCodetext Mode > //Extended codetext mode > //create codetext > DataMatrixExtCodetextBuilder textBuilder = new DataMatrixExtCodetextBuilder(); -> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251, DataMatrixEncodeMode.BYTES, "World"); +> codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251, EncodeMode.BYTES, "World"); > codetextBuilder.addPlainCodetext("Will"); > codetextBuilder.addECICodetext(ECIEncodings.UTF8, "\u72acRight\u72d7"); -> codetextBuilder.addCodetextWithEncodeMode(DataMatrixEncodeMode.C40, "ABCDE"); +> codetextBuilder.addCodetextWithEncodeMode(EncodeMode.C40, "ABCDE"); > //generate codetext > String codetext = textBuilder.getExtendedCodetext(); > //generate > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, codetext); -> generator.getParameters().getBarcode().getDataMatrix().setDataMatrixEncodeMode(DataMatrixEncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getDataMatrix().setEncodeMode(EncodeMode.EXTENDED_CODETEXT); > generator.save("test.bmp"); > ``` ## Constructors diff --git a/english/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md index 65cf2f9d6..e9084fa63 100644 --- a/english/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/datamatrixparameters/_index.md @@ -23,13 +23,16 @@ DataMatrix parameters. | [getColumns()](#getColumns--) | Columns count. | | [getDataMatrixEcc()](#getDataMatrixEcc--) | Gets a Datamatrix ECC type. | | [getDataMatrixEncodeMode()](#getDataMatrixEncodeMode--) | Encode mode of Datamatrix barcode. | -| [getDataMatrixVersion()](#getDataMatrixVersion--) | Gets or sets a Datamatrix symbol size. | -| [getECIEncoding()](#getECIEncoding--) | Gets or sets ECI encoding. | -| [getMacroCharacters()](#getMacroCharacters--) | ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | +| [getDataMatrixVersion()](#getDataMatrixVersion--) | Gets a Datamatrix symbol size. | +| [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEccType()](#getEccType--) | Gets a Datamatrix ECC type. | +| [getEncodeMode()](#getEncodeMode--) | Encode mode of Datamatrix barcode. | +| [getMacroCharacters()](#getMacroCharacters--) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | | [getRows()](#getRows--) | Rows count. | | [getStructuredAppendBarcodeId()](#getStructuredAppendBarcodeId--) | Barcode ID for Structured Append mode of Datamatrix barcode. | | [getStructuredAppendBarcodesCount()](#getStructuredAppendBarcodesCount--) | Barcodes count for Structured Append mode of Datamatrix barcode. | | [getStructuredAppendFileId()](#getStructuredAppendFileId--) | File ID for Structured Append mode of Datamatrix barcode. | +| [getVersion()](#getVersion--) | Gets a Datamatrix symbol size. | | [hashCode()](#hashCode--) | | | [isReaderProgramming()](#isReaderProgramming--) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | | [notify()](#notify--) | | @@ -38,15 +41,18 @@ DataMatrix parameters. | [setColumns(int value)](#setColumns-int-) | Columns count. | | [setDataMatrixEcc(DataMatrixEccType value)](#setDataMatrixEcc-com.aspose.barcode.generation.DataMatrixEccType-) | Sets a Datamatrix ECC type. | | [setDataMatrixEncodeMode(DataMatrixEncodeMode value)](#setDataMatrixEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-) | Encode mode of Datamatrix barcode. | -| [setDataMatrixVersion(DataMatrixVersion value)](#setDataMatrixVersion-com.aspose.barcode.generation.DataMatrixVersion-) | Gets or sets a Datamatrix symbol size. | -| [setECIEncoding(int value)](#setECIEncoding-int-) | Gets or sets ECI encoding. | -| [setMacroCharacters(MacroCharacter value)](#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-) | ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | +| [setDataMatrixVersion(DataMatrixVersion value)](#setDataMatrixVersion-com.aspose.barcode.generation.DataMatrixVersion-) | Sets a Datamatrix symbol size. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEccType(DataMatrixEccType value)](#setEccType-com.aspose.barcode.generation.DataMatrixEccType-) | Sets a Datamatrix ECC type. | +| [setEncodeMode(DataMatrixEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-) | Encode mode of Datamatrix barcode. | +| [setMacroCharacters(MacroCharacter value)](#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | | [setReaderProgramming(boolean value)](#setReaderProgramming-boolean-) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | | [setRows(int value)](#setRows-int-) | Rows count. | | [setStructuredAppendBarcodeId(int value)](#setStructuredAppendBarcodeId-int-) | Barcode ID for Structured Append mode of Datamatrix barcode. | | [setStructuredAppendBarcodesCount(int value)](#setStructuredAppendBarcodesCount-int-) | Barcodes count for Structured Append mode of Datamatrix barcode. | | [setStructuredAppendFileId(int value)](#setStructuredAppendFileId-int-) | File ID for Structured Append mode of Datamatrix barcode. | -| [toString()](#toString--) | Returns a human-readable string representation of this DataMatrixParameters . | +| [setVersion(DataMatrixVersion value)](#setVersion-com.aspose.barcode.generation.DataMatrixVersion-) | Sets a Datamatrix symbol size. | +| [toString()](#toString--) | Returns a human-readable string representation of this [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -67,7 +73,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -87,7 +93,7 @@ public final native Class getClass() java.lang.Class ### getColumns() {#getColumns--} ``` -public int getColumns() +public final int getColumns() ``` @@ -97,57 +103,77 @@ Columns count. int ### getDataMatrixEcc() {#getDataMatrixEcc--} ``` -public DataMatrixEccType getDataMatrixEcc() +public final DataMatrixEccType getDataMatrixEcc() ``` Gets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. **Returns:** -[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) +[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) - a Datamatrix ECC type. ### getDataMatrixEncodeMode() {#getDataMatrixEncodeMode--} ``` -public DataMatrixEncodeMode getDataMatrixEncodeMode() +public final DataMatrixEncodeMode getDataMatrixEncodeMode() ``` -Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. **Returns:** [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) ### getDataMatrixVersion() {#getDataMatrixVersion--} ``` -public DataMatrixVersion getDataMatrixVersion() +public final DataMatrixVersion getDataMatrixVersion() ``` -Gets or sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. +Gets a Datamatrix symbol size. Default value: Version.Auto. **Returns:** -[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) +[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) - a Datamatrix symbol size. ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets or sets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1 +Gets ECI encoding. Used when EncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int +int - ECI encoding. +### getEccType() {#getEccType--} +``` +public final DataMatrixEccType getEccType() +``` + + +Gets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. + +**Returns:** +[DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) - a Datamatrix ECC type. +### getEncodeMode() {#getEncodeMode--} +``` +public final DataMatrixEncodeMode getEncodeMode() +``` + + +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. + +**Returns:** +[DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) ### getMacroCharacters() {#getMacroCharacters--} ``` -public MacroCharacter getMacroCharacters() +public final MacroCharacter getMacroCharacters() ``` -ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC\_200 or DataMatrixEccType.ECC\_AUTO. Cannot be used with EncodeTypes.GS\_1\_DATA\_MATRIX Default value: MacroCharacter.NONE. +Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None. **Returns:** [MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) ### getRows() {#getRows--} ``` -public int getRows() +public final int getRows() ``` @@ -157,7 +183,7 @@ Rows count. int ### getStructuredAppendBarcodeId() {#getStructuredAppendBarcodeId--} ``` -public int getStructuredAppendBarcodeId() +public final int getStructuredAppendBarcodeId() ``` @@ -167,7 +193,7 @@ Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0 int ### getStructuredAppendBarcodesCount() {#getStructuredAppendBarcodesCount--} ``` -public int getStructuredAppendBarcodesCount() +public final int getStructuredAppendBarcodesCount() ``` @@ -177,7 +203,7 @@ Barcodes count for Structured Append mode of Datamatrix barcode. Default value: int ### getStructuredAppendFileId() {#getStructuredAppendFileId--} ``` -public int getStructuredAppendFileId() +public final int getStructuredAppendFileId() ``` @@ -185,6 +211,16 @@ File ID for Structured Append mode of Datamatrix barcode. Default value: 0 **Returns:** int +### getVersion() {#getVersion--} +``` +public final DataMatrixVersion getVersion() +``` + + +Gets a Datamatrix symbol size. Default value: Version.Auto. + +**Returns:** +[DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) - a Datamatrix symbol size. ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -197,7 +233,7 @@ public native int hashCode() int ### isReaderProgramming() {#isReaderProgramming--} ``` -public boolean isReaderProgramming() +public final boolean isReaderProgramming() ``` @@ -223,7 +259,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -236,7 +272,7 @@ Height/Width ratio of 2D BarCode module. ### setColumns(int value) {#setColumns-int-} ``` -public void setColumns(int value) +public final void setColumns(int value) ``` @@ -249,7 +285,7 @@ Columns count. ### setDataMatrixEcc(DataMatrixEccType value) {#setDataMatrixEcc-com.aspose.barcode.generation.DataMatrixEccType-} ``` -public void setDataMatrixEcc(DataMatrixEccType value) +public final void setDataMatrixEcc(DataMatrixEccType value) ``` @@ -258,15 +294,15 @@ Sets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) | | +| value | [DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) | a Datamatrix ECC type. | ### setDataMatrixEncodeMode(DataMatrixEncodeMode value) {#setDataMatrixEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-} ``` -public void setDataMatrixEncodeMode(DataMatrixEncodeMode value) +public final void setDataMatrixEncodeMode(DataMatrixEncodeMode value) ``` -Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. **Parameters:** | Parameter | Type | Description | @@ -275,37 +311,63 @@ Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. ### setDataMatrixVersion(DataMatrixVersion value) {#setDataMatrixVersion-com.aspose.barcode.generation.DataMatrixVersion-} ``` -public void setDataMatrixVersion(DataMatrixVersion value) +public final void setDataMatrixVersion(DataMatrixVersion value) ``` -Gets or sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. +Sets a Datamatrix symbol size. Default value: Version.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) | | +| value | [DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) | a Datamatrix symbol size. | ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` -Gets or sets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1 +Sets ECI encoding. Used when EncodeMode is Auto. Default value: ISO-8859-1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | int | ECI encoding. | + +### setEccType(DataMatrixEccType value) {#setEccType-com.aspose.barcode.generation.DataMatrixEccType-} +``` +public final void setEccType(DataMatrixEccType value) +``` + + +Sets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEccType](../../com.aspose.barcode.generation/datamatrixecctype) | a Datamatrix ECC type. | + +### setEncodeMode(DataMatrixEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.DataMatrixEncodeMode-} +``` +public final void setEncodeMode(DataMatrixEncodeMode value) +``` + + +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [DataMatrixEncodeMode](../../com.aspose.barcode.generation/datamatrixencodemode) | | ### setMacroCharacters(MacroCharacter value) {#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-} ``` -public void setMacroCharacters(MacroCharacter value) +public final void setMacroCharacters(MacroCharacter value) ``` -ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC\_200 or DataMatrixEccType.ECC\_AUTO. Cannot be used with EncodeTypes.GS\_1\_DATA\_MATRIX Default value: MacroCharacter.NONE. +Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.Ecc200 or DataMatrixEccType.EccAuto. Cannot be used with EncodeTypes.GS1DataMatrix Default value: MacroCharacters.None. **Parameters:** | Parameter | Type | Description | @@ -314,7 +376,7 @@ ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the ### setReaderProgramming(boolean value) {#setReaderProgramming-boolean-} ``` -public void setReaderProgramming(boolean value) +public final void setReaderProgramming(boolean value) ``` @@ -327,7 +389,7 @@ Used to instruct the reader to interpret the data contained within the symbol as ### setRows(int value) {#setRows-int-} ``` -public void setRows(int value) +public final void setRows(int value) ``` @@ -340,7 +402,7 @@ Rows count. ### setStructuredAppendBarcodeId(int value) {#setStructuredAppendBarcodeId-int-} ``` -public void setStructuredAppendBarcodeId(int value) +public final void setStructuredAppendBarcodeId(int value) ``` @@ -353,7 +415,7 @@ Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0 ### setStructuredAppendBarcodesCount(int value) {#setStructuredAppendBarcodesCount-int-} ``` -public void setStructuredAppendBarcodesCount(int value) +public final void setStructuredAppendBarcodesCount(int value) ``` @@ -366,7 +428,7 @@ Barcodes count for Structured Append mode of Datamatrix barcode. Default value: ### setStructuredAppendFileId(int value) {#setStructuredAppendFileId-int-} ``` -public void setStructuredAppendFileId(int value) +public final void setStructuredAppendFileId(int value) ``` @@ -377,16 +439,29 @@ File ID for Structured Append mode of Datamatrix barcode. Default value: 0 | --- | --- | --- | | value | int | | +### setVersion(DataMatrixVersion value) {#setVersion-com.aspose.barcode.generation.DataMatrixVersion-} +``` +public final void setVersion(DataMatrixVersion value) +``` + + +Sets a Datamatrix symbol size. Default value: Version.Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [DataMatrixVersion](../../com.aspose.barcode.generation/datamatrixversion) | a Datamatrix symbol size. | + ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this DataMatrixParameters . +Returns a human-readable string representation of this [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). **Returns:** -java.lang.String - A string that represents this DataMatrixParameters . +java.lang.String - A string that represents this [DataMatrixParameters](../../com.aspose.barcode.generation/datamatrixparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md index e4a89d729..fda70002f 100644 --- a/english/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/dotcodeparameters/_index.md @@ -25,7 +25,10 @@ DotCode parameters. | [getDotCodeStructuredAppendModeBarcodeId()](#getDotCodeStructuredAppendModeBarcodeId--) | Identifies the ID of the DotCode structured append mode barcode. | | [getDotCodeStructuredAppendModeBarcodesCount()](#getDotCodeStructuredAppendModeBarcodesCount--) | Identifies DotCode structured append mode barcodes count. | | [getECIEncoding()](#getECIEncoding--) | Identifies ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Identifies DotCode encode mode. | | [getRows()](#getRows--) | Identifies rows count. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Identifies the ID of the DotCode structured append mode barcode. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Identifies DotCode structured append mode barcodes count. | | [hashCode()](#hashCode--) | | | [isReaderInitialization()](#isReaderInitialization--) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | | [notify()](#notify--) | | @@ -36,9 +39,12 @@ DotCode parameters. | [setDotCodeStructuredAppendModeBarcodeId(int value)](#setDotCodeStructuredAppendModeBarcodeId-int-) | Identifies the ID of the DotCode structured append mode barcode. | | [setDotCodeStructuredAppendModeBarcodesCount(int value)](#setDotCodeStructuredAppendModeBarcodesCount-int-) | Identifies DotCode structured append mode barcodes count. | | [setECIEncoding(int value)](#setECIEncoding-int-) | Identifies ECI encoding. | +| [setEncodeMode(DotCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-) | Identifies DotCode encode mode. | | [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | | [setRows(int value)](#setRows-int-) | Identifies rows count. | -| [toString()](#toString--) | Returns a human-readable string representation of this DotCodeParameters . | +| [setStructuredAppendModeBarcodeId(int value)](#setStructuredAppendModeBarcodeId-int-) | Identifies the ID of the DotCode structured append mode barcode. | +| [setStructuredAppendModeBarcodesCount(int value)](#setStructuredAppendModeBarcodesCount-int-) | Identifies DotCode structured append mode barcodes count. | +| [toString()](#toString--) | Returns a human-readable string representation of this [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -59,7 +65,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -79,7 +85,7 @@ public final native Class getClass() java.lang.Class ### getColumns() {#getColumns--} ``` -public int getColumns() +public final int getColumns() ``` @@ -89,7 +95,7 @@ Identifies columns count. Sum of the number of rows plus the number of columns o int ### getDotCodeEncodeMode() {#getDotCodeEncodeMode--} ``` -public DotCodeEncodeMode getDotCodeEncodeMode() +public final DotCodeEncodeMode getDotCodeEncodeMode() ``` @@ -99,7 +105,7 @@ Identifies DotCode encode mode. Default value: Auto. [DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) ### getDotCodeStructuredAppendModeBarcodeId() {#getDotCodeStructuredAppendModeBarcodeId--} ``` -public int getDotCodeStructuredAppendModeBarcodeId() +public final int getDotCodeStructuredAppendModeBarcodeId() ``` @@ -109,7 +115,7 @@ Identifies the ID of the DotCode structured append mode barcode. ID starts from int ### getDotCodeStructuredAppendModeBarcodesCount() {#getDotCodeStructuredAppendModeBarcodesCount--} ``` -public int getDotCodeStructuredAppendModeBarcodesCount() +public final int getDotCodeStructuredAppendModeBarcodesCount() ``` @@ -119,7 +125,7 @@ Identifies DotCode structured append mode barcodes count. Default value is -1. C int ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` @@ -127,14 +133,44 @@ Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO **Returns:** int +### getEncodeMode() {#getEncodeMode--} +``` +public final DotCodeEncodeMode getEncodeMode() +``` + + +Identifies DotCode encode mode. Default value: Auto. + +**Returns:** +[DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) ### getRows() {#getRows--} ``` -public int getRows() +public final int getRows() ``` Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. Default value: -1 +**Returns:** +int +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +**Returns:** +int +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + **Returns:** int ### hashCode() {#hashCode--} @@ -149,7 +185,7 @@ public native int hashCode() int ### isReaderInitialization() {#isReaderInitialization--} ``` -public boolean isReaderInitialization() +public final boolean isReaderInitialization() ``` @@ -175,7 +211,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -188,7 +224,7 @@ Height/Width ratio of 2D BarCode module. ### setColumns(int value) {#setColumns-int-} ``` -public void setColumns(int value) +public final void setColumns(int value) ``` @@ -201,7 +237,7 @@ Identifies columns count. Sum of the number of rows plus the number of columns o ### setDotCodeEncodeMode(DotCodeEncodeMode value) {#setDotCodeEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-} ``` -public void setDotCodeEncodeMode(DotCodeEncodeMode value) +public final void setDotCodeEncodeMode(DotCodeEncodeMode value) ``` @@ -214,7 +250,7 @@ Identifies DotCode encode mode. Default value: Auto. ### setDotCodeStructuredAppendModeBarcodeId(int value) {#setDotCodeStructuredAppendModeBarcodeId-int-} ``` -public void setDotCodeStructuredAppendModeBarcodeId(int value) +public final void setDotCodeStructuredAppendModeBarcodeId(int value) ``` @@ -227,7 +263,7 @@ Identifies the ID of the DotCode structured append mode barcode. ID starts from ### setDotCodeStructuredAppendModeBarcodesCount(int value) {#setDotCodeStructuredAppendModeBarcodesCount-int-} ``` -public void setDotCodeStructuredAppendModeBarcodesCount(int value) +public final void setDotCodeStructuredAppendModeBarcodesCount(int value) ``` @@ -240,7 +276,7 @@ Identifies DotCode structured append mode barcodes count. Default value is -1. C ### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setECIEncoding(int value) +public final void setECIEncoding(int value) ``` @@ -251,9 +287,22 @@ Identifies ECI encoding. Used when DotCodeEncodeMode is Auto. Default value: ISO | --- | --- | --- | | value | int | | +### setEncodeMode(DotCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.DotCodeEncodeMode-} +``` +public final void setEncodeMode(DotCodeEncodeMode value) +``` + + +Identifies DotCode encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [DotCodeEncodeMode](../../com.aspose.barcode.generation/dotcodeencodemode) | | + ### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} ``` -public void setReaderInitialization(boolean value) +public final void setReaderInitialization(boolean value) ``` @@ -266,7 +315,7 @@ Indicates whether code is used for instruct reader to interpret the following da ### setRows(int value) {#setRows-int-} ``` -public void setRows(int value) +public final void setRows(int value) ``` @@ -277,16 +326,42 @@ Identifies rows count. Sum of the number of rows plus the number of columns of a | --- | --- | --- | | value | int | | +### setStructuredAppendModeBarcodeId(int value) {#setStructuredAppendModeBarcodeId-int-} +``` +public final void setStructuredAppendModeBarcodeId(int value) +``` + + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setStructuredAppendModeBarcodesCount(int value) {#setStructuredAppendModeBarcodesCount-int-} +``` +public final void setStructuredAppendModeBarcodesCount(int value) +``` + + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + ### toString() {#toString--} ``` public String toString() ``` -Returns a human-readable string representation of this DotCodeParameters . +Returns a human-readable string representation of this [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). **Returns:** -java.lang.String - A string that represents this DotCodeParameters . +java.lang.String - A string that represents this [DotCodeParameters](../../com.aspose.barcode.generation/dotcodeparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/eciencodings/_index.md b/english/androidjava/com.aspose.barcode.generation/eciencodings/_index.md index 920024577..5e40489b7 100644 --- a/english/androidjava/com.aspose.barcode.generation/eciencodings/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/eciencodings/_index.md @@ -21,7 +21,7 @@ Extended Channel Interpretation Identifiers. It is used to tell the barcode read > > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); > generator.setCodeText("12345TEXT"); -> generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ECIEncoding); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ECIEncoding); > generator.getParameters().getBarcode().getQR().setQrECIEncoding(ECIEncodings.UTF8); > generator.save("test.png"); > ``` diff --git a/english/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md b/english/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md index a17ba8ebb..c0806450c 100644 --- a/english/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/hanxinencodemode/_index.md @@ -40,7 +40,7 @@ Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese c > // URI mode > String codetext = "https://www.test.com/%BC%DE%%%ab/search=test"; > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HAN_XIN, codetext); -> generator.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.URI); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.URI); > generator.save("test.bmp"); > > @@ -51,7 +51,7 @@ Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese c > String expectedStr = "\u6f04\u3401\u5168\u8785123qwe\u0131nt\u0259\u02c8næ\u0283\u0259n\u0259l\u0391\u0392\u0393\u0394\u0395abcabcbackslashes_should_be_doubled\\000555:test"; > > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HanXin, str); -> generator.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.EXTENDED); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); > generator.save("test.bmp"); > > // Using HanXinExtCodetextBuilder for Extended mode (same codetext as in previous example) @@ -76,7 +76,7 @@ Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese c > > //generate > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.HanXin, str); -> generator.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.EXTENDED); +> generator.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); > generator.save("test.bmp"); > ``` ## Fields diff --git a/english/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md b/english/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md index 60c9e896f..6656980d9 100644 --- a/english/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/hanxinextcodetextbuilder/_index.md @@ -36,9 +36,9 @@ Extended codetext generator for Han Xin Code for Extended Mode of HanXinEncodeMo > //generate codetext > String str = codeTextBuilder.getExtendedCodetext(); > //generate -> BarcodeGenerator bg = new BarcodeGenerator(EncodeTypes.HanXin, str); -> bg.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.EXTENDED); -> Bitmap img = bg.generateBarCodeImage(); +> BarcodeGenerator bg = new BarcodeGenerator(EncodeTypes.HAN_XIN, str); +> bg.getParameters().getBarcode().getHanXin().setEncodeMode(EncodeMode.EXTENDED); +> BufferedImage img = bg.generateBarCodeImage(); > BarCodeReader r = new BarCodeReader(img, DecodeType.HAN_XIN)) > BarcodeResult[] found = r.readBarCodes(); > Assert.assertEquals(1, found.length); diff --git a/english/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md index 1a6e03a89..053374278 100644 --- a/english/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/hanxinparameters/_index.md @@ -19,18 +19,22 @@ Han Xin parameters. | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Extended Channel Interpretation Identifiers. | +| [getEncodeMode()](#getEncodeMode--) | HanXin encoding mode. | +| [getErrorLevel()](#getErrorLevel--) | Level of Reed-Solomon error correction for Han Xin barcode. | | [getHanXinECIEncoding()](#getHanXinECIEncoding--) | Extended Channel Interpretation Identifiers. | | [getHanXinEncodeMode()](#getHanXinEncodeMode--) | HanXin encoding mode. | | [getHanXinErrorLevel()](#getHanXinErrorLevel--) | Level of Reed-Solomon error correction for Han Xin barcode. | | [getHanXinVersion()](#getHanXinVersion--) | Version of HanXin Code. | +| [getVersion()](#getVersion--) | Version of HanXin Code. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | -| [setHanXinECIEncoding(int value)](#setHanXinECIEncoding-int-) | Extended Channel Interpretation Identifiers. | -| [setHanXinEncodeMode(HanXinEncodeMode value)](#setHanXinEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-) | HanXin encoding mode. | -| [setHanXinErrorLevel(HanXinErrorLevel value)](#setHanXinErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-) | Level of Reed-Solomon error correction for Han Xin barcode. | -| [setHanXinVersion(HanXinVersion value)](#setHanXinVersion-com.aspose.barcode.generation.HanXinVersion-) | Version of HanXin Code. | -| [toString()](#toString--) | Returns a human-readable string representation of this HanXinParameters . | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Extended Channel Interpretation Identifiers. | +| [setEncodeMode(HanXinEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-) | HanXin encoding mode. | +| [setErrorLevel(HanXinErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-) | Level of Reed-Solomon error correction for Han Xin barcode. | +| [setVersion(HanXinVersion value)](#setVersion-com.aspose.barcode.generation.HanXinVersion-) | Version of HanXin Code. | +| [toString()](#toString--) | Returns a human-readable string representation of this [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -59,43 +63,83 @@ public final native Class getClass() **Returns:** java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final HanXinEncodeMode getEncodeMode() +``` + + +HanXin encoding mode. Default value: EncodeMode.Mixed. + +**Returns:** +[HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final HanXinErrorLevel getErrorLevel() +``` + + +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. + +**Returns:** +[HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) ### getHanXinECIEncoding() {#getHanXinECIEncoding--} ``` -public int getHanXinECIEncoding() +public final int getHanXinECIEncoding() ``` -Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. **Returns:** int ### getHanXinEncodeMode() {#getHanXinEncodeMode--} ``` -public HanXinEncodeMode getHanXinEncodeMode() +public final HanXinEncodeMode getHanXinEncodeMode() ``` -HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. +HanXin encoding mode. Default value: EncodeMode.Mixed. **Returns:** [HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) ### getHanXinErrorLevel() {#getHanXinErrorLevel--} ``` -public HanXinErrorLevel getHanXinErrorLevel() +public final HanXinErrorLevel getHanXinErrorLevel() ``` -Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. **Returns:** [HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) ### getHanXinVersion() {#getHanXinVersion--} ``` -public HanXinVersion getHanXinVersion() +public final HanXinVersion getHanXinVersion() +``` + + +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. + +**Returns:** +[HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) +### getVersion() {#getVersion--} +``` +public final HanXinVersion getVersion() ``` -Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. **Returns:** [HanXinVersion](../../com.aspose.barcode.generation/hanxinversion) @@ -125,52 +169,52 @@ public final native void notifyAll() -### setHanXinECIEncoding(int value) {#setHanXinECIEncoding-int-} +### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setHanXinECIEncoding(int value) +public final void setECIEncoding(int value) ``` -Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | | value | int | | -### setHanXinEncodeMode(HanXinEncodeMode value) {#setHanXinEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-} +### setEncodeMode(HanXinEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.HanXinEncodeMode-} ``` -public void setHanXinEncodeMode(HanXinEncodeMode value) +public final void setEncodeMode(HanXinEncodeMode value) ``` -HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. +HanXin encoding mode. Default value: EncodeMode.Mixed. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | | value | [HanXinEncodeMode](../../com.aspose.barcode.generation/hanxinencodemode) | | -### setHanXinErrorLevel(HanXinErrorLevel value) {#setHanXinErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-} +### setErrorLevel(HanXinErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.HanXinErrorLevel-} ``` -public void setHanXinErrorLevel(HanXinErrorLevel value) +public final void setErrorLevel(HanXinErrorLevel value) ``` -Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | | value | [HanXinErrorLevel](../../com.aspose.barcode.generation/hanxinerrorlevel) | | -### setHanXinVersion(HanXinVersion value) {#setHanXinVersion-com.aspose.barcode.generation.HanXinVersion-} +### setVersion(HanXinVersion value) {#setVersion-com.aspose.barcode.generation.HanXinVersion-} ``` -public void setHanXinVersion(HanXinVersion value) +public final void setVersion(HanXinVersion value) ``` -Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. **Parameters:** | Parameter | Type | Description | @@ -183,10 +227,10 @@ public String toString() ``` -Returns a human-readable string representation of this HanXinParameters . +Returns a human-readable string representation of this [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). **Returns:** -java.lang.String - A string that represents this HanXinParameters . +java.lang.String - A string that represents this [HanXinParameters](../../com.aspose.barcode.generation/hanxinparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/itfparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/itfparameters/_index.md index d12c73be7..0cc314402 100644 --- a/english/androidjava/com.aspose.barcode.generation/itfparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/itfparameters/_index.md @@ -18,6 +18,8 @@ ITF parameters. | Method | Description | | --- | --- | | [equals(Object arg0)](#equals-java.lang.Object-) | | +| [getBorderThickness()](#getBorderThickness--) | Gets an ITF border (bearer bar) thickness in Unit value. | +| [getBorderType()](#getBorderType--) | Border type of ITF barcode. | | [getClass()](#getClass--) | | | [getItfBorderThickness()](#getItfBorderThickness--) | Gets an ITF border (bearer bar) thickness in Unit value. | | [getItfBorderType()](#getItfBorderType--) | Border type of ITF barcode. | @@ -25,10 +27,12 @@ ITF parameters. | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | +| [setBorderThickness(Unit value)](#setBorderThickness-com.aspose.barcode.generation.Unit-) | Sets an ITF border (bearer bar) thickness in Unit value. | +| [setBorderType(ITF14BorderType value)](#setBorderType-com.aspose.barcode.generation.ITF14BorderType-) | Border type of ITF barcode. | | [setItfBorderThickness(Unit value)](#setItfBorderThickness-com.aspose.barcode.generation.Unit-) | Sets an ITF border (bearer bar) thickness in Unit value. | | [setItfBorderType(ITF14BorderType value)](#setItfBorderType-com.aspose.barcode.generation.ITF14BorderType-) | Border type of ITF barcode. | | [setQuietZoneCoef(int value)](#setQuietZoneCoef-int-) | Size of the quiet zones in xDimension. | -| [toString()](#toString--) | Returns a human-readable string representation of this ITFParameters . | +| [toString()](#toString--) | Returns a human-readable string representation of this [ITFParameters](../../com.aspose.barcode.generation/itfparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -47,6 +51,26 @@ public boolean equals(Object arg0) **Returns:** boolean +### getBorderThickness() {#getBorderThickness--} +``` +public final Unit getBorderThickness() +``` + + +Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) - an ITF border (bearer bar) thickness in Unit value. +### getBorderType() {#getBorderType--} +``` +public final ITF14BorderType getBorderType() +``` + + +Border type of ITF barcode. Default value: ITF14BorderType.Bar. + +**Returns:** +[ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) ### getClass() {#getClass--} ``` public final native Class getClass() @@ -59,27 +83,27 @@ public final native Class getClass() java.lang.Class ### getItfBorderThickness() {#getItfBorderThickness--} ``` -public Unit getItfBorderThickness() +public final Unit getItfBorderThickness() ``` Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. **Returns:** -[Unit](../../com.aspose.barcode.generation/unit) +[Unit](../../com.aspose.barcode.generation/unit) - an ITF border (bearer bar) thickness in Unit value. ### getItfBorderType() {#getItfBorderType--} ``` -public ITF14BorderType getItfBorderType() +public final ITF14BorderType getItfBorderType() ``` -Border type of ITF barcode. Default value: ITF14BorderType.BAR. +Border type of ITF barcode. Default value: ITF14BorderType.Bar. **Returns:** [ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) ### getQuietZoneCoef() {#getQuietZoneCoef--} ``` -public int getQuietZoneCoef() +public final int getQuietZoneCoef() ``` @@ -113,9 +137,35 @@ public final native void notifyAll() +### setBorderThickness(Unit value) {#setBorderThickness-com.aspose.barcode.generation.Unit-} +``` +public final void setBorderThickness(Unit value) +``` + + +Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | an ITF border (bearer bar) thickness in Unit value. | + +### setBorderType(ITF14BorderType value) {#setBorderType-com.aspose.barcode.generation.ITF14BorderType-} +``` +public final void setBorderType(ITF14BorderType value) +``` + + +Border type of ITF barcode. Default value: ITF14BorderType.Bar. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [ITF14BorderType](../../com.aspose.barcode.generation/itf14bordertype) | | + ### setItfBorderThickness(Unit value) {#setItfBorderThickness-com.aspose.barcode.generation.Unit-} ``` -public void setItfBorderThickness(Unit value) +public final void setItfBorderThickness(Unit value) ``` @@ -124,15 +174,15 @@ Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [Unit](../../com.aspose.barcode.generation/unit) | | +| value | [Unit](../../com.aspose.barcode.generation/unit) | an ITF border (bearer bar) thickness in Unit value. | ### setItfBorderType(ITF14BorderType value) {#setItfBorderType-com.aspose.barcode.generation.ITF14BorderType-} ``` -public void setItfBorderType(ITF14BorderType value) +public final void setItfBorderType(ITF14BorderType value) ``` -Border type of ITF barcode. Default value: ITF14BorderType.BAR. +Border type of ITF barcode. Default value: ITF14BorderType.Bar. **Parameters:** | Parameter | Type | Description | @@ -141,7 +191,7 @@ Border type of ITF barcode. Default value: ITF14BorderType.BAR. ### setQuietZoneCoef(int value) {#setQuietZoneCoef-int-} ``` -public void setQuietZoneCoef(int value) +public final void setQuietZoneCoef(int value) ``` @@ -158,10 +208,10 @@ public String toString() ``` -Returns a human-readable string representation of this ITFParameters . +Returns a human-readable string representation of this [ITFParameters](../../com.aspose.barcode.generation/itfparameters). **Returns:** -java.lang.String - A string that represents this ITFParameters . +java.lang.String - A string that represents this [ITFParameters](../../com.aspose.barcode.generation/itfparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md b/english/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md index d7569b3f2..0da1b037b 100644 --- a/english/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/maxicodemode/_index.md @@ -20,9 +20,9 @@ Encoding mode for MaxiCode barcodes. This sample shows how to genereate MaxiCode maxiCodeCodetext.setPostalCode("524032140"); maxiCodeCodetext.setCountryCode(056); maxiCodeCodetext.setServiceCategory(999); - MaxiCodeStandartSecondMessage maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); - maxiCodeStandartSecondMessage.setMessage("Test message"); - maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); + MaxiCodeStandardSecondMessage maxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); + maxiCodeStandardSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandardSecondMessage); ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); complexGenerator.generateBarCodeImage(); @@ -45,9 +45,9 @@ Encoding mode for MaxiCode barcodes. This sample shows how to genereate MaxiCode maxiCodeCodetext.setPostalCode("B1050"); maxiCodeCodetext.setCountryCode(056); maxiCodeCodetext.setServiceCategory(999); - MaxiCodeStandartSecondMessage maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); - maxiCodeStandartSecondMessage.setMessage("Test message"); - maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); + MaxiCodeStandardSecondMessage maxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); + maxiCodeStandardSecondMessage.setMessage("Test message"); + maxiCodeCodetext.setSecondMessage(maxiCodeStandardSecondMessage); ComplexBarcodeGenerator complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); complexGenerator.generateBarCodeImage(); diff --git a/english/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md index 0c017d465..729119b1c 100644 --- a/english/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/maxicodeparameters/_index.md @@ -21,20 +21,28 @@ MaxiCode parameters. | [getAspectRatio()](#getAspectRatio--) | Height/Width ratio of 2D BarCode module. | | [getClass()](#getClass--) | | | [getECIEncoding()](#getECIEncoding--) | Gets ECI encoding. | +| [getEncodeMode()](#getEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeEncodeMode()](#getMaxiCodeEncodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeMode()](#getMaxiCodeMode--) | Gets a MaxiCode encode mode. | | [getMaxiCodeStructuredAppendModeBarcodeId()](#getMaxiCodeStructuredAppendModeBarcodeId--) | Gets a MaxiCode barcode id in structured append mode. | | [getMaxiCodeStructuredAppendModeBarcodesCount()](#getMaxiCodeStructuredAppendModeBarcodesCount--) | Gets a MaxiCode barcodes count in structured append mode. | +| [getMode()](#getMode--) | Gets a MaxiCode encode mode. | +| [getStructuredAppendModeBarcodeId()](#getStructuredAppendModeBarcodeId--) | Gets a MaxiCode barcode id in structured append mode. | +| [getStructuredAppendModeBarcodesCount()](#getStructuredAppendModeBarcodesCount--) | Gets a MaxiCode barcodes count in structured append mode. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setAspectRatio(float value)](#setAspectRatio-float-) | Height/Width ratio of 2D BarCode module. | -| [setECIEncoding(int ECIEncoding)](#setECIEncoding-int-) | Sets ECI encoding. | -| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode maxiCodeEncodeMode)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | -| [setMaxiCodeMode(int maxiCodeMode)](#setMaxiCodeMode-int-) | Sets a MaxiCode encode mode. | -| [setMaxiCodeStructuredAppendModeBarcodeId(int maxiCodeStructuredAppendModeBarcodeId)](#setMaxiCodeStructuredAppendModeBarcodeId-int-) | Sets a MaxiCode barcode id in structured append mode. | -| [setMaxiCodeStructuredAppendModeBarcodesCount(int maxiCodeStructuredAppendModeBarcodesCount)](#setMaxiCodeStructuredAppendModeBarcodesCount-int-) | Sets a MaxiCode barcodes count in structured append mode. | -| [toString()](#toString--) | Returns a human-readable string representation of this MaxiCodeParameters . | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Sets ECI encoding. | +| [setEncodeMode(MaxiCodeEncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | +| [setMaxiCodeEncodeMode(MaxiCodeEncodeMode value)](#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-) | Sets a MaxiCode encode mode. | +| [setMaxiCodeMode(int value)](#setMaxiCodeMode-int-) | Sets a MaxiCode encode mode. | +| [setMaxiCodeStructuredAppendModeBarcodeId(int value)](#setMaxiCodeStructuredAppendModeBarcodeId-int-) | Sets a MaxiCode barcode id in structured append mode. | +| [setMaxiCodeStructuredAppendModeBarcodesCount(int value)](#setMaxiCodeStructuredAppendModeBarcodesCount-int-) | Sets a MaxiCode barcodes count in structured append mode. | +| [setMode(int value)](#setMode-int-) | Sets a MaxiCode encode mode. | +| [setStructuredAppendModeBarcodeId(int value)](#setStructuredAppendModeBarcodeId-int-) | Sets a MaxiCode barcode id in structured append mode. | +| [setStructuredAppendModeBarcodesCount(int value)](#setStructuredAppendModeBarcodesCount-int-) | Sets a MaxiCode barcodes count in structured append mode. | +| [toString()](#toString--) | Returns a human-readable string representation of this [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -55,7 +63,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -75,54 +83,94 @@ public final native Class getClass() java.lang.Class ### getECIEncoding() {#getECIEncoding--} ``` -public int getECIEncoding() +public final int getECIEncoding() ``` -Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1 +Gets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 **Returns:** -int +int - ECI encoding. +### getEncodeMode() {#getEncodeMode--} +``` +public final MaxiCodeEncodeMode getEncodeMode() +``` + + +Gets a MaxiCode encode mode. Default value: Auto. + +**Returns:** +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeEncodeMode() {#getMaxiCodeEncodeMode--} ``` -public MaxiCodeEncodeMode getMaxiCodeEncodeMode() +public final MaxiCodeEncodeMode getMaxiCodeEncodeMode() ``` -Gets a MaxiCode encode mode. Default value: AUTO. +Gets a MaxiCode encode mode. Default value: Auto. **Returns:** -[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) +[MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) - a MaxiCode encode mode. ### getMaxiCodeMode() {#getMaxiCodeMode--} ``` -public int getMaxiCodeMode() +public final int getMaxiCodeMode() ``` Gets a MaxiCode encode mode. **Returns:** -int +int - a MaxiCode encode mode. ### getMaxiCodeStructuredAppendModeBarcodeId() {#getMaxiCodeStructuredAppendModeBarcodeId--} ``` -public int getMaxiCodeStructuredAppendModeBarcodeId() +public final int getMaxiCodeStructuredAppendModeBarcodeId() ``` Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 **Returns:** -int +int - a MaxiCode barcode id in structured append mode. ### getMaxiCodeStructuredAppendModeBarcodesCount() {#getMaxiCodeStructuredAppendModeBarcodesCount--} ``` -public int getMaxiCodeStructuredAppendModeBarcodesCount() +public final int getMaxiCodeStructuredAppendModeBarcodesCount() ``` Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 **Returns:** -int +int - a MaxiCode barcodes count in structured append mode. +### getMode() {#getMode--} +``` +public final int getMode() +``` + + +Gets a MaxiCode encode mode. + +**Returns:** +int - a MaxiCode encode mode. +### getStructuredAppendModeBarcodeId() {#getStructuredAppendModeBarcodeId--} +``` +public final int getStructuredAppendModeBarcodeId() +``` + + +Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +**Returns:** +int - a MaxiCode barcode id in structured append mode. +### getStructuredAppendModeBarcodesCount() {#getStructuredAppendModeBarcodesCount--} +``` +public final int getStructuredAppendModeBarcodesCount() +``` + + +Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 + +**Returns:** +int - a MaxiCode barcodes count in structured append mode. ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -151,7 +199,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -162,35 +210,87 @@ Height/Width ratio of 2D BarCode module. | --- | --- | --- | | value | float | | -### setECIEncoding(int ECIEncoding) {#setECIEncoding-int-} +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Sets ECI encoding. Used when MaxiCodeEncodeMode is Auto. Default value: ISO-8859-1 + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | ECI encoding. | + +### setEncodeMode(MaxiCodeEncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +``` +public final void setEncodeMode(MaxiCodeEncodeMode value) +``` + + +Sets a MaxiCode encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | + +### setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} ``` -public void setECIEncoding(int ECIEncoding) +public final void setMaxiCodeEncodeMode(MaxiCodeEncodeMode value) ``` -Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1 +Sets a MaxiCode encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| ECIEncoding | int | | +| value | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | a MaxiCode encode mode. | -### setMaxiCodeEncodeMode(MaxiCodeEncodeMode maxiCodeEncodeMode) {#setMaxiCodeEncodeMode-com.aspose.barcode.generation.MaxiCodeEncodeMode-} +### setMaxiCodeMode(int value) {#setMaxiCodeMode-int-} ``` -public void setMaxiCodeEncodeMode(MaxiCodeEncodeMode maxiCodeEncodeMode) +public final void setMaxiCodeMode(int value) ``` -Sets a MaxiCode encode mode. Default value: AUTO. +Sets a MaxiCode encode mode. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | a MaxiCode encode mode. | + +### setMaxiCodeStructuredAppendModeBarcodeId(int value) {#setMaxiCodeStructuredAppendModeBarcodeId-int-} +``` +public final void setMaxiCodeStructuredAppendModeBarcodeId(int value) +``` + + +Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | a MaxiCode barcode id in structured append mode. | + +### setMaxiCodeStructuredAppendModeBarcodesCount(int value) {#setMaxiCodeStructuredAppendModeBarcodesCount-int-} +``` +public final void setMaxiCodeStructuredAppendModeBarcodesCount(int value) +``` + + +Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| maxiCodeEncodeMode | [MaxiCodeEncodeMode](../../com.aspose.barcode.generation/maxicodeencodemode) | | +| value | int | a MaxiCode barcodes count in structured append mode. | -### setMaxiCodeMode(int maxiCodeMode) {#setMaxiCodeMode-int-} +### setMode(int value) {#setMode-int-} ``` -public void setMaxiCodeMode(int maxiCodeMode) +public final void setMode(int value) ``` @@ -199,11 +299,11 @@ Sets a MaxiCode encode mode. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| maxiCodeMode | int | | +| value | int | a MaxiCode encode mode. | -### setMaxiCodeStructuredAppendModeBarcodeId(int maxiCodeStructuredAppendModeBarcodeId) {#setMaxiCodeStructuredAppendModeBarcodeId-int-} +### setStructuredAppendModeBarcodeId(int value) {#setStructuredAppendModeBarcodeId-int-} ``` -public void setMaxiCodeStructuredAppendModeBarcodeId(int maxiCodeStructuredAppendModeBarcodeId) +public final void setStructuredAppendModeBarcodeId(int value) ``` @@ -212,11 +312,11 @@ Sets a MaxiCode barcode id in structured append mode. ID must be a value between **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| maxiCodeStructuredAppendModeBarcodeId | int | | +| value | int | a MaxiCode barcode id in structured append mode. | -### setMaxiCodeStructuredAppendModeBarcodesCount(int maxiCodeStructuredAppendModeBarcodesCount) {#setMaxiCodeStructuredAppendModeBarcodesCount-int-} +### setStructuredAppendModeBarcodesCount(int value) {#setStructuredAppendModeBarcodesCount-int-} ``` -public void setMaxiCodeStructuredAppendModeBarcodesCount(int maxiCodeStructuredAppendModeBarcodesCount) +public final void setStructuredAppendModeBarcodesCount(int value) ``` @@ -225,7 +325,7 @@ Sets a MaxiCode barcodes count in structured append mode. Count number must be a **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| maxiCodeStructuredAppendModeBarcodesCount | int | | +| value | int | a MaxiCode barcodes count in structured append mode. | ### toString() {#toString--} ``` @@ -233,10 +333,10 @@ public String toString() ``` -Returns a human-readable string representation of this MaxiCodeParameters . +Returns a human-readable string representation of this [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). **Returns:** -java.lang.String - A string that represents this MaxiCodeParameters . +java.lang.String - A string that represents this [MaxiCodeParameters](../../com.aspose.barcode.generation/maxicodeparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md index 8a799c529..d0624c9f9 100644 --- a/english/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/patchcodeparameters/_index.md @@ -20,13 +20,15 @@ PatchCode parameters. | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | | [getExtraBarcodeText()](#getExtraBarcodeText--) | Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. | +| [getFormat()](#getFormat--) | PatchCode format. | | [getPatchFormat()](#getPatchFormat--) | PatchCode format. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setExtraBarcodeText(String value)](#setExtraBarcodeText-java.lang.String-) | Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. | +| [setFormat(PatchFormat value)](#setFormat-com.aspose.barcode.generation.PatchFormat-) | PatchCode format. | | [setPatchFormat(PatchFormat value)](#setPatchFormat-com.aspose.barcode.generation.PatchFormat-) | PatchCode format. | -| [toString()](#toString--) | Returns a human-readable string representation of this . | +| [toString()](#toString--) | Returns a human-readable string representation of this [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -57,7 +59,7 @@ public final native Class getClass() java.lang.Class ### getExtraBarcodeText() {#getExtraBarcodeText--} ``` -public String getExtraBarcodeText() +public final String getExtraBarcodeText() ``` @@ -65,16 +67,26 @@ Specifies codetext for an extra QR barcode, when PatchCode is generated in page **Returns:** java.lang.String +### getFormat() {#getFormat--} +``` +public final PatchFormat getFormat() +``` + + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly + +**Returns:** +[PatchFormat](../../com.aspose.barcode.generation/patchformat) ### getPatchFormat() {#getPatchFormat--} ``` -public PatchFormat getPatchFormat() +public final PatchFormat getPatchFormat() ``` -PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH\_ONLY +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly **Returns:** -[PatchFormat](../../com.aspose.barcode.generation/patchformat) - +[PatchFormat](../../com.aspose.barcode.generation/patchformat) ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -103,7 +115,7 @@ public final native void notifyAll() ### setExtraBarcodeText(String value) {#setExtraBarcodeText-java.lang.String-} ``` -public void setExtraBarcodeText(String value) +public final void setExtraBarcodeText(String value) ``` @@ -114,13 +126,26 @@ Specifies codetext for an extra QR barcode, when PatchCode is generated in page | --- | --- | --- | | value | java.lang.String | | +### setFormat(PatchFormat value) {#setFormat-com.aspose.barcode.generation.PatchFormat-} +``` +public final void setFormat(PatchFormat value) +``` + + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [PatchFormat](../../com.aspose.barcode.generation/patchformat) | | + ### setPatchFormat(PatchFormat value) {#setPatchFormat-com.aspose.barcode.generation.PatchFormat-} ``` -public void setPatchFormat(PatchFormat value) +public final void setPatchFormat(PatchFormat value) ``` -PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH\_ONLY +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly **Parameters:** | Parameter | Type | Description | @@ -133,10 +158,10 @@ public String toString() ``` -Returns a human-readable string representation of this . +Returns a human-readable string representation of this [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). **Returns:** -java.lang.String - A string that represents this . +java.lang.String - A string that represents this [PatchCodeParameters](../../com.aspose.barcode.generation/patchcodeparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md b/english/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md index 825255a4e..06cc63581 100644 --- a/english/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/pdf417parameters/_index.md @@ -14,21 +14,22 @@ public class Pdf417Parameters PDF417 parameters. Contains PDF417, MacroPDF417, MicroPDF417 and GS1MicroPdf417 parameters. MacroPDF417 requires two fields: Pdf417MacroFileID and Pdf417MacroSegmentID. All other fields are optional. MicroPDF417 in Structured Append mode (same as MacroPDF417 mode) requires two fields: Pdf417MacroFileID and Pdf417MacroSegmentID. All other fields are optional. -``` These samples show how to encode UCC/EAN-128 non Linked modes in GS1MicroPdf417 - - //Encodes GS1 UCC/EAN-128 non Linked mode 905 with AI 01 (GTIN) - BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(01)12345678901231"); - BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); - for (BarCodeResult result : reader.readBarCodes()) - System.out.println(result.getCodeText()); +``` + [C#] + //Encodes GS1 UCC/EAN-128 non Linked mode 905 with AI 01 (GTIN) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(01)12345678901231"); + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); //Encodes GS1 UCC/EAN-128 non Linked modes 903, 904 with any AI - BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(241)123456789012345(241)ABCD123456789012345"); - BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); - for (BarCodeResult result : reader.readBarCodes()) - System.out.println(result.getCodeText()); + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(241)123456789012345(241)ABCD123456789012345"); + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + ``` ## Methods @@ -38,7 +39,21 @@ These samples show how to encode UCC/EAN-128 non Linked modes in GS1MicroPdf417 | [getAspectRatio()](#getAspectRatio--) | Height/Width ratio of 2D BarCode module. | | [getClass()](#getClass--) | | | [getColumns()](#getColumns--) | Columns count. | +| [getECIEncoding()](#getECIEncoding--) | Extended Channel Interpretation Identifiers. | +| [getEncodeMode()](#getEncodeMode--) | Identifies Pdf417 encode mode. | +| [getErrorLevel()](#getErrorLevel--) | Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | | [getMacroCharacters()](#getMacroCharacters--) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | +| [getMacroPdf417Addressee()](#getMacroPdf417Addressee--) | MacroPdf417 barcode addressee name (optional field). | +| [getMacroPdf417Checksum()](#getMacroPdf417Checksum--) | MacroPdf417 barcode checksum (optional field). | +| [getMacroPdf417ECIEncoding()](#getMacroPdf417ECIEncoding--) | Extended Channel Interpretation Identifiers. | +| [getMacroPdf417FileID()](#getMacroPdf417FileID--) | MacroPdf417 barcode's file ID (Required field). | +| [getMacroPdf417FileName()](#getMacroPdf417FileName--) | MacroPdf417 barcode file name (optional field). | +| [getMacroPdf417FileSize()](#getMacroPdf417FileSize--) | MacroPdf417 file size (optional field). | +| [getMacroPdf417SegmentID()](#getMacroPdf417SegmentID--) | MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. | +| [getMacroPdf417SegmentsCount()](#getMacroPdf417SegmentsCount--) | MacroPdf417 barcode segments count (optional field). | +| [getMacroPdf417Sender()](#getMacroPdf417Sender--) | MacroPdf417 barcode sender name (optional field). | +| [getMacroPdf417Terminator()](#getMacroPdf417Terminator--) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. | +| [getMacroPdf417TimeStamp()](#getMacroPdf417TimeStamp--) | MacroPdf417 barcode time stamp (optional field). | | [getPdf417CompactionMode()](#getPdf417CompactionMode--) | Pdf417 symbology type of BarCode's compaction mode. | | [getPdf417ECIEncoding()](#getPdf417ECIEncoding--) | Extended Channel Interpretation Identifiers. | | [getPdf417EncodeMode()](#getPdf417EncodeMode--) | Identifies Pdf417 encode mode. | @@ -56,6 +71,7 @@ These samples show how to encode UCC/EAN-128 non Linked modes in GS1MicroPdf417 | [getPdf417MacroTimeStamp()](#getPdf417MacroTimeStamp--) | MacroPdf417 barcode time stamp (optional field). | | [getPdf417Truncate()](#getPdf417Truncate--) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | | [getRows()](#getRows--) | Rows count. | +| [getTruncate()](#getTruncate--) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | | [hashCode()](#hashCode--) | | | [isCode128Emulation()](#isCode128Emulation--) | Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 | | [isLinked()](#isLinked--) | Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 \\u201cLinked\\u201d UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC | @@ -65,14 +81,28 @@ These samples show how to encode UCC/EAN-128 non Linked modes in GS1MicroPdf417 | [setAspectRatio(float value)](#setAspectRatio-float-) | Height/Width ratio of 2D BarCode module. | | [setCode128Emulation(boolean value)](#setCode128Emulation-boolean-) | Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 | | [setColumns(int value)](#setColumns-int-) | Columns count. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Extended Channel Interpretation Identifiers. | +| [setEncodeMode(Pdf417EncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-) | Identifies Pdf417 encode mode. | +| [setErrorLevel(Pdf417ErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-) | Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | | [setLinked(boolean value)](#setLinked-boolean-) | Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 \\u201cLinked\\u201d UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC | | [setMacroCharacters(MacroCharacter value)](#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. | +| [setMacroPdf417Addressee(String value)](#setMacroPdf417Addressee-java.lang.String-) | MacroPdf417 barcode addressee name (optional field). | +| [setMacroPdf417Checksum(int value)](#setMacroPdf417Checksum-int-) | MacroPdf417 barcode checksum (optional field). | +| [setMacroPdf417ECIEncoding(int value)](#setMacroPdf417ECIEncoding-int-) | Extended Channel Interpretation Identifiers. | +| [setMacroPdf417FileID(int value)](#setMacroPdf417FileID-int-) | MacroPdf417 barcode's file ID (Required field). | +| [setMacroPdf417FileName(String value)](#setMacroPdf417FileName-java.lang.String-) | MacroPdf417 barcode file name (optional field). | +| [setMacroPdf417FileSize(int value)](#setMacroPdf417FileSize-int-) | MacroPdf417 file size (optional field). | +| [setMacroPdf417SegmentID(int value)](#setMacroPdf417SegmentID-int-) | MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. | +| [setMacroPdf417SegmentsCount(int value)](#setMacroPdf417SegmentsCount-int-) | MacroPdf417 barcode segments count (optional field). | +| [setMacroPdf417Sender(String value)](#setMacroPdf417Sender-java.lang.String-) | MacroPdf417 barcode sender name (optional field). | +| [setMacroPdf417Terminator(Pdf417MacroTerminator value)](#setMacroPdf417Terminator-com.aspose.barcode.generation.Pdf417MacroTerminator-) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. | +| [setMacroPdf417TimeStamp(LocalDateTime value)](#setMacroPdf417TimeStamp-java.time.LocalDateTime-) | MacroPdf417 barcode time stamp (optional field). | | [setPdf417CompactionMode(Pdf417CompactionMode value)](#setPdf417CompactionMode-com.aspose.barcode.generation.Pdf417CompactionMode-) | Pdf417 symbology type of BarCode's compaction mode. | | [setPdf417ECIEncoding(int value)](#setPdf417ECIEncoding-int-) | Extended Channel Interpretation Identifiers. | -| [setPdf417EncodeMode(Pdf417EncodeMode pdf417EncodeMode)](#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-) | Identifies Pdf417 encode mode. | +| [setPdf417EncodeMode(Pdf417EncodeMode value)](#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-) | Identifies Pdf417 encode mode. | | [setPdf417ErrorLevel(Pdf417ErrorLevel value)](#setPdf417ErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-) | Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | | [setPdf417MacroAddressee(String value)](#setPdf417MacroAddressee-java.lang.String-) | MacroPdf417 barcode addressee name (optional field). | -| [setPdf417MacroChecksum(int value)](#setPdf417MacroChecksum-int-) | Sets macro Pdf417 barcode checksum. | +| [setPdf417MacroChecksum(int value)](#setPdf417MacroChecksum-int-) | MacroPdf417 barcode checksum (optional field). | | [setPdf417MacroECIEncoding(int value)](#setPdf417MacroECIEncoding-int-) | Extended Channel Interpretation Identifiers. | | [setPdf417MacroFileID(int value)](#setPdf417MacroFileID-int-) | MacroPdf417 barcode's file ID (Required field). | | [setPdf417MacroFileName(String value)](#setPdf417MacroFileName-java.lang.String-) | MacroPdf417 barcode file name (optional field). | @@ -82,11 +112,11 @@ These samples show how to encode UCC/EAN-128 non Linked modes in GS1MicroPdf417 | [setPdf417MacroSender(String value)](#setPdf417MacroSender-java.lang.String-) | MacroPdf417 barcode sender name (optional field). | | [setPdf417MacroTerminator(Pdf417MacroTerminator value)](#setPdf417MacroTerminator-com.aspose.barcode.generation.Pdf417MacroTerminator-) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. | | [setPdf417MacroTimeStamp(LocalDateTime value)](#setPdf417MacroTimeStamp-java.time.LocalDateTime-) | MacroPdf417 barcode time stamp (optional field). | -| [setPdf417MacroTimeStamp(Date value)](#setPdf417MacroTimeStamp-java.util.Date-) | MacroPdf417 barcode time stamp (optional field). | | [setPdf417Truncate(boolean value)](#setPdf417Truncate-boolean-) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | | [setReaderInitialization(boolean value)](#setReaderInitialization-boolean-) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | | [setRows(int value)](#setRows-int-) | Rows count. | -| [toString()](#toString--) | Returns a human-readable String representation of this Pdf417Parameters . | +| [setTruncate(boolean value)](#setTruncate-boolean-) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | +| [toString()](#toString--) | Returns a human-readable string representation of this [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -107,7 +137,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -127,7 +157,7 @@ public final native Class getClass() java.lang.Class ### getColumns() {#getColumns--} ``` -public int getColumns() +public final int getColumns() ``` @@ -135,48 +165,189 @@ Columns count. **Returns:** int +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final Pdf417EncodeMode getEncodeMode() +``` + + +Identifies Pdf417 encode mode. Default value: Auto. + +**Returns:** +[Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final Pdf417ErrorLevel getErrorLevel() +``` + + +Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +**Returns:** +[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) - Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. ### getMacroCharacters() {#getMacroCharacters--} ``` -public MacroCharacter getMacroCharacters() +public final MacroCharacter getMacroCharacters() ``` Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. --------------------- - -> ``` -> These samples show how to encode Macro Characters in MicroPdf417 -> -> //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); -> generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for (BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText()); -> //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); -> generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText()); -> ``` +These samples show how to encode Macro Characters in MicroPdf417 + +``` + + [C#] + //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro05; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro06; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + +``` **Returns:** [MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) +### getMacroPdf417Addressee() {#getMacroPdf417Addressee--} +``` +public final String getMacroPdf417Addressee() +``` + + +MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode) + +**Returns:** +java.lang.String +### getMacroPdf417Checksum() {#getMacroPdf417Checksum--} +``` +public final int getMacroPdf417Checksum() +``` + + +MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1 + +**Returns:** +int +### getMacroPdf417ECIEncoding() {#getMacroPdf417ECIEncoding--} +``` +public final int getMacroPdf417ECIEncoding() +``` + + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +**Returns:** +int +### getMacroPdf417FileID() {#getMacroPdf417FileID--} +``` +public final int getMacroPdf417FileID() +``` + + +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) + +**Returns:** +int +### getMacroPdf417FileName() {#getMacroPdf417FileName--} +``` +public final String getMacroPdf417FileName() +``` + + +MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode) + +**Returns:** +java.lang.String +### getMacroPdf417FileSize() {#getMacroPdf417FileSize--} +``` +public final int getMacroPdf417FileSize() +``` + + +MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. + +**Returns:** +int +### getMacroPdf417SegmentID() {#getMacroPdf417SegmentID--} +``` +public final int getMacroPdf417SegmentID() +``` + + +MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode) + +**Returns:** +int +### getMacroPdf417SegmentsCount() {#getMacroPdf417SegmentsCount--} +``` +public final int getMacroPdf417SegmentsCount() +``` + + +MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode) + +**Returns:** +int +### getMacroPdf417Sender() {#getMacroPdf417Sender--} +``` +public final String getMacroPdf417Sender() +``` + + +MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode) + +**Returns:** +java.lang.String +### getMacroPdf417Terminator() {#getMacroPdf417Terminator--} +``` +public final Pdf417MacroTerminator getMacroPdf417Terminator() +``` + + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +**Returns:** +[Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) +### getMacroPdf417TimeStamp() {#getMacroPdf417TimeStamp--} +``` +public final LocalDateTime getMacroPdf417TimeStamp() +``` + + +MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode) + +**Returns:** +java.time.LocalDateTime ### getPdf417CompactionMode() {#getPdf417CompactionMode--} ``` -public Pdf417CompactionMode getPdf417CompactionMode() +public final Pdf417CompactionMode getPdf417CompactionMode() ``` -Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. +Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.Auto. **Returns:** [Pdf417CompactionMode](../../com.aspose.barcode.generation/pdf417compactionmode) ### getPdf417ECIEncoding() {#getPdf417ECIEncoding--} ``` -public int getPdf417ECIEncoding() +public final int getPdf417ECIEncoding() ``` @@ -186,7 +357,7 @@ Extended Channel Interpretation Identifiers. It is used to tell the barcode read int ### getPdf417EncodeMode() {#getPdf417EncodeMode--} ``` -public Pdf417EncodeMode getPdf417EncodeMode() +public final Pdf417EncodeMode getPdf417EncodeMode() ``` @@ -196,17 +367,17 @@ Identifies Pdf417 encode mode. Default value: Auto. [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) ### getPdf417ErrorLevel() {#getPdf417ErrorLevel--} ``` -public Pdf417ErrorLevel getPdf417ErrorLevel() +public final Pdf417ErrorLevel getPdf417ErrorLevel() ``` Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. **Returns:** -[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) +[Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) - Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. ### getPdf417MacroAddressee() {#getPdf417MacroAddressee--} ``` -public String getPdf417MacroAddressee() +public final String getPdf417MacroAddressee() ``` @@ -216,7 +387,7 @@ MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode address java.lang.String ### getPdf417MacroChecksum() {#getPdf417MacroChecksum--} ``` -public int getPdf417MacroChecksum() +public final int getPdf417MacroChecksum() ``` @@ -226,7 +397,7 @@ MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (opt int ### getPdf417MacroECIEncoding() {#getPdf417MacroECIEncoding--} ``` -public int getPdf417MacroECIEncoding() +public final int getPdf417MacroECIEncoding() ``` @@ -236,17 +407,17 @@ Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text field int ### getPdf417MacroFileID() {#getPdf417MacroFileID--} ``` -public int getPdf417MacroFileID() +public final int getPdf417MacroFileID() ``` -MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode). +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) **Returns:** int ### getPdf417MacroFileName() {#getPdf417MacroFileName--} ``` -public String getPdf417MacroFileName() +public final String getPdf417MacroFileName() ``` @@ -256,7 +427,7 @@ MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (o java.lang.String ### getPdf417MacroFileSize() {#getPdf417MacroFileSize--} ``` -public int getPdf417MacroFileSize() +public final int getPdf417MacroFileSize() ``` @@ -266,7 +437,7 @@ MacroPdf417 file size (optional field). MicroPDF417 file size (optional field fo int ### getPdf417MacroSegmentID() {#getPdf417MacroSegmentID--} ``` -public int getPdf417MacroSegmentID() +public final int getPdf417MacroSegmentID() ``` @@ -276,7 +447,7 @@ MacroPdf417 barcode's segment ID (Required field), which starts from 0, to Macro int ### getPdf417MacroSegmentsCount() {#getPdf417MacroSegmentsCount--} ``` -public int getPdf417MacroSegmentsCount() +public final int getPdf417MacroSegmentsCount() ``` @@ -286,7 +457,7 @@ MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segment int ### getPdf417MacroSender() {#getPdf417MacroSender--} ``` -public String getPdf417MacroSender() +public final String getPdf417MacroSender() ``` @@ -296,7 +467,7 @@ MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender nam java.lang.String ### getPdf417MacroTerminator() {#getPdf417MacroTerminator--} ``` -public Pdf417MacroTerminator getPdf417MacroTerminator() +public final Pdf417MacroTerminator getPdf417MacroTerminator() ``` @@ -306,7 +477,7 @@ Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) t [Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) ### getPdf417MacroTimeStamp() {#getPdf417MacroTimeStamp--} ``` -public LocalDateTime getPdf417MacroTimeStamp() +public final LocalDateTime getPdf417MacroTimeStamp() ``` @@ -316,7 +487,7 @@ MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp java.time.LocalDateTime ### getPdf417Truncate() {#getPdf417Truncate--} ``` -public boolean getPdf417Truncate() +public final boolean getPdf417Truncate() ``` @@ -326,7 +497,7 @@ Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also kn boolean ### getRows() {#getRows--} ``` -public int getRows() +public final int getRows() ``` @@ -334,6 +505,16 @@ Rows count. **Returns:** int +### getTruncate() {#getTruncate--} +``` +public final boolean getTruncate() +``` + + +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. + +**Returns:** +boolean ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -346,115 +527,115 @@ public native int hashCode() int ### isCode128Emulation() {#isCode128Emulation--} ``` -public boolean isCode128Emulation() +public final boolean isCode128Emulation() ``` Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 --------------------- - -> ``` -> These samples show how to encode Code 128 emulation modes with FNC1 in second position and without. In this way MicroPdf417 can be decoded as Code 128 barcode -> -> -> //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "a1222322323"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + Boolean.parseBoolean(result.getExtended().getPdf417().isCode128Emulation())); -> //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "991222322323"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + Boolean.parseBoolean(result.getExtended().getPdf417().isCode128Emulation())); -> //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation().toString()); -> ``` +These samples show how to encode Code 128 emulation modes with FNC1 in second position and without. In this way MicroPdf417 can be decoded as Code 128 barcode + +``` + + [C#] + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "a1222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "991222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + +``` **Returns:** boolean ### isLinked() {#isLinked--} ``` -public boolean isLinked() +public final boolean isLinked() ``` Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 \\u201cLinked\\u201d UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC --------------------- - -> ``` -> These samples show how to encode "Linked" UCC/EAN-128 modes in GS1MicroPdf417 and Linkage Flag (918) in MicroPdf417 and Pdf417 barcodes -> -> -> //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(11)991231(10)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(13)991231(21)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(15)991231(10)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(17)991231(21)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 914 with AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(10)ABCD12345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 915 with AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(21)ABCD12345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked modes 906, 907 with any AI -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(240)123456789012345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "ABCDE123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes Pdf417 NON EAN.UCC Linked mode 918 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.PDF_417, "ABCDE123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> ``` +These samples show how to encode "Linked" UCC/EAN-128 modes in GS1MicroPdf417 and Linkage Flag (918) in MicroPdf417 and Pdf417 barcodes + +``` + + [C#] + //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(11)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(13)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(15)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(17)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 914 with AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(10)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 915 with AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(21)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked modes 906, 907 with any AI + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(240)123456789012345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes Pdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Pdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.Pdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + +``` **Returns:** boolean ### isReaderInitialization() {#isReaderInitialization--} ``` -public boolean isReaderInitialization() +public final boolean isReaderInitialization() ``` @@ -480,7 +661,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -493,37 +674,37 @@ Height/Width ratio of 2D BarCode module. ### setCode128Emulation(boolean value) {#setCode128Emulation-boolean-} ``` -public void setCode128Emulation(boolean value) +public final void setCode128Emulation(boolean value) ``` Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 --------------------- - -> ``` -> These samples show how to encode Code 128 emulation modes with FNC1 in second position and without. In this way MicroPdf417 can be decoded as Code 128 barcode -> -> -> //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "a1222322323"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + result.Extended.Pdf417.IisCode128Emulation().toString()); -> //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "991222322323"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + Boolean.parseBoolean(result.getExtended().getPdf417().isCode128Emulation())); -> //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsCode128Emulation:" + Boolean.parseBoolean(result.getExtended().getPdf417().isCode128Emulation())); -> ``` +These samples show how to encode Code 128 emulation modes with FNC1 in second position and without. In this way MicroPdf417 can be decoded as Code 128 barcode + +``` + + [C#] + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "a1222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "991222322323"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + //Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsCode128Emulation = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsCode128Emulation:" + result.Extended.Pdf417.IsCode128Emulation.ToString()); + +``` **Parameters:** | Parameter | Type | Description | @@ -532,7 +713,7 @@ Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encod ### setColumns(int value) {#setColumns-int-} ``` -public void setColumns(int value) +public final void setColumns(int value) ``` @@ -543,75 +724,114 @@ Columns count. | --- | --- | --- | | value | int | | +### setECIEncoding(int value) {#setECIEncoding-int-} +``` +public final void setECIEncoding(int value) +``` + + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setEncodeMode(Pdf417EncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-} +``` +public final void setEncodeMode(Pdf417EncodeMode value) +``` + + +Identifies Pdf417 encode mode. Default value: Auto. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) | | + +### setErrorLevel(Pdf417ErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-} +``` +public final void setErrorLevel(Pdf417ErrorLevel value) +``` + + +Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) | Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | + ### setLinked(boolean value) {#setLinked-boolean-} ``` -public void setLinked(boolean value) +public final void setLinked(boolean value) ``` Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 \\u201cLinked\\u201d UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC --------------------- - -> ``` -> These samples show how to encode "Linked" UCC/EAN-128 modes in GS1MicroPdf417 and Linkage Flag (918) in MicroPdf417 and Pdf417 barcodes -> -> -> //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(11)991231(10)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(13)991231(21)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(15)991231(10)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(17)991231(21)ABCD"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 914 with AI 10 (Lot number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(10)ABCD12345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked mode 915 with AI 21 (Serial number) -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(21)ABCD12345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes GS1 Linked modes 906, 907 with any AI -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(240)123456789012345"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.GS_1_MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "ABCDE123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> //Encodes Pdf417 NON EAN.UCC Linked mode 918 -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.PDF_417, "ABCDE123456789012345678"); -> generator.getParameters().getBarcode().getPdf417().setLinked(true); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText() + " IsLinked:" + Boolean.parseBoolean(result.getExtended().getPdf417().isLinked())); -> ``` +These samples show how to encode "Linked" UCC/EAN-128 modes in GS1MicroPdf417 and Linkage Flag (918) in MicroPdf417 and Pdf417 barcodes + +``` + + [C#] + //Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(11)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(13)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(15)991231(10)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(17)991231(21)ABCD"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 914 with AI 10 (Lot number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(10)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked mode 915 with AI 21 (Serial number) + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(21)ABCD12345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes GS1 Linked modes 906, 907 with any AI + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.GS1MicroPdf417, "(240)123456789012345"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.GS1MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + //Encodes Pdf417 NON EAN.UCC Linked mode 918 + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.Pdf417, "ABCDE123456789012345678"); + generator.Parameters.Barcode.Pdf417.IsLinked = true; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.Pdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText + " IsLinked:" + result.Extended.Pdf417.IsLinked.ToString()); + +``` **Parameters:** | Parameter | Type | Description | @@ -620,44 +840,187 @@ Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With G ### setMacroCharacters(MacroCharacter value) {#setMacroCharacters-com.aspose.barcode.generation.MacroCharacter-} ``` -public void setMacroCharacters(MacroCharacter value) +public final void setMacroCharacters(MacroCharacter value) ``` Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. --------------------- +These samples show how to encode Macro Characters in MicroPdf417 + +``` -> ``` -> These samples show how to encode Macro Characters in MicroPdf417 -> -> -> //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); -> generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for (BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText()); -> //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" -> BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); -> generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); -> BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(), DecodeType.MICRO_PDF_417); -> for(BarCodeResult result : reader.readBarCodes()) -> System.out.println(result.getCodeText()); -> ``` + [C#] + //Encodes MicroPdf417 with 05 Macro the string: "[)>05abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro05; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + //Encodes MicroPdf417 with 06 Macro the string: "[)>06abcde1234" + BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); + generator.Parameters.Barcode.Pdf417.MacroCharacters = MacroCharacter.Macro06; + using (BarCodeReader reader = new BarCodeReader(generator.GenerateBarCodeImage(), DecodeType.MicroPdf417)) + foreach (BarCodeResult result in reader.ReadBarCodes()) + Console.WriteLine(result.CodeText); + +``` **Parameters:** | Parameter | Type | Description | | --- | --- | --- | | value | [MacroCharacter](../../com.aspose.barcode.generation/macrocharacter) | | +### setMacroPdf417Addressee(String value) {#setMacroPdf417Addressee-java.lang.String-} +``` +public final void setMacroPdf417Addressee(String value) +``` + + +MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | | + +### setMacroPdf417Checksum(int value) {#setMacroPdf417Checksum-int-} +``` +public final void setMacroPdf417Checksum(int value) +``` + + +MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1 + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417ECIEncoding(int value) {#setMacroPdf417ECIEncoding-int-} +``` +public final void setMacroPdf417ECIEncoding(int value) +``` + + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417FileID(int value) {#setMacroPdf417FileID-int-} +``` +public final void setMacroPdf417FileID(int value) +``` + + +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417FileName(String value) {#setMacroPdf417FileName-java.lang.String-} +``` +public final void setMacroPdf417FileName(String value) +``` + + +MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | | + +### setMacroPdf417FileSize(int value) {#setMacroPdf417FileSize-int-} +``` +public final void setMacroPdf417FileSize(int value) +``` + + +MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417SegmentID(int value) {#setMacroPdf417SegmentID-int-} +``` +public final void setMacroPdf417SegmentID(int value) +``` + + +MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417SegmentsCount(int value) {#setMacroPdf417SegmentsCount-int-} +``` +public final void setMacroPdf417SegmentsCount(int value) +``` + + +MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | int | | + +### setMacroPdf417Sender(String value) {#setMacroPdf417Sender-java.lang.String-} +``` +public final void setMacroPdf417Sender(String value) +``` + + +MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.lang.String | | + +### setMacroPdf417Terminator(Pdf417MacroTerminator value) {#setMacroPdf417Terminator-com.aspose.barcode.generation.Pdf417MacroTerminator-} +``` +public final void setMacroPdf417Terminator(Pdf417MacroTerminator value) +``` + + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Pdf417MacroTerminator](../../com.aspose.barcode.generation/pdf417macroterminator) | | + +### setMacroPdf417TimeStamp(LocalDateTime value) {#setMacroPdf417TimeStamp-java.time.LocalDateTime-} +``` +public final void setMacroPdf417TimeStamp(LocalDateTime value) +``` + + +MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode) + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | java.time.LocalDateTime | | + ### setPdf417CompactionMode(Pdf417CompactionMode value) {#setPdf417CompactionMode-com.aspose.barcode.generation.Pdf417CompactionMode-} ``` -public void setPdf417CompactionMode(Pdf417CompactionMode value) +public final void setPdf417CompactionMode(Pdf417CompactionMode value) ``` -Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. +Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.Auto. **Parameters:** | Parameter | Type | Description | @@ -666,7 +1029,7 @@ Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417Compact ### setPdf417ECIEncoding(int value) {#setPdf417ECIEncoding-int-} ``` -public void setPdf417ECIEncoding(int value) +public final void setPdf417ECIEncoding(int value) ``` @@ -677,9 +1040,9 @@ Extended Channel Interpretation Identifiers. It is used to tell the barcode read | --- | --- | --- | | value | int | | -### setPdf417EncodeMode(Pdf417EncodeMode pdf417EncodeMode) {#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-} +### setPdf417EncodeMode(Pdf417EncodeMode value) {#setPdf417EncodeMode-com.aspose.barcode.generation.Pdf417EncodeMode-} ``` -public void setPdf417EncodeMode(Pdf417EncodeMode pdf417EncodeMode) +public final void setPdf417EncodeMode(Pdf417EncodeMode value) ``` @@ -688,11 +1051,11 @@ Identifies Pdf417 encode mode. Default value: Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| pdf417EncodeMode | [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) | | +| value | [Pdf417EncodeMode](../../com.aspose.barcode.generation/pdf417encodemode) | | ### setPdf417ErrorLevel(Pdf417ErrorLevel value) {#setPdf417ErrorLevel-com.aspose.barcode.generation.Pdf417ErrorLevel-} ``` -public void setPdf417ErrorLevel(Pdf417ErrorLevel value) +public final void setPdf417ErrorLevel(Pdf417ErrorLevel value) ``` @@ -701,11 +1064,11 @@ Sets Pdf417 symbology type of BarCode's error correction level ranging from leve **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) | | +| value | [Pdf417ErrorLevel](../../com.aspose.barcode.generation/pdf417errorlevel) | Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | ### setPdf417MacroAddressee(String value) {#setPdf417MacroAddressee-java.lang.String-} ``` -public void setPdf417MacroAddressee(String value) +public final void setPdf417MacroAddressee(String value) ``` @@ -718,20 +1081,20 @@ MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode address ### setPdf417MacroChecksum(int value) {#setPdf417MacroChecksum-int-} ``` -public void setPdf417MacroChecksum(int value) +public final void setPdf417MacroChecksum(int value) ``` -Sets macro Pdf417 barcode checksum. +MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1 **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. | +| value | int | | ### setPdf417MacroECIEncoding(int value) {#setPdf417MacroECIEncoding-int-} ``` -public void setPdf417MacroECIEncoding(int value) +public final void setPdf417MacroECIEncoding(int value) ``` @@ -744,11 +1107,11 @@ Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text field ### setPdf417MacroFileID(int value) {#setPdf417MacroFileID-int-} ``` -public void setPdf417MacroFileID(int value) +public final void setPdf417MacroFileID(int value) ``` -MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode). +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) **Parameters:** | Parameter | Type | Description | @@ -757,7 +1120,7 @@ MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (R ### setPdf417MacroFileName(String value) {#setPdf417MacroFileName-java.lang.String-} ``` -public void setPdf417MacroFileName(String value) +public final void setPdf417MacroFileName(String value) ``` @@ -770,7 +1133,7 @@ MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (o ### setPdf417MacroFileSize(int value) {#setPdf417MacroFileSize-int-} ``` -public void setPdf417MacroFileSize(int value) +public final void setPdf417MacroFileSize(int value) ``` @@ -783,7 +1146,7 @@ MacroPdf417 file size (optional field). MicroPDF417 file size (optional field fo ### setPdf417MacroSegmentID(int value) {#setPdf417MacroSegmentID-int-} ``` -public void setPdf417MacroSegmentID(int value) +public final void setPdf417MacroSegmentID(int value) ``` @@ -796,7 +1159,7 @@ MacroPdf417 barcode's segment ID (Required field), which starts from 0, to Macro ### setPdf417MacroSegmentsCount(int value) {#setPdf417MacroSegmentsCount-int-} ``` -public void setPdf417MacroSegmentsCount(int value) +public final void setPdf417MacroSegmentsCount(int value) ``` @@ -809,7 +1172,7 @@ MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segment ### setPdf417MacroSender(String value) {#setPdf417MacroSender-java.lang.String-} ``` -public void setPdf417MacroSender(String value) +public final void setPdf417MacroSender(String value) ``` @@ -822,7 +1185,7 @@ MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender nam ### setPdf417MacroTerminator(Pdf417MacroTerminator value) {#setPdf417MacroTerminator-com.aspose.barcode.generation.Pdf417MacroTerminator-} ``` -public void setPdf417MacroTerminator(Pdf417MacroTerminator value) +public final void setPdf417MacroTerminator(Pdf417MacroTerminator value) ``` @@ -835,7 +1198,7 @@ Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) t ### setPdf417MacroTimeStamp(LocalDateTime value) {#setPdf417MacroTimeStamp-java.time.LocalDateTime-} ``` -public void setPdf417MacroTimeStamp(LocalDateTime value) +public final void setPdf417MacroTimeStamp(LocalDateTime value) ``` @@ -846,57 +1209,57 @@ MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp | --- | --- | --- | | value | java.time.LocalDateTime | | -### setPdf417MacroTimeStamp(Date value) {#setPdf417MacroTimeStamp-java.util.Date-} +### setPdf417Truncate(boolean value) {#setPdf417Truncate-boolean-} ``` -public void setPdf417MacroTimeStamp(Date value) +public final void setPdf417Truncate(boolean value) ``` -MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode) +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | java.util.Date | | +| value | boolean | | -### setPdf417Truncate(boolean value) {#setPdf417Truncate-boolean-} +### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} ``` -public void setPdf417Truncate(boolean value) +public final void setReaderInitialization(boolean value) ``` -Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | | value | boolean | | -### setReaderInitialization(boolean value) {#setReaderInitialization-boolean-} +### setRows(int value) {#setRows-int-} ``` -public void setReaderInitialization(boolean value) +public final void setRows(int value) ``` -Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. +Rows count. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | boolean | | +| value | int | | -### setRows(int value) {#setRows-int-} +### setTruncate(boolean value) {#setTruncate-boolean-} ``` -public void setRows(int value) +public final void setTruncate(boolean value) ``` -Rows count. +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | boolean | | ### toString() {#toString--} ``` @@ -904,10 +1267,10 @@ public String toString() ``` -Returns a human-readable String representation of this Pdf417Parameters . +Returns a human-readable string representation of this [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). **Returns:** -java.lang.String - A String that represents this Pdf417Parameters . +java.lang.String - A string that represents this [Pdf417Parameters](../../com.aspose.barcode.generation/pdf417parameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/postalparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/postalparameters/_index.md index 3ed727434..16ac3e8ec 100644 --- a/english/androidjava/com.aspose.barcode.generation/postalparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/postalparameters/_index.md @@ -20,11 +20,13 @@ Postal parameters. Used for Postnet, Planet. | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getClass()](#getClass--) | | | [getPostalShortBarHeight()](#getPostalShortBarHeight--) | Short bar's height of Postal barcodes. | +| [getShortBarHeight()](#getShortBarHeight--) | Short bar's height of Postal barcodes. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setPostalShortBarHeight(Unit value)](#setPostalShortBarHeight-com.aspose.barcode.generation.Unit-) | Short bar's height of Postal barcodes. | -| [toString()](#toString--) | Returns a human-readable string representation of this PostalParameters . | +| [setShortBarHeight(Unit value)](#setShortBarHeight-com.aspose.barcode.generation.Unit-) | Short bar's height of Postal barcodes. | +| [toString()](#toString--) | Returns a human-readable string representation of this [PostalParameters](../../com.aspose.barcode.generation/postalparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -55,7 +57,17 @@ public final native Class getClass() java.lang.Class ### getPostalShortBarHeight() {#getPostalShortBarHeight--} ``` -public Unit getPostalShortBarHeight() +public final Unit getPostalShortBarHeight() +``` + + +Short bar's height of Postal barcodes. + +**Returns:** +[Unit](../../com.aspose.barcode.generation/unit) +### getShortBarHeight() {#getShortBarHeight--} +``` +public final Unit getShortBarHeight() ``` @@ -91,7 +103,20 @@ public final native void notifyAll() ### setPostalShortBarHeight(Unit value) {#setPostalShortBarHeight-com.aspose.barcode.generation.Unit-} ``` -public void setPostalShortBarHeight(Unit value) +public final void setPostalShortBarHeight(Unit value) +``` + + +Short bar's height of Postal barcodes. + +**Parameters:** +| Parameter | Type | Description | +| --- | --- | --- | +| value | [Unit](../../com.aspose.barcode.generation/unit) | | + +### setShortBarHeight(Unit value) {#setShortBarHeight-com.aspose.barcode.generation.Unit-} +``` +public final void setShortBarHeight(Unit value) ``` @@ -108,10 +133,10 @@ public String toString() ``` -Returns a human-readable string representation of this PostalParameters . +Returns a human-readable string representation of this [PostalParameters](../../com.aspose.barcode.generation/postalparameters). **Returns:** -java.lang.String - A string that represents this PostalParameters . +java.lang.String - A string that represents this [PostalParameters](../../com.aspose.barcode.generation/postalparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md b/english/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md index 5cd7a2961..282755886 100644 --- a/english/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/qrencodemode/_index.md @@ -21,7 +21,7 @@ Encoding mode for QR barcodes. > > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); > generator.setCodeText("12345TEXT"); -> generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ECI_ENCODING); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ECI_ENCODING); > generator.getParameters().getBarcode().getQR().setQrECIEncoding(ECIEncodings.UTF8); > generator.save("test.png"); > ``` @@ -38,7 +38,7 @@ Encoding mode for QR barcodes. > //generate barcode > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); > generator.setCodeText(textBuilder.getExtended()); -> generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.EXTENDED_CODETEXT); > generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); > generator.save("d:/test.png"); > @@ -69,7 +69,7 @@ Encoding mode for QR barcodes. > //generate barcode > BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); > generator.setCodeText(textBuilder.getExtended()); -> generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.EXTENDED_CODETEXT); +> generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.EXTENDED_CODETEXT); > generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); > generator.save("d:/test.png"); > ``` diff --git a/english/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md b/english/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md index 7fc020297..1c18703fe 100644 --- a/english/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/qrextcodetextbuilder/_index.md @@ -12,7 +12,7 @@ java.lang.Object, [com.aspose.barcode.generation.ExtCodetextBuilder](../../com.a public class QrExtCodetextBuilder extends ExtCodetextBuilder ``` -Extended codetext generator for 2D QR barcodes for ExtendedCodetext Mode of QrEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set visible text to removing managing characters. This sample shows how to use FNC1 first position in Extended Mode: QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); lTextBuilder.addFNC1FirstPosition(); lTextBuilder.addPlainCodetext("000%89%%0"); lTextBuilder.addFNC1GroupSeparator(); lTextBuilder.addPlainCodetext("12345"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setQrErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use FNC1 second position in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addFNC1SecondPosition("12"); TextBuilder.addPlainCodetext("TRUE3456"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setQrErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use multi ECI mode in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); TextBuilder.addECICodetext(ECIEncodings.UTF8, "Right"); TextBuilder.addECICodetext(ECIEncodings.UTF16BE, "Power"); TextBuilder.addPlainCodetext(@"t\\e\\\\st"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setQrErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); +Extended codetext generator for 2D QR barcodes for ExtendedCodetext Mode of QrEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set visible text to removing managing characters. This sample shows how to use FNC1 first position in Extended Mode: QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); lTextBuilder.addFNC1FirstPosition(); lTextBuilder.addPlainCodetext("000%89%%0"); lTextBuilder.addFNC1GroupSeparator(); lTextBuilder.addPlainCodetext("12345"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setQrErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use FNC1 second position in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addFNC1SecondPosition("12"); TextBuilder.addPlainCodetext("TRUE3456"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); This sample shows how to use multi ECI mode in Extended Mode. //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); TextBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); TextBuilder.addECICodetext(ECIEncodings.UTF8, "Right"); TextBuilder.addECICodetext(ECIEncodings.UTF16BE, "Power"); TextBuilder.addPlainCodetext(@"t\\e\\\\st"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); //generate BarcodeGenerator generator = new BarcodeGenerator(EncodeTypes.QR); generator.getParameters().getBarcode().getQR().setEncodeMode(QREncodeMode.ExtendedCodetext); generator.getParameters().getBarcode().getQR().setErrorLevel(QRErrorLevel.LevelL); generator.setCodeText(lCodetext); generatorgenerator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); generator.save("test.bmp"); ## Constructors | Constructor | Description | diff --git a/english/androidjava/com.aspose.barcode.generation/qrparameters/_index.md b/english/androidjava/com.aspose.barcode.generation/qrparameters/_index.md index 2b471700c..e4fc71a59 100644 --- a/english/androidjava/com.aspose.barcode.generation/qrparameters/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/qrparameters/_index.md @@ -20,27 +20,31 @@ QR parameters. | [equals(Object arg0)](#equals-java.lang.Object-) | | | [getAspectRatio()](#getAspectRatio--) | Height/Width ratio of 2D BarCode module. | | [getClass()](#getClass--) | | +| [getECIEncoding()](#getECIEncoding--) | Extended Channel Interpretation Identifiers. | +| [getEncodeMode()](#getEncodeMode--) | QR symbology type of BarCode's encoding mode. | +| [getErrorLevel()](#getErrorLevel--) | Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. | | [getMicroQRVersion()](#getMicroQRVersion--) | Version of MicroQR Code. | | [getQrECIEncoding()](#getQrECIEncoding--) | Extended Channel Interpretation Identifiers. | | [getQrEncodeMode()](#getQrEncodeMode--) | QR symbology type of BarCode's encoding mode. | | [getQrEncodeType()](#getQrEncodeType--) | QR / MicroQR selector mode. | -| [getQrErrorLevel()](#getQrErrorLevel--) | Level of Reed-Solomon error correction for QR barcode. | -| [getQrVersion()](#getQrVersion--) | Version of QR Code. | +| [getQrErrorLevel()](#getQrErrorLevel--) | Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. | +| [getQrVersion()](#getQrVersion--) | Version of QR Code.From Version1 to Version40. | | [getRectMicroQrVersion()](#getRectMicroQrVersion--) | Version of RectMicroQR Code. | | [getStructuredAppend()](#getStructuredAppend--) | QR structured append parameters. | +| [getVersion()](#getVersion--) | Version of QR Code.From Version1 to Version40. | | [hashCode()](#hashCode--) | | | [notify()](#notify--) | | | [notifyAll()](#notifyAll--) | | | [setAspectRatio(float value)](#setAspectRatio-float-) | Height/Width ratio of 2D BarCode module. | +| [setECIEncoding(int value)](#setECIEncoding-int-) | Extended Channel Interpretation Identifiers. | +| [setEncodeMode(QREncodeMode value)](#setEncodeMode-com.aspose.barcode.generation.QREncodeMode-) | QR symbology type of BarCode's encoding mode. | +| [setErrorLevel(QRErrorLevel value)](#setErrorLevel-com.aspose.barcode.generation.QRErrorLevel-) | Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. | | [setMicroQRVersion(MicroQRVersion value)](#setMicroQRVersion-com.aspose.barcode.generation.MicroQRVersion-) | Version of MicroQR Code. | -| [setQrECIEncoding(int value)](#setQrECIEncoding-int-) | Extended Channel Interpretation Identifiers. | -| [setQrEncodeMode(QREncodeMode value)](#setQrEncodeMode-com.aspose.barcode.generation.QREncodeMode-) | QR symbology type of BarCode's encoding mode. | | [setQrEncodeType(QREncodeType value)](#setQrEncodeType-com.aspose.barcode.generation.QREncodeType-) | QR / MicroQR selector mode. | -| [setQrErrorLevel(QRErrorLevel value)](#setQrErrorLevel-com.aspose.barcode.generation.QRErrorLevel-) | Level of Reed-Solomon error correction for QR barcode. | -| [setQrVersion(QRVersion value)](#setQrVersion-com.aspose.barcode.generation.QRVersion-) | Version of QR Code. | | [setRectMicroQrVersion(RectMicroQRVersion value)](#setRectMicroQrVersion-com.aspose.barcode.generation.RectMicroQRVersion-) | Version of RectMicroQR Code. | | [setStructuredAppend(QrStructuredAppendParameters value)](#setStructuredAppend-com.aspose.barcode.generation.QrStructuredAppendParameters-) | QR structured append parameters. | -| [toString()](#toString--) | Returns a human-readable string representation of this QrParameters . | +| [setVersion(QRVersion value)](#setVersion-com.aspose.barcode.generation.QRVersion-) | Version of QR Code.From Version1 to Version40. | +| [toString()](#toString--) | Returns a human-readable string representation of this [QrParameters](../../com.aspose.barcode.generation/qrparameters). | | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | @@ -61,7 +65,7 @@ public boolean equals(Object arg0) boolean ### getAspectRatio() {#getAspectRatio--} ``` -public float getAspectRatio() +public final float getAspectRatio() ``` @@ -79,9 +83,39 @@ public final native Class getClass() **Returns:** java.lang.Class +### getECIEncoding() {#getECIEncoding--} +``` +public final int getECIEncoding() +``` + + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. + +**Returns:** +int +### getEncodeMode() {#getEncodeMode--} +``` +public final QREncodeMode getEncodeMode() +``` + + +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. + +**Returns:** +[QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) +### getErrorLevel() {#getErrorLevel--} +``` +public final QRErrorLevel getErrorLevel() +``` + + +Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. + +**Returns:** +[QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) ### getMicroQRVersion() {#getMicroQRVersion--} ``` -public MicroQRVersion getMicroQRVersion() +public final MicroQRVersion getMicroQRVersion() ``` @@ -91,27 +125,27 @@ Version of MicroQR Code. From version M1 to version M4. Default value is MicroQR [MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) ### getQrECIEncoding() {#getQrECIEncoding--} ``` -public int getQrECIEncoding() +public final int getQrECIEncoding() ``` -Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. **Returns:** int ### getQrEncodeMode() {#getQrEncodeMode--} ``` -public QREncodeMode getQrEncodeMode() +public final QREncodeMode getQrEncodeMode() ``` -QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. **Returns:** [QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) ### getQrEncodeType() {#getQrEncodeType--} ``` -public QREncodeType getQrEncodeType() +public final QREncodeType getQrEncodeType() ``` @@ -121,27 +155,27 @@ QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for Mic [QREncodeType](../../com.aspose.barcode.generation/qrencodetype) ### getQrErrorLevel() {#getQrErrorLevel--} ``` -public QRErrorLevel getQrErrorLevel() +public final QRErrorLevel getQrErrorLevel() ``` -Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL\_L, LEVEL\_M, LEVEL\_Q, LEVEL\_H. see QRErrorLevel. +Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. **Returns:** [QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) ### getQrVersion() {#getQrVersion--} ``` -public QRVersion getQrVersion() +public final QRVersion getQrVersion() ``` -Version of QR Code. From Version1 to Version40. Default value is QRVersion.AUTO. +Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. **Returns:** [QRVersion](../../com.aspose.barcode.generation/qrversion) ### getRectMicroQrVersion() {#getRectMicroQrVersion--} ``` -public RectMicroQRVersion getRectMicroQrVersion() +public final RectMicroQRVersion getRectMicroQrVersion() ``` @@ -151,7 +185,7 @@ Version of RectMicroQR Code. From version R7x59 to version R17x139. Default valu [RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) ### getStructuredAppend() {#getStructuredAppend--} ``` -public QrStructuredAppendParameters getStructuredAppend() +public final QrStructuredAppendParameters getStructuredAppend() ``` @@ -159,6 +193,16 @@ QR structured append parameters. Structured append mode is not suppported by Mic **Returns:** [QrStructuredAppendParameters](../../com.aspose.barcode.generation/qrstructuredappendparameters) +### getVersion() {#getVersion--} +``` +public final QRVersion getVersion() +``` + + +Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. + +**Returns:** +[QRVersion](../../com.aspose.barcode.generation/qrversion) ### hashCode() {#hashCode--} ``` public native int hashCode() @@ -187,7 +231,7 @@ public final native void notifyAll() ### setAspectRatio(float value) {#setAspectRatio-float-} ``` -public void setAspectRatio(float value) +public final void setAspectRatio(float value) ``` @@ -198,109 +242,109 @@ Height/Width ratio of 2D BarCode module. | --- | --- | --- | | value | float | | -### setMicroQRVersion(MicroQRVersion value) {#setMicroQRVersion-com.aspose.barcode.generation.MicroQRVersion-} +### setECIEncoding(int value) {#setECIEncoding-int-} ``` -public void setMicroQRVersion(MicroQRVersion value) +public final void setECIEncoding(int value) ``` -Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) | | +| value | int | | -### setQrECIEncoding(int value) {#setQrECIEncoding-int-} +### setEncodeMode(QREncodeMode value) {#setEncodeMode-com.aspose.barcode.generation.QREncodeMode-} ``` -public void setQrECIEncoding(int value) +public final void setEncodeMode(QREncodeMode value) ``` -Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | int | | +| value | [QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) | | -### setQrEncodeMode(QREncodeMode value) {#setQrEncodeMode-com.aspose.barcode.generation.QREncodeMode-} +### setErrorLevel(QRErrorLevel value) {#setErrorLevel-com.aspose.barcode.generation.QRErrorLevel-} ``` -public void setQrEncodeMode(QREncodeMode value) +public final void setErrorLevel(QRErrorLevel value) ``` -QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. +Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [QREncodeMode](../../com.aspose.barcode.generation/qrencodemode) | | +| value | [QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) | | -### setQrEncodeType(QREncodeType value) {#setQrEncodeType-com.aspose.barcode.generation.QREncodeType-} +### setMicroQRVersion(MicroQRVersion value) {#setMicroQRVersion-com.aspose.barcode.generation.MicroQRVersion-} ``` -public void setQrEncodeType(QREncodeType value) +public final void setMicroQRVersion(MicroQRVersion value) ``` -QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. +Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [QREncodeType](../../com.aspose.barcode.generation/qrencodetype) | | +| value | [MicroQRVersion](../../com.aspose.barcode.generation/microqrversion) | | -### setQrErrorLevel(QRErrorLevel value) {#setQrErrorLevel-com.aspose.barcode.generation.QRErrorLevel-} +### setQrEncodeType(QREncodeType value) {#setQrEncodeType-com.aspose.barcode.generation.QREncodeType-} ``` -public void setQrErrorLevel(QRErrorLevel value) +public final void setQrEncodeType(QREncodeType value) ``` -Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL\_L, LEVEL\_M, LEVEL\_Q, LEVEL\_H. see QRErrorLevel. +QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [QRErrorLevel](../../com.aspose.barcode.generation/qrerrorlevel) | | +| value | [QREncodeType](../../com.aspose.barcode.generation/qrencodetype) | | -### setQrVersion(QRVersion value) {#setQrVersion-com.aspose.barcode.generation.QRVersion-} +### setRectMicroQrVersion(RectMicroQRVersion value) {#setRectMicroQrVersion-com.aspose.barcode.generation.RectMicroQRVersion-} ``` -public void setQrVersion(QRVersion value) +public final void setRectMicroQrVersion(RectMicroQRVersion value) ``` -Version of QR Code. From Version1 to Version40. Default value is QRVersion.AUTO. +Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [QRVersion](../../com.aspose.barcode.generation/qrversion) | | +| value | [RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) | | -### setRectMicroQrVersion(RectMicroQRVersion value) {#setRectMicroQrVersion-com.aspose.barcode.generation.RectMicroQRVersion-} +### setStructuredAppend(QrStructuredAppendParameters value) {#setStructuredAppend-com.aspose.barcode.generation.QrStructuredAppendParameters-} ``` -public void setRectMicroQrVersion(RectMicroQRVersion value) +public final void setStructuredAppend(QrStructuredAppendParameters value) ``` -Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. +QR structured append parameters. Structured append mode is not suppported by MicroQR and RectMicroQR barcodes. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [RectMicroQRVersion](../../com.aspose.barcode.generation/rectmicroqrversion) | | +| value | [QrStructuredAppendParameters](../../com.aspose.barcode.generation/qrstructuredappendparameters) | | -### setStructuredAppend(QrStructuredAppendParameters value) {#setStructuredAppend-com.aspose.barcode.generation.QrStructuredAppendParameters-} +### setVersion(QRVersion value) {#setVersion-com.aspose.barcode.generation.QRVersion-} ``` -public void setStructuredAppend(QrStructuredAppendParameters value) +public final void setVersion(QRVersion value) ``` -QR structured append parameters. Structured append mode is not suppported by MicroQR and RectMicroQR barcodes. +Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. **Parameters:** | Parameter | Type | Description | | --- | --- | --- | -| value | [QrStructuredAppendParameters](../../com.aspose.barcode.generation/qrstructuredappendparameters) | | +| value | [QRVersion](../../com.aspose.barcode.generation/qrversion) | | ### toString() {#toString--} ``` @@ -308,10 +352,10 @@ public String toString() ``` -Returns a human-readable string representation of this QrParameters . +Returns a human-readable string representation of this [QrParameters](../../com.aspose.barcode.generation/qrparameters). **Returns:** -java.lang.String - A string that represents this QrParameters . +java.lang.String - A string that represents this [QrParameters](../../com.aspose.barcode.generation/qrparameters). ### wait() {#wait--} ``` public final void wait() diff --git a/english/androidjava/com.aspose.barcode.generation/unit/_index.md b/english/androidjava/com.aspose.barcode.generation/unit/_index.md index 9f1cb9a23..ec4c921ec 100644 --- a/english/androidjava/com.aspose.barcode.generation/unit/_index.md +++ b/english/androidjava/com.aspose.barcode.generation/unit/_index.md @@ -27,7 +27,6 @@ Specifies the size value in different units (Pixel, Inches, etc.). | Constructor | Description | | --- | --- | -| [Unit(float value, GraphicsUnit graphicsUnit)](#Unit-float-com.aspose.barcode.generation.GraphicsUnit-) | Initializes a new instance of the Unit class. | | [Unit(Unit source)](#Unit-com.aspose.barcode.generation.Unit-) | | ## Methods @@ -54,20 +53,6 @@ Specifies the size value in different units (Pixel, Inches, etc.). | [wait()](#wait--) | | | [wait(long arg0)](#wait-long-) | | | [wait(long arg0, int arg1)](#wait-long-int-) | | -### Unit(float value, GraphicsUnit graphicsUnit) {#Unit-float-com.aspose.barcode.generation.GraphicsUnit-} -``` -public Unit(float value, GraphicsUnit graphicsUnit) -``` - - -Initializes a new instance of the Unit class. It's using only in autogenerated code for UserControl, please don't use it. - -**Parameters:** -| Parameter | Type | Description | -| --- | --- | --- | -| value | float | Size value the new Unit in the units specified by the graphicsUnit parameter. | -| graphicsUnit | [GraphicsUnit](../../com.aspose.barcode.generation/graphicsunit) | The GraphicsUnit of the new Unit object. | - ### Unit(Unit source) {#Unit-com.aspose.barcode.generation.Unit-} ``` public Unit(Unit source) diff --git a/english/nodejs/_index.md b/english/nodejs/_index.md index 38492c70f..9dcc8eeac 100644 --- a/english/nodejs/_index.md +++ b/english/nodejs/_index.md @@ -1,9 +1,176 @@ --- -title: Aspose.BarCode for Node.js via Java +title: "Aspose.BarCode for Node.js via Java" +linktitle: "Aspose.BarCode for Node.js via Java" +articleTitle: "Aspose.BarCode for Node.js via Java" +description: "API reference for Aspose.BarCode for Node.js via Java." type: docs weight: 15 url: /nodejs/ -keywords: -description: +keywords: "Aspose.BarCode for Node.js via Java, Aspose.BarCode, Aspose API Reference" is_root: true ---- \ No newline at end of file +--- +## Classes + +| Class | Description | +| --- | --- | +| [Address](./address/) | Address of creditor or debtor. | +| [AlternativeScheme](./alternativescheme/) | Alternative payment scheme instructions. | +| [AustraliaPostSettings](./australiapostsettings/) | AustraliaPost decoding parameters. Contains parameters which make influence on recognized data of AustraliaPost symbology. | +| [AustralianPostParameters](./australianpostparameters/) | AustralianPost barcode parameters. | +| [AztecExtCodetextBuilder](./aztecextcodetextbuilder/) | This sample shows how to use AztecExtCodetextBuilder in Extended Mode. | +| [AztecExtendedParameters](./aztecextendedparameters/) | Stores special data of Aztec recognized barcode. | +| [AztecParameters](./aztecparameters/) | Aztec parameters. | +| [BarCodeExtendedParameters](./barcodeextendedparameters/) | Stores extended parameters of recognized barcode. | +| [BarCodeReader](./barcodereader/) | BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform ReadBarCodes operation to detect barcodes. | +| [BarCodeRegionParameters](./barcoderegionparameters/) | Represents the recognized barcode's region and barcode angle. | +| [BarCodeResult](./barcoderesult/) | Stores recognized barcode data like SingleDecodeType type, string codetext, BarCodeRegionParameters region and other parameters. | +| [BarcodeGenerator](./barcodegenerator/) | BarcodeGenerator for backend barcode images generation. supported symbologies: 1D: Codabar, Code11, Code128, Code39Standard, Code39Extended Code93Standard, Code93Extended, EAN13, EAN8, Interleaved2of5, MSI, Standard2of5, UPCA, UPCE, ISBN, GS1Code128, Postnet, Planet EAN14, SCC14, SSCC18, ITF14... | +| [BarcodeParameters](./barcodeparameters/) | Barcode generation parameters. | +| [BarcodeSettings](./barcodesettings/) | The main BarCode decoding parameters. Contains parameters which make influence on recognized data. | +| [BaseGenerationParameters](./basegenerationparameters/) | Barcode image generation parameters. | +| [BorderParameters](./borderparameters/) | Barcode image border parameters. | +| [CMYKColor](./cmykcolor/) | Class for CMYK color. A null instance means CMYK is not used, and default RGB color is in use. | +| [CaptionParameters](./captionparameters/) | Caption parameters. | +| [CodabarExtendedParameters](./codabarextendedparameters/) | Stores a Codabar additional information of recognized barcode. | +| [CodabarParameters](./codabarparameters/) | Codabar parameters. | +| [CodablockParameters](./codablockparameters/) | Codablock parameters. | +| [Code128DataPortion](./code128dataportion/) | Contains the data of subtype for Code128 type barcode. | +| [Code128ExtendedParameters](./code128extendedparameters/) | Stores special data of Code128 recognized barcode Represents the recognized barcode's region and barcode angle. | +| [Code128Parameters](./code128parameters/) | Code128 parameters. | +| [Code16KParameters](./code16kparameters/) | Code16K parameters. | +| [CodetextParameters](./codetextparameters/) | Codetext parameters. | +| [ComplexBarcodeGenerator](./complexbarcodegenerator/) | ComplexBarcodeGenerator for backend complex barcode (e.g. SwissQR) images generation. | +| [ComplexCodetextReader](./complexcodetextreader/) | ComplexCodetextReader decodes codetext to specified complex barcode type. | +| [CouponParameters](./couponparameters/) | Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. | +| [DataBarExtendedParameters](./databarextendedparameters/) | Stores a DataBar additional information of recognized barcode. | +| [DataBarParameters](./databarparameters/) | Databar parameters. | +| [DataElement](./dataelement/) | Represents a jurisdiction-specific data field used in documents, for example ElementID = "ZVA" with Value = "01". | +| [DataMatrixExtCodetextBuilder](./datamatrixextcodetextbuilder/) | | +| [DataMatrixExtendedParameters](./datamatrixextendedparameters/) | Stores special data of DataMatrix recognized barcode. | +| [DataMatrixParameters](./datamatrixparameters/) | DataMatrix parameters. | +| [DotCodeExtCodetextBuilder](./dotcodeextcodetextbuilder/) | Extended codetext generator for 2D DotCode barcodes for ExtendedCodetext Mode of DotCodeEncodeMode. | +| [DotCodeExtendedParameters](./dotcodeextendedparameters/) | Stores special data of DotCode recognized barcode. | +| [DotCodeParameters](./dotcodeparameters/) | DotCode parameters. | +| [ExtCodetextBuilder](./extcodetextbuilder/) | Helper class for automatic codetext generation of the Extended Codetext Mode. | +| [FontUnit](./fontunit/) | Defines a particular format for text, including font face, size, and style attributes where size in Unit value property. | +| [GS1CompositeBarExtendedParameters](./gs1compositebarextendedparameters/) | Stores special data of GS1 Composite Bar recognized barcode. | +| [GS1CompositeBarParameters](./gs1compositebarparameters/) | GS1 Composite bar parameters. | +| [HIBCLICCombinedCodetext](./hibcliccombinedcodetext/) | Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary and secodary data. | +| [HIBCLICComplexCodetext](./hibcliccomplexcodetext/) | Base class for encoding and decoding the text embedded in the HIBC LIC code. | +| [HIBCLICPrimaryDataCodetext](./hibclicprimarydatacodetext/) | Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary data. | +| [HIBCLICSecondaryAndAdditionalDataCodetext](./hibclicsecondaryandadditionaldatacodetext/) | Class for encoding and decoding the text embedded in the HIBC LIC code which stores seconday data. | +| [HIBCPASCodetext](./hibcpascodetext/) | Class for encoding and decoding the text embedded in the HIBC PAS code. | +| [HIBCPASRecord](./hibcpasrecord/) | Class for storing HIBC PAS record. | +| [HanXinExtCodetextBuilder](./hanxinextcodetextbuilder/) | | +| [HanXinParameters](./hanxinparameters/) | Han Xin parameters. | +| [HslaColor](./hslacolor/) | Class for representing HSLA color (Hue, Saturation, Lightness, Alpha). | +| [IComplexCodetext](./icomplexcodetext/) | Interface for complex codetext used with ComplexBarcodeGenerator. | +| [ITFParameters](./itfparameters/) | ITF parameters. | +| [ImageParameters](./imageparameters/) | Image parameters. | +| [Mailmark2DCodetext](./mailmark2dcodetext/) | Class for encoding and decoding the text embedded in the Royal Mail 2D Mailmark code. | +| [MailmarkCodetext](./mailmarkcodetext/) | Class for encoding and decoding the text embedded in the 4-state Royal Mailmark code. | +| [MandatoryFields](./mandatoryfields/) | Mandatory elements (fields) of the card. | +| [MaxiCodeCodetext](./maxicodecodetext/) | Base class for encoding and decoding the text embedded in the MaxiCode code. | +| [MaxiCodeCodetextMode2](./maxicodecodetextmode2/) | Class for encoding and decoding the text embedded in the MaxiCode code for modes 2. | +| [MaxiCodeCodetextMode3](./maxicodecodetextmode3/) | Class for encoding and decoding the text embedded in the MaxiCode code for modes 3. This sample shows how to encode and decode MaxiCode codetext for mode 3. | +| [MaxiCodeExtCodetextBuilder](./maxicodeextcodetextbuilder/) | Extended codetext generator for MaxiCode barcodes for ExtendedCodetext Mode of MaxiCodeEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set visible text to removing managing characters. This sample shows how to use MaxiCodeExtCodetextBuilder in Extended Mode. | +| [MaxiCodeExtendedParameters](./maxicodeextendedparameters/) | Stores a MaxiCode additional information of recognized barcode. | +| [MaxiCodeParameters](./maxicodeparameters/) | MaxiCode parameters. | +| [MaxiCodeSecondMessage](./maxicodesecondmessage/) | Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. | +| [MaxiCodeStandardCodetext](./maxicodestandardcodetext/) | Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. | +| [MaxiCodeStandardSecondMessage](./maxicodestandardsecondmessage/) | Class for encoding and decoding standart second message for MaxiCode barcode. | +| [MaxiCodeStandartSecondMessage](./maxicodestandartsecondmessage/) | Class for encoding and decoding standart second message for MaxiCode barcode. | +| [MaxiCodeStructuredCodetext](./maxicodestructuredcodetext/) | Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3. | +| [MaxiCodeStructuredSecondMessage](./maxicodestructuredsecondmessage/) | Class for encoding and decoding structured second message for MaxiCode barcode. | +| [OneDExtendedParameters](./onedextendedparameters/) | Stores special data of 1D recognized barcode like separate codetext and checksum. | +| [OptionalFields](./optionalfields/) | Optional elements (fields) of the card. | +| [Padding](./padding/) | Paddings parameters. | +| [PatchCodeParameters](./patchcodeparameters/) | PatchCode parameters. | +| [Pdf417ExtendedParameters](./pdf417extendedparameters/) | Stores a MacroPdf417 metadata information of recognized barcode. | +| [Pdf417Parameters](./pdf417parameters/) | PDF417 parameters. Contains PDF417, MacroPDF417, MicroPDF417 and GS1MicroPdf417 parameters. MacroPDF417 requires two fields: Pdf417MacroFileID and Pdf417MacroSegmentID. All other fields are optional. MicroPDF417 in Structured Append mode (same as MacroPDF417 mode) requires two fields:... | +| [PdfParameters](./pdfparameters/) | PDF parameters wrapper. Expects an underlying `javaClass` instance that provides the corresponding getter/setter methods returning/accepting CMYK strings like "30_100_0_30" or `null`. | +| [PostalParameters](./postalparameters/) | Postal parameters. Used for Postnet, Planet. | +| [PrimaryData](./primarydata/) | Class for storing HIBC LIC primary data. | +| [QRExtendedParameters](./qrextendedparameters/) | Stores a QR Structured Append information of recognized barcode. | +| [QrExtCodetextBuilder](./qrextcodetextbuilder/) | | +| [QrParameters](./qrparameters/) | QR parameters. | +| [QrStructuredAppendParameters](./qrstructuredappendparameters/) | QR structured append parameters. | +| [Quadrangle](./quadrangle/) | Stores a set of four Points that represent a Quadrangle region. | +| [QualitySettings](./qualitysettings/) | QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. | +| [RecognitionAbortedException](./recognitionabortedexception/) | Represents recognition abort exception which is thrown in timeout exceeding during recognition with BarCodeReader. | +| [SecondaryAndAdditionalData](./secondaryandadditionaldata/) | Class for storing HIBC LIC secondary and additional data. | +| [SubfileProperties](./subfileproperties/) | USA DL subfile properties, offset and length are set automatically. | +| [SupplementParameters](./supplementparameters/) | Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. | +| [SvgParameters](./svgparameters/) | SVG parameters. | +| [SwissQRBill](./swissqrbill/) | SwissQR bill data. | +| [SwissQRCodetext](./swissqrcodetext/) | Class for encoding and decoding the text embedded in the SwissQR code. | +| [USADriveIdCodetext](./usadriveidcodetext/) | Class for encoding and decoding the text embedded in the USA Driving License PDF417 code. | +| [USADriveIdJurisdSubfile](./usadriveidjurisdsubfile/) | Class for Jurisdiction specific fields for USA DL. | +| [Unit](./unit/) | Specifies the size value in different units (Pixel, Inches, etc.). | + +## Enumeration + +| Enumeration | Description | +| --- | --- | +| [AddressType](./addresstype/) | Address type. | +| [AutoSizeMode](./autosizemode/) | Specifies the different types of automatic sizing modes. Default value is AutoSizeMode.NONE. | +| [AztecEncodeMode](./aztecencodemode/) | Encoding mode for Aztec barcodes. | +| [AztecSymbolMode](./aztecsymbolmode/) | Specifies the Aztec symbol mode. | +| [BarCodeConfidence](./barcodeconfidence/) | Contains recognition confidence level. | +| [BarCodeImageFormat](./barcodeimageformat/) | Specifies the file format of the image. | +| [BarcodeClassifications](./barcodeclassifications/) | BarcodeClassifications EncodeTypes classification. | +| [BarcodeQualityMode](./barcodequalitymode/) | Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. | +| [BorderDashStyle](./borderdashstyle/) | Specifies the style of dashed border lines. | +| [ChecksumValidation](./checksumvalidation/) | Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5... | +| [CodabarChecksumMode](./codabarchecksummode/) | Specifies the checksum algorithm for Codabar. | +| [CodabarSymbol](./codabarsymbol/) | Specifies the start or stop symbol of the Codabar barcode specification. | +| [Code128EncodeMode](./code128encodemode/) | Encoding mode for Code128 barcodes. Code 128 specification. | +| [Code128SubType](./code128subtype/) | Contains types of Code128 subset. | +| [CodeLocation](./codelocation/) | Codetext location. | +| [ComplexBackgroundMode](./complexbackgroundmode/) | Mode which enables or disables additional recognition of color barcodes on color images. | +| [CustomerInformationInterpretingType](./customerinformationinterpretingtype/) | Defines the interpreting type(C_TABLE or N_TABLE) of customer information for AustralianPost BarCode. | +| [DataMatrixEccType](./datamatrixecctype/) | Specify the type of the ECC to encode. | +| [DataMatrixEncodeMode](./datamatrixencodemode/) | DataMatrix encoder's encoding mode, default to Auto. | +| [DataMatrixVersion](./datamatrixversion/) | Specify the type of the ECC to encode. | +| [DecodeType](./decodetype/) | Specify the type of barcode to read. | +| [DeconvolutionMode](./deconvolutionmode/) | Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the... | +| [DotCodeEncodeMode](./dotcodeencodemode/) | Encoding mode for DotCode barcodes. | +| [ECIEncodings](./eciencodings/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Currently, it is used only for QR 2D barcode. | +| [EnableChecksum](./enablechecksum/) | | +| [EncodeTypes](./encodetypes/) | Specifies the type of barcode to encode. | +| [FontMode](./fontmode/) | Font size mode. | +| [FontStyle](./fontstyle/) | FontStyle classification. | +| [GraphicsUnit](./graphicsunit/) | Specifies the unit of measure for the given data. | +| [HIBCLICDateFormat](./hibclicdateformat/) | Specifies the different types of date formats for HIBC LIC. | +| [HIBCPASDataLocation](./hibcpasdatalocation/) | HIBC PAS data location types. | +| [HIBCPASDataType](./hibcpasdatatype/) | HIBC PAS record's data types. | +| [HanXinEncodeMode](./hanxinencodemode/) | Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese characters or Unicode for Unicode characters. | +| [HanXinErrorLevel](./hanxinerrorlevel/) | Level of Reed-Solomon error correction. From low to high: L1, L2, L3, L4. | +| [HanXinVersion](./hanxinversion/) | Version of Han Xin Code. From Version01 - 23 x 23 modules to Version84 - 189 x 189 modules, increasing in steps of 2 modules per side. | +| [ITF14BorderType](./itf14bordertype/) | ITF14 barcode's border type. | +| [InverseImageMode](./inverseimagemode/) | Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). | +| [MacroCharacter](./macrocharacter/) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. 05 Macro craracter is translated to "[)>\u001E05\u001D" as decoded data header and "\u001E\u0004" as decoded data trailer. 06 Macro craracter is translated to "[)>\u001E06\u001D" as decoded data header and... | +| [Mailmark2DType](./mailmark2dtype/) | 2D Mailmark Type defines size of Data Matrix barcode. | +| [MaxiCodeEncodeMode](./maxicodeencodemode/) | Encoding mode for MaxiCode barcodes. | +| [MaxiCodeMode](./maxicodemode/) | Encoding mode for MaxiCode barcodes. | +| [MicroQRVersion](./microqrversion/) | Version of MicroQR Code. From M1 to M4. | +| [PatchFormat](./patchformat/) | PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. | +| [Pdf417CompactionMode](./pdf417compactionmode/) | Pdf417 barcode's compation mode. | +| [Pdf417EncodeMode](./pdf417encodemode/) | Pdf417 barcode encode mode. | +| [Pdf417ErrorLevel](./pdf417errorlevel/) | pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction. | +| [Pdf417MacroTerminator](./pdf417macroterminator/) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. | +| [QREncodeMode](./qrencodemode/) | Encoding mode for QR barcodes. | +| [QREncodeType](./qrencodetype/) | QR / MicroQR selector mode. Select FORCE_QR for standard QR symbols, AUTO for MicroQR. FORCE_MICRO_QR is used for strongly MicroQR symbol generation if it is possible. | +| [QRErrorLevel](./qrerrorlevel/) | Level of Reed-Solomon error correction. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. | +| [QRVersion](./qrversion/) | Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. | +| [QrBillStandardVersion](./qrbillstandardversion/) | SwissQR bill standard version. | +| [RectMicroQRVersion](./rectmicroqrversion/) | Version of RectMicroQR Code. From version R7x43 to version R17x139. | +| [SvgColorMode](./svgcolormode/) | Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter. | +| [TextAlignment](./textalignment/) | Text alignment. | +| [TwoDComponentType](./twodcomponenttype/) | Type of 2D component This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '/'. | +| [USADriveIdCountry](./usadriveidcountry/) | Enum for Country Identification in the US Driver's License. | +| [USADriveIdEyeColor](./usadriveideyecolor/) | Enum for Eye Color in the US Driver's License. | +| [USADriveIdHairColor](./usadriveidhaircolor/) | Enum for Hair Color in the US Driver's License. | +| [USADriveIdSex](./usadriveidsex/) | Enum for Sex field in the US Driver's License. | +| [XDimensionMode](./xdimensionmode/) | Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. | + diff --git a/english/nodejs/address/_index.md b/english/nodejs/address/_index.md new file mode 100644 index 000000000..e43274395 --- /dev/null +++ b/english/nodejs/address/_index.md @@ -0,0 +1,61 @@ +--- +title: "Address Class" +linktitle: "Address" +articleTitle: "Address" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Address of creditor or debtor." +type: docs +weight: 40 +url: /nodejs/address/ +--- +## Address class + +Address of creditor or debtor. + +```javascript +public class Address : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Address](./address/#constructor) | Initializes a new instance of the Address class. | + +## Methods + +| Name | Description | +| --- | --- | +| [clear](./clear/) | Clears all fields and sets the type to AddressType.UNDETERMINED. | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Determines whether the specified object is equal to the current object. | +| [getAddressLine1](./getaddressline1/) | Gets the address line 1. | +| [getAddressLine2](./getaddressline2/) | Gets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING. This field is only used for combined elements addresses. For... | +| [getCountryCode](./getcountrycode/) | Gets the two-letter ISO country code. | +| [getHouseNo](./gethouseno/) | Gets the house number. | +| [getName](./getname/) | Gets the name, either the first and last name of a natural person or the company name of a legal person. | +| [getPostalCode](./getpostalcode/) | Gets the postal code. | +| [getStreet](./getstreet/) | Gets the street. The street must be speicfied without house number. Setting this field sets the address type to AddressType.STRUCTURED unless it's already AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING. This field is only used for structured addresses and is... | +| [getTown](./gettown/) | Gets the town or city. | +| [getType](./gettype/) | Gets the address type. | +| [hashCode](./hashcode/) | Gets the hash code for this instance. | +| [init](./init/) | | +| [setAddressLine1](./setaddressline1/)(*object*) | Sets the address line 1. | +| [setAddressLine2](./setaddressline2/)(*object*) | Sets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING. This field is only used for combined elements addresses. For... | +| [setCountryCode](./setcountrycode/)(*object*) | Sets the two-letter ISO country code. | +| [setHouseNo](./sethouseno/)(*object*) | Sets the house number. | +| [setName](./setname/)(*object*) | Sets the name, either the first and last name of a natural person or the company name of a legal person. | +| [setPostalCode](./setpostalcode/)(*object*) | Sets the postal code. | +| [setStreet](./setstreet/)(*object*) | Sets the street. | +| [setTown](./settown/)(*object*) | Sets the town or city. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/address/address/_index.md b/english/nodejs/address/address/_index.md new file mode 100644 index 000000000..db4354e7e --- /dev/null +++ b/english/nodejs/address/address/_index.md @@ -0,0 +1,23 @@ +--- +title: "Address" +linktitle: "Address" +articleTitle: "Address" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Address class." +type: docs +weight: 10 +url: /nodejs/address/address/ +--- +## Address() {#constructor} + +Initializes a new instance of the Address class. + +```javascript +public Address() +``` + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/clear/_index.md b/english/nodejs/address/clear/_index.md new file mode 100644 index 000000000..f2d11070a --- /dev/null +++ b/english/nodejs/address/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: "Address.clear" +linktitle: "clear" +articleTitle: "clear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Clears all fields and sets the type to AddressType.UNDETERMINED." +type: docs +weight: 210 +url: /nodejs/address/clear/ +--- +## clear() {#clear} + +Clears all fields and sets the type to AddressType.UNDETERMINED. + +```javascript +clear() +``` + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/construct/_index.md b/english/nodejs/address/construct/_index.md new file mode 100644 index 000000000..06324de97 --- /dev/null +++ b/english/nodejs/address/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/address/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/equals/_index.md b/english/nodejs/address/equals/_index.md new file mode 100644 index 000000000..d04b127e8 --- /dev/null +++ b/english/nodejs/address/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "Address.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines whether the specified object is equal to the current object." +type: docs +weight: 220 +url: /nodejs/address/equals/ +--- +## equals(object) {#equals} + +Determines whether the specified object is equal to the current object. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | The object to compare with the current object.
| + +### Return Value + +true + +if the specified object is equal to the current object; otherwise, false. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getaddressline1/_index.md b/english/nodejs/address/getaddressline1/_index.md new file mode 100644 index 000000000..a7914ff5f --- /dev/null +++ b/english/nodejs/address/getaddressline1/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getAddressLine1" +linktitle: "getAddressLine1" +articleTitle: "getAddressLine1" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the address line 1." +type: docs +weight: 70 +url: /nodejs/address/getaddressline1/ +--- +## getAddressLine1() {#getaddressline1} + +Gets the address line 1. + +```javascript +getAddressLine1() +``` + +### Return Value + +The + +address line 1. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getaddressline2/_index.md b/english/nodejs/address/getaddressline2/_index.md new file mode 100644 index 000000000..882749b9e --- /dev/null +++ b/english/nodejs/address/getaddressline2/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getAddressLine2" +linktitle: "getAddressLine2" +articleTitle: "getAddressLine2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's ..." +type: docs +weight: 90 +url: /nodejs/address/getaddressline2/ +--- +## getAddressLine2() {#getaddressline2} + +Gets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING. This field is only used for combined elements addresses. For this type, it's mandatory. + +```javascript +getAddressLine2() +``` + +### Return Value + +The + +address line 2. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getcountrycode/_index.md b/english/nodejs/address/getcountrycode/_index.md new file mode 100644 index 000000000..c5190f8b9 --- /dev/null +++ b/english/nodejs/address/getcountrycode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getCountryCode" +linktitle: "getCountryCode" +articleTitle: "getCountryCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the two-letter ISO country code." +type: docs +weight: 190 +url: /nodejs/address/getcountrycode/ +--- +## getCountryCode() {#getcountrycode} + +Gets the two-letter ISO country code. + +```javascript +getCountryCode() +``` + +### Return Value + +The + +ISO country code. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/gethouseno/_index.md b/english/nodejs/address/gethouseno/_index.md new file mode 100644 index 000000000..35ce27417 --- /dev/null +++ b/english/nodejs/address/gethouseno/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getHouseNo" +linktitle: "getHouseNo" +articleTitle: "getHouseNo" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the house number." +type: docs +weight: 130 +url: /nodejs/address/gethouseno/ +--- +## getHouseNo() {#gethouseno} + +Gets the house number. + +```javascript +getHouseNo() +``` + +### Return Value + +The + +house number. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getname/_index.md b/english/nodejs/address/getname/_index.md new file mode 100644 index 000000000..e1a5def93 --- /dev/null +++ b/english/nodejs/address/getname/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getName" +linktitle: "getName" +articleTitle: "getName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the name, either the first and last name of a natural person or the company name of a legal person." +type: docs +weight: 50 +url: /nodejs/address/getname/ +--- +## getName() {#getname} + +Gets the name, either the first and last name of a natural person or the company name of a legal person. + +```javascript +getName() +``` + +### Return Value + +The + +name. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getpostalcode/_index.md b/english/nodejs/address/getpostalcode/_index.md new file mode 100644 index 000000000..def67841c --- /dev/null +++ b/english/nodejs/address/getpostalcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getPostalCode" +linktitle: "getPostalCode" +articleTitle: "getPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the postal code." +type: docs +weight: 150 +url: /nodejs/address/getpostalcode/ +--- +## getPostalCode() {#getpostalcode} + +Gets the postal code. + +```javascript +getPostalCode() +``` + +### Return Value + +The + +postal code. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/getstreet/_index.md b/english/nodejs/address/getstreet/_index.md new file mode 100644 index 000000000..9a342f995 --- /dev/null +++ b/english/nodejs/address/getstreet/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getStreet" +linktitle: "getStreet" +articleTitle: "getStreet" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the street. The street must be speicfied without house number. Setting this field sets the address type to AddressType.STRUCTURED unless it's already Ad..." +type: docs +weight: 110 +url: /nodejs/address/getstreet/ +--- +## getStreet() {#getstreet} + +Gets the street. The street must be speicfied without house number. Setting this field sets the address type to AddressType.STRUCTURED unless it's already AddressType.COMBINED_ELEMENTS, in which case it becomes AddressType.CONFLICTING. This field is only used for structured addresses and is optional. + +```javascript +getStreet() +``` + +### Return Value + +The + +street. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/gettown/_index.md b/english/nodejs/address/gettown/_index.md new file mode 100644 index 000000000..86bc47412 --- /dev/null +++ b/english/nodejs/address/gettown/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getTown" +linktitle: "getTown" +articleTitle: "getTown" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the town or city." +type: docs +weight: 170 +url: /nodejs/address/gettown/ +--- +## getTown() {#gettown} + +Gets the town or city. + +```javascript +getTown() +``` + +### Return Value + +The + +town or city. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/gettype/_index.md b/english/nodejs/address/gettype/_index.md new file mode 100644 index 000000000..ed060cf62 --- /dev/null +++ b/english/nodejs/address/gettype/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.getType" +linktitle: "getType" +articleTitle: "getType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the address type." +type: docs +weight: 40 +url: /nodejs/address/gettype/ +--- +## getType() {#gettype} + +Gets the address type. + +```javascript +getType() +``` + +### Return Value + +The + +address type. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/hashcode/_index.md b/english/nodejs/address/hashcode/_index.md new file mode 100644 index 000000000..365bdee6e --- /dev/null +++ b/english/nodejs/address/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Address.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the hash code for this instance." +type: docs +weight: 230 +url: /nodejs/address/hashcode/ +--- +## hashCode() {#hashcode} + +Gets the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +hash code for the current object. + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/init/_index.md b/english/nodejs/address/init/_index.md new file mode 100644 index 000000000..0ed9d16aa --- /dev/null +++ b/english/nodejs/address/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Address.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 240 +url: /nodejs/address/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setaddressline1/_index.md b/english/nodejs/address/setaddressline1/_index.md new file mode 100644 index 000000000..0056b9dd6 --- /dev/null +++ b/english/nodejs/address/setaddressline1/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setAddressLine1" +linktitle: "setAddressLine1" +articleTitle: "setAddressLine1" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the address line 1." +type: docs +weight: 80 +url: /nodejs/address/setaddressline1/ +--- +## setAddressLine1(object) {#setaddressline1} + +Sets the address line 1. + +```javascript +setAddressLine1(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setaddressline2/_index.md b/english/nodejs/address/setaddressline2/_index.md new file mode 100644 index 000000000..af11ef809 --- /dev/null +++ b/english/nodejs/address/setaddressline2/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setAddressLine2" +linktitle: "setAddressLine2" +articleTitle: "setAddressLine2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's ..." +type: docs +weight: 100 +url: /nodejs/address/setaddressline2/ +--- +## setAddressLine2(object) {#setaddressline2} + +Sets the address line 2. Address line 2 contains postal code and town. Setting this field sets the address type to AddressType.COMBINED_ELEMENTS unless it's already AddressType.STRUCTURED, in which case it becomes AddressType.CONFLICTING. This field is only used for combined elements addresses. For this type, it's mandatory. + +```javascript +setAddressLine2(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setcountrycode/_index.md b/english/nodejs/address/setcountrycode/_index.md new file mode 100644 index 000000000..40cd08ad5 --- /dev/null +++ b/english/nodejs/address/setcountrycode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setCountryCode" +linktitle: "setCountryCode" +articleTitle: "setCountryCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the two-letter ISO country code." +type: docs +weight: 200 +url: /nodejs/address/setcountrycode/ +--- +## setCountryCode(object) {#setcountrycode} + +Sets the two-letter ISO country code. + +```javascript +setCountryCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The ISO country code.
| + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/sethouseno/_index.md b/english/nodejs/address/sethouseno/_index.md new file mode 100644 index 000000000..46ad2ed9e --- /dev/null +++ b/english/nodejs/address/sethouseno/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setHouseNo" +linktitle: "setHouseNo" +articleTitle: "setHouseNo" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the house number." +type: docs +weight: 140 +url: /nodejs/address/sethouseno/ +--- +## setHouseNo(object) {#sethouseno} + +Sets the house number. + +```javascript +setHouseNo(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setname/_index.md b/english/nodejs/address/setname/_index.md new file mode 100644 index 000000000..b2240894e --- /dev/null +++ b/english/nodejs/address/setname/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setName" +linktitle: "setName" +articleTitle: "setName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the name, either the first and last name of a natural person or the company name of a legal person." +type: docs +weight: 60 +url: /nodejs/address/setname/ +--- +## setName(object) {#setname} + +Sets the name, either the first and last name of a natural person or the company name of a legal person. + +```javascript +setName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setpostalcode/_index.md b/english/nodejs/address/setpostalcode/_index.md new file mode 100644 index 000000000..a735bb9df --- /dev/null +++ b/english/nodejs/address/setpostalcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setPostalCode" +linktitle: "setPostalCode" +articleTitle: "setPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the postal code." +type: docs +weight: 160 +url: /nodejs/address/setpostalcode/ +--- +## setPostalCode(object) {#setpostalcode} + +Sets the postal code. + +```javascript +setPostalCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The postal code. | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/setstreet/_index.md b/english/nodejs/address/setstreet/_index.md new file mode 100644 index 000000000..942ad1133 --- /dev/null +++ b/english/nodejs/address/setstreet/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setStreet" +linktitle: "setStreet" +articleTitle: "setStreet" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the street." +type: docs +weight: 120 +url: /nodejs/address/setstreet/ +--- +## setStreet(object) {#setstreet} + +Sets the street. + +```javascript +setStreet(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/address/settown/_index.md b/english/nodejs/address/settown/_index.md new file mode 100644 index 000000000..98780a310 --- /dev/null +++ b/english/nodejs/address/settown/_index.md @@ -0,0 +1,27 @@ +--- +title: "Address.setTown" +linktitle: "setTown" +articleTitle: "setTown" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the town or city." +type: docs +weight: 180 +url: /nodejs/address/settown/ +--- +## setTown(object) {#settown} + +Sets the town or city. + +```javascript +setTown(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The town or city. | + +### See Also + +* class [Address](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/addresstype/_index.md b/english/nodejs/addresstype/_index.md new file mode 100644 index 000000000..986d203b3 --- /dev/null +++ b/english/nodejs/addresstype/_index.md @@ -0,0 +1,31 @@ +--- +title: "AddressType Enum" +linktitle: "AddressType" +articleTitle: "AddressType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Address type." +type: docs +weight: 50 +url: /nodejs/addresstype/ +--- +## AddressType enumeration + +Address type + +```javascript +public enum AddressType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| UNDETERMINED | `0` | Undetermined | +| STRUCTURED | `1` | Structured address | +| COMBINED_ELEMENTS | `2` | Combined address elements | +| CONFLICTING | `3` | Conflicting | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/alternativescheme/_index.md b/english/nodejs/alternativescheme/_index.md new file mode 100644 index 000000000..b2a6b605e --- /dev/null +++ b/english/nodejs/alternativescheme/_index.md @@ -0,0 +1,40 @@ +--- +title: "AlternativeScheme Class" +linktitle: "AlternativeScheme" +articleTitle: "AlternativeScheme" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Alternative payment scheme instructions." +type: docs +weight: 60 +url: /nodejs/alternativescheme/ +--- +## AlternativeScheme class + +Alternative payment scheme instructions + +```javascript +public class AlternativeScheme : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AlternativeScheme](./alternativescheme/#constructor)(*object*) | Initializes a new instance of the AlternativeScheme class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Determines whether the specified object is equal to the current object. | +| [getInstruction](./getinstruction/) | Gets the payment instruction for a given bill. | +| [hashCode](./hashcode/) | Gets the hash code for this instance. | +| [init](./init/) | | +| [javaClassName](./javaclassname/) | | +| [setInstruction](./setinstruction/)(*object*) | Gets the payment instruction for a given bill. The instruction consists of a two letter abbreviation for the scheme, a separator characters and a sequence of parameters(separated by the character at index 2). | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/alternativescheme/alternativescheme/_index.md b/english/nodejs/alternativescheme/alternativescheme/_index.md new file mode 100644 index 000000000..0c46d2fbe --- /dev/null +++ b/english/nodejs/alternativescheme/alternativescheme/_index.md @@ -0,0 +1,27 @@ +--- +title: "AlternativeScheme" +linktitle: "AlternativeScheme" +articleTitle: "AlternativeScheme" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AlternativeScheme class." +type: docs +weight: 10 +url: /nodejs/alternativescheme/alternativescheme/ +--- +## AlternativeScheme(object) {#constructor} + +Initializes a new instance of the AlternativeScheme class. + +```javascript +public AlternativeScheme(object instruction) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| instruction | object | | + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/construct/_index.md b/english/nodejs/alternativescheme/construct/_index.md new file mode 100644 index 000000000..de5426d35 --- /dev/null +++ b/english/nodejs/alternativescheme/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "AlternativeScheme.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/alternativescheme/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/equals/_index.md b/english/nodejs/alternativescheme/equals/_index.md new file mode 100644 index 000000000..cfd4f35ef --- /dev/null +++ b/english/nodejs/alternativescheme/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "AlternativeScheme.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines whether the specified object is equal to the current object." +type: docs +weight: 60 +url: /nodejs/alternativescheme/equals/ +--- +## equals(object) {#equals} + +Determines whether the specified object is equal to the current object. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | The object to compare with the current object. | + +### Return Value + +true + +if the specified object is equal to the current object; otherwise, false. + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/getinstruction/_index.md b/english/nodejs/alternativescheme/getinstruction/_index.md new file mode 100644 index 000000000..a56e44090 --- /dev/null +++ b/english/nodejs/alternativescheme/getinstruction/_index.md @@ -0,0 +1,23 @@ +--- +title: "AlternativeScheme.getInstruction" +linktitle: "getInstruction" +articleTitle: "getInstruction" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the payment instruction for a given bill." +type: docs +weight: 40 +url: /nodejs/alternativescheme/getinstruction/ +--- +## getInstruction() {#getinstruction} + +Gets the payment instruction for a given bill. + +```javascript +getInstruction() +``` + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/hashcode/_index.md b/english/nodejs/alternativescheme/hashcode/_index.md new file mode 100644 index 000000000..41a4ed4d7 --- /dev/null +++ b/english/nodejs/alternativescheme/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AlternativeScheme.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the hash code for this instance." +type: docs +weight: 70 +url: /nodejs/alternativescheme/hashcode/ +--- +## hashCode() {#hashcode} + +Gets the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +hash + +code for the current object. + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/init/_index.md b/english/nodejs/alternativescheme/init/_index.md new file mode 100644 index 000000000..d975ba03f --- /dev/null +++ b/english/nodejs/alternativescheme/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AlternativeScheme.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 80 +url: /nodejs/alternativescheme/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/javaclassname/_index.md b/english/nodejs/alternativescheme/javaclassname/_index.md new file mode 100644 index 000000000..dbd460be7 --- /dev/null +++ b/english/nodejs/alternativescheme/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "AlternativeScheme.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/alternativescheme/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/alternativescheme/setinstruction/_index.md b/english/nodejs/alternativescheme/setinstruction/_index.md new file mode 100644 index 000000000..aa6fd2cf1 --- /dev/null +++ b/english/nodejs/alternativescheme/setinstruction/_index.md @@ -0,0 +1,27 @@ +--- +title: "AlternativeScheme.setInstruction" +linktitle: "setInstruction" +articleTitle: "setInstruction" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the payment instruction for a given bill. The instruction consists of a two letter abbreviation for the scheme, a separator characters and a sequence of..." +type: docs +weight: 50 +url: /nodejs/alternativescheme/setinstruction/ +--- +## setInstruction(object) {#setinstruction} + +Gets the payment instruction for a given bill. The instruction consists of a two letter abbreviation for the scheme, a separator characters and a sequence of parameters(separated by the character at index 2). + +```javascript +setInstruction(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AlternativeScheme](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/_index.md b/english/nodejs/australianpostparameters/_index.md new file mode 100644 index 000000000..5f66f4034 --- /dev/null +++ b/english/nodejs/australianpostparameters/_index.md @@ -0,0 +1,49 @@ +--- +title: "AustralianPostParameters Class" +linktitle: "AustralianPostParameters" +articleTitle: "AustralianPostParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "AustralianPost barcode parameters." +type: docs +weight: 530 +url: /nodejs/australianpostparameters/ +--- +## AustralianPostParameters class + +AustralianPost barcode parameters. + +```javascript +public class AustralianPostParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AustralianPostParameters](./australianpostparameters/#constructor)(*object*) | Initializes a new instance of the AustralianPostParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAustralianPostEncodingTable](./getaustralianpostencodingtable/) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other". | +| [getAustralianPostShortBarHeight](./getaustralianpostshortbarheight/) | Short bar's height of AustralianPost barcode. | +| [getEncodingTable](./getencodingtable/) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other". | +| [getShortBarHeight](./getshortbarheight/) | Short bar's height of AustralianPost barcode. | +| [init](./init/) | | +| [setAustralianPostEncodingTable](./setaustralianpostencodingtable/)(*object*) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other". | +| [setAustralianPostShortBarHeight](./setaustralianpostshortbarheight/)(*object*) | Short bar's height of AustralianPost barcode. | +| [setEncodingTable](./setencodingtable/)(*object*) | Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other". | +| [setShortBarHeight](./setshortbarheight/)(*object*) | Short bar's height of AustralianPost barcode. | +| [toString](./tostring/) | Returns a human-readable string representation of this AustralianPostParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [shortBarHeight](./shortbarheight/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/australianpostparameters/australianpostparameters/_index.md b/english/nodejs/australianpostparameters/australianpostparameters/_index.md new file mode 100644 index 000000000..c25736b19 --- /dev/null +++ b/english/nodejs/australianpostparameters/australianpostparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "AustralianPostParameters" +linktitle: "AustralianPostParameters" +articleTitle: "AustralianPostParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AustralianPostParameters class." +type: docs +weight: 10 +url: /nodejs/australianpostparameters/australianpostparameters/ +--- +## AustralianPostParameters(object) {#constructor} + +Initializes a new instance of the AustralianPostParameters class. + +```javascript +public AustralianPostParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/getaustralianpostencodingtable/_index.md b/english/nodejs/australianpostparameters/getaustralianpostencodingtable/_index.md new file mode 100644 index 000000000..2deef9a43 --- /dev/null +++ b/english/nodejs/australianpostparameters/getaustralianpostencodingtable/_index.md @@ -0,0 +1,25 @@ +--- +title: "AustralianPostParameters.getAustralianPostEncodingTable" +linktitle: "getAustralianPostEncodingTable" +articleTitle: "getAustralianPostEncodingTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\"." +type: docs +weight: 100 +url: /nodejs/australianpostparameters/getaustralianpostencodingtable/ +--- +## getAustralianPostEncodingTable() {#getaustralianpostencodingtable} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodingTable(). + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +```javascript +getAustralianPostEncodingTable() +``` + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/getaustralianpostshortbarheight/_index.md b/english/nodejs/australianpostparameters/getaustralianpostshortbarheight/_index.md new file mode 100644 index 000000000..bee6a3e22 --- /dev/null +++ b/english/nodejs/australianpostparameters/getaustralianpostshortbarheight/_index.md @@ -0,0 +1,25 @@ +--- +title: "AustralianPostParameters.getAustralianPostShortBarHeight" +linktitle: "getAustralianPostShortBarHeight" +articleTitle: "getAustralianPostShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of AustralianPost barcode." +type: docs +weight: 60 +url: /nodejs/australianpostparameters/getaustralianpostshortbarheight/ +--- +## getAustralianPostShortBarHeight() {#getaustralianpostshortbarheight} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getShortBarHeight(). + +Short bar's height of AustralianPost barcode. + +```javascript +getAustralianPostShortBarHeight() +``` + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/getencodingtable/_index.md b/english/nodejs/australianpostparameters/getencodingtable/_index.md new file mode 100644 index 000000000..989632d66 --- /dev/null +++ b/english/nodejs/australianpostparameters/getencodingtable/_index.md @@ -0,0 +1,23 @@ +--- +title: "AustralianPostParameters.getEncodingTable" +linktitle: "getEncodingTable" +articleTitle: "getEncodingTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\"." +type: docs +weight: 80 +url: /nodejs/australianpostparameters/getencodingtable/ +--- +## getEncodingTable() {#getencodingtable} + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +```javascript +getEncodingTable() +``` + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/getshortbarheight/_index.md b/english/nodejs/australianpostparameters/getshortbarheight/_index.md new file mode 100644 index 000000000..82d878f6d --- /dev/null +++ b/english/nodejs/australianpostparameters/getshortbarheight/_index.md @@ -0,0 +1,23 @@ +--- +title: "AustralianPostParameters.getShortBarHeight" +linktitle: "getShortBarHeight" +articleTitle: "getShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of AustralianPost barcode." +type: docs +weight: 40 +url: /nodejs/australianpostparameters/getshortbarheight/ +--- +## getShortBarHeight() {#getshortbarheight} + +Short bar's height of AustralianPost barcode. + +```javascript +getShortBarHeight() +``` + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/init/_index.md b/english/nodejs/australianpostparameters/init/_index.md new file mode 100644 index 000000000..c66acb678 --- /dev/null +++ b/english/nodejs/australianpostparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AustralianPostParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/australianpostparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/setaustralianpostencodingtable/_index.md b/english/nodejs/australianpostparameters/setaustralianpostencodingtable/_index.md new file mode 100644 index 000000000..fad386ae1 --- /dev/null +++ b/english/nodejs/australianpostparameters/setaustralianpostencodingtable/_index.md @@ -0,0 +1,29 @@ +--- +title: "AustralianPostParameters.setAustralianPostEncodingTable" +linktitle: "setAustralianPostEncodingTable" +articleTitle: "setAustralianPostEncodingTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\"." +type: docs +weight: 110 +url: /nodejs/australianpostparameters/setaustralianpostencodingtable/ +--- +## setAustralianPostEncodingTable(object) {#setaustralianpostencodingtable} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodingTable(). + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +```javascript +setAustralianPostEncodingTable(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/setaustralianpostshortbarheight/_index.md b/english/nodejs/australianpostparameters/setaustralianpostshortbarheight/_index.md new file mode 100644 index 000000000..e780e78f9 --- /dev/null +++ b/english/nodejs/australianpostparameters/setaustralianpostshortbarheight/_index.md @@ -0,0 +1,29 @@ +--- +title: "AustralianPostParameters.setAustralianPostShortBarHeight" +linktitle: "setAustralianPostShortBarHeight" +articleTitle: "setAustralianPostShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of AustralianPost barcode." +type: docs +weight: 70 +url: /nodejs/australianpostparameters/setaustralianpostshortbarheight/ +--- +## setAustralianPostShortBarHeight(object) {#setaustralianpostshortbarheight} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setShortBarHeight(). + +Short bar's height of AustralianPost barcode. + +```javascript +setAustralianPostShortBarHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/setencodingtable/_index.md b/english/nodejs/australianpostparameters/setencodingtable/_index.md new file mode 100644 index 000000000..7dade350e --- /dev/null +++ b/english/nodejs/australianpostparameters/setencodingtable/_index.md @@ -0,0 +1,27 @@ +--- +title: "AustralianPostParameters.setEncodingTable" +linktitle: "setEncodingTable" +articleTitle: "setEncodingTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other\"." +type: docs +weight: 90 +url: /nodejs/australianpostparameters/setencodingtable/ +--- +## setEncodingTable(object) {#setencodingtable} + +Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other" + +```javascript +setEncodingTable(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/setshortbarheight/_index.md b/english/nodejs/australianpostparameters/setshortbarheight/_index.md new file mode 100644 index 000000000..99e0c1bb5 --- /dev/null +++ b/english/nodejs/australianpostparameters/setshortbarheight/_index.md @@ -0,0 +1,27 @@ +--- +title: "AustralianPostParameters.setShortBarHeight" +linktitle: "setShortBarHeight" +articleTitle: "setShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of AustralianPost barcode." +type: docs +weight: 50 +url: /nodejs/australianpostparameters/setshortbarheight/ +--- +## setShortBarHeight(object) {#setshortbarheight} + +Short bar's height of AustralianPost barcode. + +```javascript +setShortBarHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australianpostparameters/tostring/_index.md b/english/nodejs/australianpostparameters/tostring/_index.md new file mode 100644 index 000000000..41b86fafd --- /dev/null +++ b/english/nodejs/australianpostparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "AustralianPostParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this AustralianPostParameters." +type: docs +weight: 120 +url: /nodejs/australianpostparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this AustralianPostParameters. + +```javascript +toString() +``` + +### Return Value + +string + +Value that represents this AustralianPostParameters. + +### See Also + +* class [AustralianPostParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/_index.md b/english/nodejs/australiapostsettings/_index.md new file mode 100644 index 000000000..526772acc --- /dev/null +++ b/english/nodejs/australiapostsettings/_index.md @@ -0,0 +1,38 @@ +--- +title: "AustraliaPostSettings Class" +linktitle: "AustraliaPostSettings" +articleTitle: "AustraliaPostSettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "AustraliaPost decoding parameters. Contains parameters which make influence on recognized data of AustraliaPost symbology." +type: docs +weight: 1380 +url: /nodejs/australiapostsettings/ +--- +## AustraliaPostSettings class + +AustraliaPost decoding parameters. Contains parameters which make influence on recognized data of AustraliaPost symbology. + +```javascript +public class AustraliaPostSettings : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AustraliaPostSettings](./australiapostsettings/#constructor)(*object*) | AustraliaPostSettings constructor. | + +## Methods + +| Name | Description | +| --- | --- | +| [getCustomerInformationInterpretingType](./getcustomerinformationinterpretingtype/) | Gets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. | +| [getIgnoreEndingFillingPatternsForCTable](./getignoreendingfillingpatternsforctable/) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce "333" of filling paterns is decoded as letter "z". | +| [init](./init/) | | +| [setCustomerInformationInterpretingType](./setcustomerinformationinterpretingtype/)(*object*) | Sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. | +| [setIgnoreEndingFillingPatternsForCTable](./setignoreendingfillingpatternsforctable/)(*object*) | The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce "333" of filling paterns is decoded as letter "z". | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/australiapostsettings/australiapostsettings/_index.md b/english/nodejs/australiapostsettings/australiapostsettings/_index.md new file mode 100644 index 000000000..f44bf9e0a --- /dev/null +++ b/english/nodejs/australiapostsettings/australiapostsettings/_index.md @@ -0,0 +1,27 @@ +--- +title: "AustraliaPostSettings" +linktitle: "AustraliaPostSettings" +articleTitle: "AustraliaPostSettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AustraliaPostSettings class." +type: docs +weight: 10 +url: /nodejs/australiapostsettings/australiapostsettings/ +--- +## AustraliaPostSettings(object) {#constructor} + +AustraliaPostSettings constructor + +```javascript +public AustraliaPostSettings(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/getcustomerinformationinterpretingtype/_index.md b/english/nodejs/australiapostsettings/getcustomerinformationinterpretingtype/_index.md new file mode 100644 index 000000000..31f435bd2 --- /dev/null +++ b/english/nodejs/australiapostsettings/getcustomerinformationinterpretingtype/_index.md @@ -0,0 +1,29 @@ +--- +title: "AustraliaPostSettings.getCustomerInformationInterpretingType" +linktitle: "getCustomerInformationInterpretingType" +articleTitle: "getCustomerInformationInterpretingType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER." +type: docs +weight: 30 +url: /nodejs/australiapostsettings/getcustomerinformationinterpretingtype/ +--- +## getCustomerInformationInterpretingType() {#getcustomerinformationinterpretingtype} + +Gets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. + +```javascript +getCustomerInformationInterpretingType() +``` + +### Return Value + +The + +interpreting type (CTable, NTable or Other) of customer information for AustralianPost BarCode + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/getignoreendingfillingpatternsforctable/_index.md b/english/nodejs/australiapostsettings/getignoreendingfillingpatternsforctable/_index.md new file mode 100644 index 000000000..8a24fdd8d --- /dev/null +++ b/english/nodejs/australiapostsettings/getignoreendingfillingpatternsforctable/_index.md @@ -0,0 +1,47 @@ +--- +title: "AustraliaPostSettings.getIgnoreEndingFillingPatternsForCTable" +linktitle: "getIgnoreEndingFillingPatternsForCTable" +articleTitle: "getIgnoreEndingFillingPatternsForCTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding me..." +type: docs +weight: 50 +url: /nodejs/australiapostsettings/getignoreendingfillingpatternsforctable/ +--- +## getIgnoreEndingFillingPatternsForCTable() {#getignoreendingfillingpatternsforctable} + +The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce "333" of filling paterns is decoded as letter "z". + +```javascript +getIgnoreEndingFillingPatternsForCTable() +``` + +### Return Value + +The + +flag which force AustraliaPost decoder to ignore last filling patterns during CTable method decoding + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "5912345678AB"); +generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); +let image = generator.generateBarCodeImage(BarcodeImageFormat.PNG); +let reader = new BarCodeReader(image, null, DecodeType.AUSTRALIA_POST); +reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C_TABLE); +reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeType()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/init/_index.md b/english/nodejs/australiapostsettings/init/_index.md new file mode 100644 index 000000000..74c08bc3a --- /dev/null +++ b/english/nodejs/australiapostsettings/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AustraliaPostSettings.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/australiapostsettings/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/setcustomerinformationinterpretingtype/_index.md b/english/nodejs/australiapostsettings/setcustomerinformationinterpretingtype/_index.md new file mode 100644 index 000000000..73fc5c7ce --- /dev/null +++ b/english/nodejs/australiapostsettings/setcustomerinformationinterpretingtype/_index.md @@ -0,0 +1,27 @@ +--- +title: "AustraliaPostSettings.setCustomerInformationInterpretingType" +linktitle: "setCustomerInformationInterpretingType" +articleTitle: "setCustomerInformationInterpretingType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER." +type: docs +weight: 40 +url: /nodejs/australiapostsettings/setcustomerinformationinterpretingtype/ +--- +## setCustomerInformationInterpretingType(object) {#setcustomerinformationinterpretingtype} + +Sets the Interpreting Type for the Customer Information of AustralianPost BarCode.DEFAULT is CustomerInformationInterpretingType.OTHER. + +```javascript +setCustomerInformationInterpretingType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The interpreting type (CTable, NTable or Other) of customer information for AustralianPost BarCode | + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/australiapostsettings/setignoreendingfillingpatternsforctable/_index.md b/english/nodejs/australiapostsettings/setignoreendingfillingpatternsforctable/_index.md new file mode 100644 index 000000000..bc703d42b --- /dev/null +++ b/english/nodejs/australiapostsettings/setignoreendingfillingpatternsforctable/_index.md @@ -0,0 +1,51 @@ +--- +title: "AustraliaPostSettings.setIgnoreEndingFillingPatternsForCTable" +linktitle: "setIgnoreEndingFillingPatternsForCTable" +articleTitle: "setIgnoreEndingFillingPatternsForCTable" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding me..." +type: docs +weight: 60 +url: /nodejs/australiapostsettings/setignoreendingfillingpatternsforctable/ +--- +## setIgnoreEndingFillingPatternsForCTable(object) {#setignoreendingfillingpatternsforctable} + +The flag which force AustraliaPost decoder to ignore last filling patterns in Customer Information Field during decoding as CTable method. CTable encoding method does not have any gaps in encoding table and sequnce "333" of filling paterns is decoded as letter "z". + +```javascript +setIgnoreEndingFillingPatternsForCTable(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Return Value + +The + +flag which force AustraliaPost decoder to ignore last filling patterns during CTable method decoding + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "5912345678AB"); +generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); +let image = generator.generateBarCodeImage(BarcodeImageFormat.PNG); +let reader = new BarCodeReader(image, null, DecodeType.AUSTRALIA_POST); +reader.getBarcodeSettings().getAustraliaPost().setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C_TABLE); +reader.getBarcodeSettings().getAustraliaPost().setIgnoreEndingFillingPatternsForCTable(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeType()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [AustraliaPostSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/autosizemode/_index.md b/english/nodejs/autosizemode/_index.md new file mode 100644 index 000000000..489cebc54 --- /dev/null +++ b/english/nodejs/autosizemode/_index.md @@ -0,0 +1,41 @@ +--- +title: "AutoSizeMode Enum" +linktitle: "AutoSizeMode" +articleTitle: "AutoSizeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the different types of automatic sizing modes. Default value is AutoSizeMode.NONE." +type: docs +weight: 1020 +url: /nodejs/autosizemode/ +--- +## AutoSizeMode enumeration + +Specifies the different types of automatic sizing modes. Default value is AutoSizeMode.NONE. + +```javascript +public enum AutoSizeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | Automatic resizing is disabled. Default value. | +| NEAREST | `1` | Barcode resizes to nearest lowest possible size which are specified by BarCodeWidth and BarCodeHeight properties. | +| INTERPOLATION | `2` | Resizes barcode to specified size with little scaling but it can be little damaged in some cases because using interpolation for scaling. Size can be specified by BarcodeGenerator.BarCodeWidth and BarcodeGenerator.BarCodeHeight properties. This sample shows how to create and save a BarCode image in Scale mode. let generator = new BarcodeGenerator( EncodeTypes.DATA_MATRIX); generator.getParameters().getBarcode().setAutoSizeMode(AutoSizeMode.INTERPOLATION); generator.getParameters().getBarcode().getBarCodeWidth().setMillimeters(50); generator.getParameters().getBarcode().getBarCodeHeight().setInches(1.3); generator.save("test.png", BarcodeImageFormat.PNG); | + +## Examples + +```javascript +//This sample shows how to create and save a BarCode image: +let generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX); +generator.setAutoSizeMode(AutoSizeMode.NEAREST); +generator.getBarCodeWidth().setMillimeters(50); +generator.getBarCodeHeight().setInches(1.3f); +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/aztecencodemode/_index.md b/english/nodejs/aztecencodemode/_index.md new file mode 100644 index 000000000..e33baed78 --- /dev/null +++ b/english/nodejs/aztecencodemode/_index.md @@ -0,0 +1,78 @@ +--- +title: "AztecEncodeMode Enum" +linktitle: "AztecEncodeMode" +articleTitle: "AztecEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for Aztec barcodes." +type: docs +weight: 1220 +url: /nodejs/aztecencodemode/ +--- +## AztecEncodeMode enumeration + +Encoding mode for Aztec barcodes. + +```javascript +public enum AztecEncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. | +| BYTES | `1` | Encode codetext as plain bytes. If it detects any Unicode character, the character will be encoded as two bytes, lower byte first. | +| EXTENDED_CODETEXT | `2` | Extended mode which supports multi ECI modes. It is better to use AztecExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | +| EXTENDED | `3` | Extended mode which supports multi ECI modes. It is better to use AztecExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | +| BINARY | `4` | In Binary mode, the CodeText is encoded with maximum data compactness. If a Unicode character is found, an exception is thrown. | +| ECI | `5` | In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. | + +## Examples + +```javascript +//Auto mode +let codetext = "犬Right狗"; +let generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +generator.getParameters().getBarcode().getAztec().setECIEncoding(ECIEncodings.UTF_8); +generator.save("test.bmp"); +``` + +```javascript +//Bytes mode +let encodedArr = [ 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 ]; +//encode array to string +let strBld = ""; +for(let i = 0; i < encodedArr; i++) +{ +byte bval = encodedArr[i] +strBld.append(String.fromCharCode(bval)); +} +let codetext = strBld; +let generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +generator.getParameters().getBarcode().getAztec().setAztecEncodeMode(AztecEncodeMode.BYTES); +generator.save("test.bmp", BarcodeImageFormat.PNG); +``` + +```javascript +//Extended codetext mode +//create codetext +let textBuilder = new AztecExtCodetextBuilder(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +//generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +generator.getParameters().getBarcode().getAztec().setAztecEncodeMode(AztecEncodeMode.EXTENDED_CODETEXT); +generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +generator.save("test.bmp", BarcodeImageFormat.PNG); + +

+``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/aztecextcodetextbuilder/_index.md b/english/nodejs/aztecextcodetextbuilder/_index.md new file mode 100644 index 000000000..9187730aa --- /dev/null +++ b/english/nodejs/aztecextcodetextbuilder/_index.md @@ -0,0 +1,61 @@ +--- +title: "AztecExtCodetextBuilder Class" +linktitle: "AztecExtCodetextBuilder" +articleTitle: "AztecExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "This sample shows how to use AztecExtCodetextBuilder in Extended Mode." +type: docs +weight: 1050 +url: /nodejs/aztecextcodetextbuilder/ +--- +## AztecExtCodetextBuilder class + +This sample shows how to use AztecExtCodetextBuilder in Extended Mode. + +```javascript +public class AztecExtCodetextBuilder : ExtCodetextBuilder +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AztecExtCodetextBuilder](./aztecextcodetextbuilder/#constructor) | Initializes a new instance of the AztecExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addECICodetext](../extcodetextbuilder/addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. *(Inherited from ExtCodetextBuilder)* | +| [addPlainCodetext](../extcodetextbuilder/addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [clear](../extcodetextbuilder/clear/) | Clears extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [getExtendedCodetext](./getextendedcodetext/) | Generates Extended codetext from the extended codetext list. | +| [init](./init/) | | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +## Examples + +```javascript +//create codetext +let textBuilder = new AztecExtCodetextBuilder(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +//generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.AZTEC, codetext); +generator.getParameters().getBarcode().getCodeTextParameters().setwoDDisplayText("My Text"); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/aztecextcodetextbuilder/aztecextcodetextbuilder/_index.md b/english/nodejs/aztecextcodetextbuilder/aztecextcodetextbuilder/_index.md new file mode 100644 index 000000000..5035ca4a2 --- /dev/null +++ b/english/nodejs/aztecextcodetextbuilder/aztecextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtCodetextBuilder" +linktitle: "AztecExtCodetextBuilder" +articleTitle: "AztecExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AztecExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/aztecextcodetextbuilder/aztecextcodetextbuilder/ +--- +## AztecExtCodetextBuilder() {#constructor} + +Initializes a new instance of the AztecExtCodetextBuilder class. + +```javascript +public AztecExtCodetextBuilder() +``` + +### See Also + +* class [AztecExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/aztecextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..7b1aa3957 --- /dev/null +++ b/english/nodejs/aztecextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates Extended codetext from the extended codetext list." +type: docs +weight: 40 +url: /nodejs/aztecextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generates Extended codetext from the extended codetext list. + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Extended + +codetext as string + +### See Also + +* class [AztecExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextcodetextbuilder/init/_index.md b/english/nodejs/aztecextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..3b4301497 --- /dev/null +++ b/english/nodejs/aztecextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/aztecextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AztecExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/_index.md b/english/nodejs/aztecextendedparameters/_index.md new file mode 100644 index 000000000..0b0fa5f00 --- /dev/null +++ b/english/nodejs/aztecextendedparameters/_index.md @@ -0,0 +1,61 @@ +--- +title: "AztecExtendedParameters Class" +linktitle: "AztecExtendedParameters" +articleTitle: "AztecExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of Aztec recognized barcode." +type: docs +weight: 1450 +url: /nodejs/aztecextendedparameters/ +--- +## AztecExtendedParameters class + +Stores special data of Aztec recognized barcode + +```javascript +public class AztecExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AztecExtendedParameters](./aztecextendedparameters/#constructor)(*object*) | Initializes a new instance of the AztecExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified AztecExtendedParameters value. | +| [getStructuredAppendBarcodeId](./getstructuredappendbarcodeid/) | | +| [getStructuredAppendBarcodesCount](./getstructuredappendbarcodescount/) | | +| [getStructuredAppendFileId](./getstructuredappendfileid/) | | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isReaderInitialization](./isreaderinitialization/) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. | +| [toString](./tostring/) | Returns a human-readable string representation of this AztecExtendedParameters. | + +## Examples + +BarCodeReader reader = new BarCodeReader("test.png", null, DecodeType.AZTEC); + +```javascript +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode type: " + result.getCodeTypeName()); +console.log("BarCode codetext: " + result.getCodeText()); +console.log("Aztec barcode ID: " + result.getExtended().getAztec().getStructuredAppendBarcodeId()); +console.log("Aztec barcodes count: " + result.getExtended().getAztec().getStructuredAppendBarcodesCount()); +console.log("Aztec file ID: " + result.getExtended().getAztec().getStructuredAppendFileId()); +console.log("Aztec is reader initialization: " + result.getExtended().getAztec().isReaderInitialization()); +} + +

+``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/aztecextendedparameters/aztecextendedparameters/_index.md b/english/nodejs/aztecextendedparameters/aztecextendedparameters/_index.md new file mode 100644 index 000000000..119438a67 --- /dev/null +++ b/english/nodejs/aztecextendedparameters/aztecextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecExtendedParameters" +linktitle: "AztecExtendedParameters" +articleTitle: "AztecExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AztecExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/aztecextendedparameters/aztecextendedparameters/ +--- +## AztecExtendedParameters(object) {#constructor} + +Initializes a new instance of the AztecExtendedParameters class. + +```javascript +public AztecExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/equals/_index.md b/english/nodejs/aztecextendedparameters/equals/_index.md new file mode 100644 index 000000000..65b7b9b9a --- /dev/null +++ b/english/nodejs/aztecextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "AztecExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified AztecExtendedParameters value." +type: docs +weight: 70 +url: /nodejs/aztecextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `AztecExtendedParameters` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/getstructuredappendbarcodeid/_index.md b/english/nodejs/aztecextendedparameters/getstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..545e744fe --- /dev/null +++ b/english/nodejs/aztecextendedparameters/getstructuredappendbarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtendedParameters.getStructuredAppendBarcodeId" +linktitle: "getStructuredAppendBarcodeId" +articleTitle: "getStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/aztecextendedparameters/getstructuredappendbarcodeid/ +--- +## getStructuredAppendBarcodeId() {#getstructuredappendbarcodeid} + + + +```javascript +getStructuredAppendBarcodeId() +``` + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/getstructuredappendbarcodescount/_index.md b/english/nodejs/aztecextendedparameters/getstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..48aff05bc --- /dev/null +++ b/english/nodejs/aztecextendedparameters/getstructuredappendbarcodescount/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtendedParameters.getStructuredAppendBarcodesCount" +linktitle: "getStructuredAppendBarcodesCount" +articleTitle: "getStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/aztecextendedparameters/getstructuredappendbarcodescount/ +--- +## getStructuredAppendBarcodesCount() {#getstructuredappendbarcodescount} + + + +```javascript +getStructuredAppendBarcodesCount() +``` + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/getstructuredappendfileid/_index.md b/english/nodejs/aztecextendedparameters/getstructuredappendfileid/_index.md new file mode 100644 index 000000000..89d92067d --- /dev/null +++ b/english/nodejs/aztecextendedparameters/getstructuredappendfileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtendedParameters.getStructuredAppendFileId" +linktitle: "getStructuredAppendFileId" +articleTitle: "getStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/aztecextendedparameters/getstructuredappendfileid/ +--- +## getStructuredAppendFileId() {#getstructuredappendfileid} + + + +```javascript +getStructuredAppendFileId() +``` + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/hashcode/_index.md b/english/nodejs/aztecextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..2a81a2fd6 --- /dev/null +++ b/english/nodejs/aztecextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 80 +url: /nodejs/aztecextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +32-bit + +signed integer hash code. + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/init/_index.md b/english/nodejs/aztecextendedparameters/init/_index.md new file mode 100644 index 000000000..746baf474 --- /dev/null +++ b/english/nodejs/aztecextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/aztecextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/isreaderinitialization/_index.md b/english/nodejs/aztecextendedparameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..f5f515abb --- /dev/null +++ b/english/nodejs/aztecextendedparameters/isreaderinitialization/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecExtendedParameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader..." +type: docs +weight: 60 +url: /nodejs/aztecextendedparameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. + +```javascript +isReaderInitialization() +``` + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecextendedparameters/tostring/_index.md b/english/nodejs/aztecextendedparameters/tostring/_index.md new file mode 100644 index 000000000..f8a3db1f5 --- /dev/null +++ b/english/nodejs/aztecextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this AztecExtendedParameters." +type: docs +weight: 90 +url: /nodejs/aztecextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `AztecExtendedParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [AztecExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/_index.md b/english/nodejs/aztecparameters/_index.md new file mode 100644 index 000000000..9800c9c5c --- /dev/null +++ b/english/nodejs/aztecparameters/_index.md @@ -0,0 +1,61 @@ +--- +title: "AztecParameters Class" +linktitle: "AztecParameters" +articleTitle: "AztecParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Aztec parameters." +type: docs +weight: 660 +url: /nodejs/aztecparameters/ +--- +## AztecParameters class + +Aztec parameters. + +```javascript +public class AztecParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [AztecParameters](./aztecparameters/#constructor)(*object*) | Initializes a new instance of the AztecParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getAztecEncodeMode](./getaztecencodemode/) | Gets a Aztec encode mode. Default value: Auto. | +| [getAztecErrorLevel](./getaztecerrorlevel/) | Level of error correction of Aztec types of barcode. Value should between 5 to 95. | +| [getAztecSymbolMode](./getaztecsymbolmode/) | Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. | +| [getECIEncoding](./geteciencoding/) | Gets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1. | +| [getEncodeMode](./getencodemode/) | Gets a Aztec encode mode. Default value: Auto. | +| [getErrorLevel](./geterrorlevel/) | Level of error correction of Aztec types of barcode. Value should between 5 to 95. | +| [getLayersCount](./getlayerscount/) | Gets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto). | +| [getStructuredAppendBarcodeId](./getstructuredappendbarcodeid/) | Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0. | +| [getStructuredAppendBarcodesCount](./getstructuredappendbarcodescount/) | Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0. | +| [getStructuredAppendFileId](./getstructuredappendfileid/) | File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string. | +| [getSymbolMode](./getsymbolmode/) | Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. | +| [init](./init/) | | +| [isReaderInitialization](./isreaderinitialization/) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setAztecEncodeMode](./setaztecencodemode/)(*object*) | Sets a Aztec encode mode. Default value: Auto. | +| [setAztecErrorLevel](./setaztecerrorlevel/)(*object*) | Level of error correction of Aztec types of barcode. Value should between 5 to 95. | +| [setAztecSymbolMode](./setaztecsymbolmode/)(*object*) | Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. | +| [setECIEncoding](./seteciencoding/)(*object*) | Sets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1. | +| [setEncodeMode](./setencodemode/)(*object*) | Sets a Aztec encode mode. Default value: Auto. | +| [setErrorLevel](./seterrorlevel/)(*object*) | Level of error correction of Aztec types of barcode. Value should between 5 to 95. | +| [setLayersCount](./setlayerscount/)(*object*) | Sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto). | +| [setReaderInitialization](./setreaderinitialization/)(*object*) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | +| [setStructuredAppendBarcodeId](./setstructuredappendbarcodeid/)(*object*) | Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0. | +| [setStructuredAppendBarcodesCount](./setstructuredappendbarcodescount/)(*object*) | Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0. | +| [setStructuredAppendFileId](./setstructuredappendfileid/)(*object*) | File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string. | +| [setSymbolMode](./setsymbolmode/)(*object*) | Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. | +| [toString](./tostring/) | Returns a human-readable string representation of this AztecParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/aztecparameters/aztecparameters/_index.md b/english/nodejs/aztecparameters/aztecparameters/_index.md new file mode 100644 index 000000000..c5cd1ad7d --- /dev/null +++ b/english/nodejs/aztecparameters/aztecparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters" +linktitle: "AztecParameters" +articleTitle: "AztecParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the AztecParameters class." +type: docs +weight: 10 +url: /nodejs/aztecparameters/aztecparameters/ +--- +## AztecParameters(object) {#constructor} + +Initializes a new instance of the AztecParameters class. + +```javascript +public AztecParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getaspectratio/_index.md b/english/nodejs/aztecparameters/getaspectratio/_index.md new file mode 100644 index 000000000..d9505a138 --- /dev/null +++ b/english/nodejs/aztecparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 270 +url: /nodejs/aztecparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getaztecencodemode/_index.md b/english/nodejs/aztecparameters/getaztecencodemode/_index.md new file mode 100644 index 000000000..39d723318 --- /dev/null +++ b/english/nodejs/aztecparameters/getaztecencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "AztecParameters.getAztecEncodeMode" +linktitle: "getAztecEncodeMode" +articleTitle: "getAztecEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Aztec encode mode. Default value: Auto." +type: docs +weight: 50 +url: /nodejs/aztecparameters/getaztecencodemode/ +--- +## getAztecEncodeMode() {#getaztecencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Gets a Aztec encode mode. Default value: Auto. + +```javascript +getAztecEncodeMode() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getaztecerrorlevel/_index.md b/english/nodejs/aztecparameters/getaztecerrorlevel/_index.md new file mode 100644 index 000000000..d657418a6 --- /dev/null +++ b/english/nodejs/aztecparameters/getaztecerrorlevel/_index.md @@ -0,0 +1,25 @@ +--- +title: "AztecParameters.getAztecErrorLevel" +linktitle: "getAztecErrorLevel" +articleTitle: "getAztecErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of error correction of Aztec types of barcode. Value should between 5 to 95." +type: docs +weight: 170 +url: /nodejs/aztecparameters/getaztecerrorlevel/ +--- +## getAztecErrorLevel() {#getaztecerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel(). + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + +```javascript +getAztecErrorLevel() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getaztecsymbolmode/_index.md b/english/nodejs/aztecparameters/getaztecsymbolmode/_index.md new file mode 100644 index 000000000..183104229 --- /dev/null +++ b/english/nodejs/aztecparameters/getaztecsymbolmode/_index.md @@ -0,0 +1,25 @@ +--- +title: "AztecParameters.getAztecSymbolMode" +linktitle: "getAztecSymbolMode" +articleTitle: "getAztecSymbolMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto." +type: docs +weight: 210 +url: /nodejs/aztecparameters/getaztecsymbolmode/ +--- +## getAztecSymbolMode() {#getaztecsymbolmode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getSymbolMode(). + +Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +```javascript +getAztecSymbolMode() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/geteciencoding/_index.md b/english/nodejs/aztecparameters/geteciencoding/_index.md new file mode 100644 index 000000000..490102f0d --- /dev/null +++ b/english/nodejs/aztecparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1." +type: docs +weight: 70 +url: /nodejs/aztecparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Gets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1 + +```javascript +getECIEncoding() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getencodemode/_index.md b/english/nodejs/aztecparameters/getencodemode/_index.md new file mode 100644 index 000000000..bada08da5 --- /dev/null +++ b/english/nodejs/aztecparameters/getencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Aztec encode mode. Default value: Auto." +type: docs +weight: 30 +url: /nodejs/aztecparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Gets a Aztec encode mode. Default value: Auto. + +```javascript +getEncodeMode() +``` + +### Return Value + +a + +Aztec encode mode. + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/geterrorlevel/_index.md b/english/nodejs/aztecparameters/geterrorlevel/_index.md new file mode 100644 index 000000000..a2c1a58fb --- /dev/null +++ b/english/nodejs/aztecparameters/geterrorlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getErrorLevel" +linktitle: "getErrorLevel" +articleTitle: "getErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of error correction of Aztec types of barcode. Value should between 5 to 95." +type: docs +weight: 150 +url: /nodejs/aztecparameters/geterrorlevel/ +--- +## getErrorLevel() {#geterrorlevel} + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + +```javascript +getErrorLevel() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getlayerscount/_index.md b/english/nodejs/aztecparameters/getlayerscount/_index.md new file mode 100644 index 000000000..ed7c56bb0 --- /dev/null +++ b/english/nodejs/aztecparameters/getlayerscount/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getLayersCount" +linktitle: "getLayersCount" +articleTitle: "getLayersCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value:..." +type: docs +weight: 230 +url: /nodejs/aztecparameters/getlayerscount/ +--- +## getLayersCount() {#getlayerscount} + +Gets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto). + +```javascript +getLayersCount() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getstructuredappendbarcodeid/_index.md b/english/nodejs/aztecparameters/getstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..89a0ab1d7 --- /dev/null +++ b/english/nodejs/aztecparameters/getstructuredappendbarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getStructuredAppendBarcodeId" +linktitle: "getStructuredAppendBarcodeId" +articleTitle: "getStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0." +type: docs +weight: 90 +url: /nodejs/aztecparameters/getstructuredappendbarcodeid/ +--- +## getStructuredAppendBarcodeId() {#getstructuredappendbarcodeid} + +Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0 + +```javascript +getStructuredAppendBarcodeId() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getstructuredappendbarcodescount/_index.md b/english/nodejs/aztecparameters/getstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..06690b426 --- /dev/null +++ b/english/nodejs/aztecparameters/getstructuredappendbarcodescount/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getStructuredAppendBarcodesCount" +linktitle: "getStructuredAppendBarcodesCount" +articleTitle: "getStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0." +type: docs +weight: 110 +url: /nodejs/aztecparameters/getstructuredappendbarcodescount/ +--- +## getStructuredAppendBarcodesCount() {#getstructuredappendbarcodescount} + +Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0 + +```javascript +getStructuredAppendBarcodesCount() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getstructuredappendfileid/_index.md b/english/nodejs/aztecparameters/getstructuredappendfileid/_index.md new file mode 100644 index 000000000..8298131c6 --- /dev/null +++ b/english/nodejs/aztecparameters/getstructuredappendfileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.getStructuredAppendFileId" +linktitle: "getStructuredAppendFileId" +articleTitle: "getStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string." +type: docs +weight: 130 +url: /nodejs/aztecparameters/getstructuredappendfileid/ +--- +## getStructuredAppendFileId() {#getstructuredappendfileid} + +File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string + +```javascript +getStructuredAppendFileId() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/getsymbolmode/_index.md b/english/nodejs/aztecparameters/getsymbolmode/_index.md new file mode 100644 index 000000000..d2ef51fa5 --- /dev/null +++ b/english/nodejs/aztecparameters/getsymbolmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.getSymbolMode" +linktitle: "getSymbolMode" +articleTitle: "getSymbolMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto." +type: docs +weight: 190 +url: /nodejs/aztecparameters/getsymbolmode/ +--- +## getSymbolMode() {#getsymbolmode} + +Gets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +```javascript +getSymbolMode() +``` + +### Return Value + +a + +Aztec Symbol mode. + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/init/_index.md b/english/nodejs/aztecparameters/init/_index.md new file mode 100644 index 000000000..42fd6dfe5 --- /dev/null +++ b/english/nodejs/aztecparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/aztecparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/isreaderinitialization/_index.md b/english/nodejs/aztecparameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..d473782ba --- /dev/null +++ b/english/nodejs/aztecparameters/isreaderinitialization/_index.md @@ -0,0 +1,23 @@ +--- +title: "AztecParameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization." +type: docs +weight: 250 +url: /nodejs/aztecparameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. + +```javascript +isReaderInitialization() +``` + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setaspectratio/_index.md b/english/nodejs/aztecparameters/setaspectratio/_index.md new file mode 100644 index 000000000..0baaa7ea6 --- /dev/null +++ b/english/nodejs/aztecparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 280 +url: /nodejs/aztecparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setaztecencodemode/_index.md b/english/nodejs/aztecparameters/setaztecencodemode/_index.md new file mode 100644 index 000000000..ce04b98a0 --- /dev/null +++ b/english/nodejs/aztecparameters/setaztecencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.setAztecEncodeMode" +linktitle: "setAztecEncodeMode" +articleTitle: "setAztecEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Aztec encode mode. Default value: Auto." +type: docs +weight: 60 +url: /nodejs/aztecparameters/setaztecencodemode/ +--- +## setAztecEncodeMode(object) {#setaztecencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Sets a Aztec encode mode. Default value: Auto. + +```javascript +setAztecEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setaztecerrorlevel/_index.md b/english/nodejs/aztecparameters/setaztecerrorlevel/_index.md new file mode 100644 index 000000000..978cd5df1 --- /dev/null +++ b/english/nodejs/aztecparameters/setaztecerrorlevel/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.setAztecErrorLevel" +linktitle: "setAztecErrorLevel" +articleTitle: "setAztecErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of error correction of Aztec types of barcode. Value should between 5 to 95." +type: docs +weight: 180 +url: /nodejs/aztecparameters/setaztecerrorlevel/ +--- +## setAztecErrorLevel(object) {#setaztecerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel(). + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + +```javascript +setAztecErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setaztecsymbolmode/_index.md b/english/nodejs/aztecparameters/setaztecsymbolmode/_index.md new file mode 100644 index 000000000..80b8a5fb1 --- /dev/null +++ b/english/nodejs/aztecparameters/setaztecsymbolmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.setAztecSymbolMode" +linktitle: "setAztecSymbolMode" +articleTitle: "setAztecSymbolMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto." +type: docs +weight: 220 +url: /nodejs/aztecparameters/setaztecsymbolmode/ +--- +## setAztecSymbolMode(object) {#setaztecsymbolmode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setSymbolMode(). + +Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +```javascript +setAztecSymbolMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/seteciencoding/_index.md b/english/nodejs/aztecparameters/seteciencoding/_index.md new file mode 100644 index 000000000..aca3a63fd --- /dev/null +++ b/english/nodejs/aztecparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1." +type: docs +weight: 80 +url: /nodejs/aztecparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Sets ECI encoding. Used when AztecEncodeMode is Auto. Default value: ISO-8859-1 + +```javascript +setECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setencodemode/_index.md b/english/nodejs/aztecparameters/setencodemode/_index.md new file mode 100644 index 000000000..a7bab88d5 --- /dev/null +++ b/english/nodejs/aztecparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Aztec encode mode. Default value: Auto." +type: docs +weight: 40 +url: /nodejs/aztecparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Sets a Aztec encode mode. Default value: Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Aztec encode mode. | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/seterrorlevel/_index.md b/english/nodejs/aztecparameters/seterrorlevel/_index.md new file mode 100644 index 000000000..dd42c230f --- /dev/null +++ b/english/nodejs/aztecparameters/seterrorlevel/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setErrorLevel" +linktitle: "setErrorLevel" +articleTitle: "setErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of error correction of Aztec types of barcode. Value should between 5 to 95." +type: docs +weight: 160 +url: /nodejs/aztecparameters/seterrorlevel/ +--- +## setErrorLevel(object) {#seterrorlevel} + +Level of error correction of Aztec types of barcode. Value should between 5 to 95. + +```javascript +setErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setlayerscount/_index.md b/english/nodejs/aztecparameters/setlayerscount/_index.md new file mode 100644 index 000000000..07e46aa20 --- /dev/null +++ b/english/nodejs/aztecparameters/setlayerscount/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setLayersCount" +linktitle: "setLayersCount" +articleTitle: "setLayersCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value:..." +type: docs +weight: 240 +url: /nodejs/aztecparameters/setlayerscount/ +--- +## setLayersCount(object) {#setlayerscount} + +Sets layers count of Aztec symbol. Layers count should be in range from 1 to 3 for Compact mode and in range from 1 to 32 for Full Range mode. Default value: 0 (auto). + +```javascript +setLayersCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setreaderinitialization/_index.md b/english/nodejs/aztecparameters/setreaderinitialization/_index.md new file mode 100644 index 000000000..6eb28a348 --- /dev/null +++ b/english/nodejs/aztecparameters/setreaderinitialization/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setReaderInitialization" +linktitle: "setReaderInitialization" +articleTitle: "setReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization." +type: docs +weight: 260 +url: /nodejs/aztecparameters/setreaderinitialization/ +--- +## setReaderInitialization(object) {#setreaderinitialization} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. + +```javascript +setReaderInitialization(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setstructuredappendbarcodeid/_index.md b/english/nodejs/aztecparameters/setstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..a4e2dfe14 --- /dev/null +++ b/english/nodejs/aztecparameters/setstructuredappendbarcodeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setStructuredAppendBarcodeId" +linktitle: "setStructuredAppendBarcodeId" +articleTitle: "setStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0." +type: docs +weight: 100 +url: /nodejs/aztecparameters/setstructuredappendbarcodeid/ +--- +## setStructuredAppendBarcodeId(object) {#setstructuredappendbarcodeid} + +Barcode ID for Structured Append mode of Aztec barcode. Barcode ID should be in range from 1 to barcodes count. Default value: 0 + +```javascript +setStructuredAppendBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setstructuredappendbarcodescount/_index.md b/english/nodejs/aztecparameters/setstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..b5937db98 --- /dev/null +++ b/english/nodejs/aztecparameters/setstructuredappendbarcodescount/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setStructuredAppendBarcodesCount" +linktitle: "setStructuredAppendBarcodesCount" +articleTitle: "setStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0." +type: docs +weight: 120 +url: /nodejs/aztecparameters/setstructuredappendbarcodescount/ +--- +## setStructuredAppendBarcodesCount(object) {#setstructuredappendbarcodescount} + +Barcodes count for Structured Append mode of Aztec barcode. Barcodes count should be in range from 1 to 26. Default value: 0 + +```javascript +setStructuredAppendBarcodesCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setstructuredappendfileid/_index.md b/english/nodejs/aztecparameters/setstructuredappendfileid/_index.md new file mode 100644 index 000000000..723ca2df2 --- /dev/null +++ b/english/nodejs/aztecparameters/setstructuredappendfileid/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setStructuredAppendFileId" +linktitle: "setStructuredAppendFileId" +articleTitle: "setStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string." +type: docs +weight: 140 +url: /nodejs/aztecparameters/setstructuredappendfileid/ +--- +## setStructuredAppendFileId(object) {#setstructuredappendfileid} + +File ID for Structured Append mode of Aztec barcode (optional field). File ID should not contain spaces. Default value: empty string + +```javascript +setStructuredAppendFileId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/setsymbolmode/_index.md b/english/nodejs/aztecparameters/setsymbolmode/_index.md new file mode 100644 index 000000000..670304ab7 --- /dev/null +++ b/english/nodejs/aztecparameters/setsymbolmode/_index.md @@ -0,0 +1,27 @@ +--- +title: "AztecParameters.setSymbolMode" +linktitle: "setSymbolMode" +articleTitle: "setSymbolMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto." +type: docs +weight: 200 +url: /nodejs/aztecparameters/setsymbolmode/ +--- +## setSymbolMode(object) {#setsymbolmode} + +Sets a Aztec Symbol mode. Default value: AztecSymbolMode.Auto. + +```javascript +setSymbolMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Aztec Symbol mode. | + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecparameters/tostring/_index.md b/english/nodejs/aztecparameters/tostring/_index.md new file mode 100644 index 000000000..77b1f125c --- /dev/null +++ b/english/nodejs/aztecparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "AztecParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this AztecParameters." +type: docs +weight: 290 +url: /nodejs/aztecparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `AztecParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [AztecParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/aztecsymbolmode/_index.md b/english/nodejs/aztecsymbolmode/_index.md new file mode 100644 index 000000000..37b00b6b8 --- /dev/null +++ b/english/nodejs/aztecsymbolmode/_index.md @@ -0,0 +1,40 @@ +--- +title: "AztecSymbolMode Enum" +linktitle: "AztecSymbolMode" +articleTitle: "AztecSymbolMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the Aztec symbol mode." +type: docs +weight: 930 +url: /nodejs/aztecsymbolmode/ +--- +## AztecSymbolMode enumeration + +Specifies the Aztec symbol mode. + +```javascript +public enum AztecSymbolMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the best symbol (COMPACT or FULL-range) for Aztec. This is default value. | +| COMPACT | `1` | Specifies the COMPACT symbol for Aztec. Aztec COMPACT symbol permits only 1, 2, 3 or 4 layers. | +| FULL_RANGE | `2` | Specifies the FULL-range symbol for Aztec. Aztec FULL-range symbol permits from 1 to 32 layers. | +| RUNE | `3` | Specifies the RUNE symbol for Aztec. Aztec Runes are a series of small but distinct machine-readable marks. It permits only number value from 0 to 255. | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.AZTEC); +generator.setCodeText("125"); +generator.getParameters().getBarcode().getAztec().setAztecSymbolMode(AztecSymbolMode.RUNE); +generator.save("test.png", BarCodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeclassifications/_index.md b/english/nodejs/barcodeclassifications/_index.md new file mode 100644 index 000000000..810b06755 --- /dev/null +++ b/english/nodejs/barcodeclassifications/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarcodeClassifications Enum" +linktitle: "BarcodeClassifications" +articleTitle: "BarcodeClassifications" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarcodeClassifications EncodeTypes classification." +type: docs +weight: 840 +url: /nodejs/barcodeclassifications/ +--- +## BarcodeClassifications enumeration + +BarcodeClassifications EncodeTypes classification + +```javascript +public enum BarcodeClassifications +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | Unspecified classification | +| TYPE_1D | `1` | Specifies 1D-barcode | +| TYPE_2D | `2` | Specifies 2D-barcode | +| POSTAL | `3` | Specifies POSTAL-barcode | +| DATABAR | `4` | Specifies DataBar-barcode | +| COUPON | `5` | Specifies COUPON-barcode | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeconfidence/_index.md b/english/nodejs/barcodeconfidence/_index.md new file mode 100644 index 000000000..e320b71be --- /dev/null +++ b/english/nodejs/barcodeconfidence/_index.md @@ -0,0 +1,65 @@ +--- +title: "BarCodeConfidence Enum" +linktitle: "BarCodeConfidence" +articleTitle: "BarCodeConfidence" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains recognition confidence level." +type: docs +weight: 1500 +url: /nodejs/barcodeconfidence/ +--- +## BarCodeConfidence enumeration + +Contains recognition confidence level + +```javascript +public enum BarCodeConfidence +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | Recognition confidence of barcode where codetext was not recognized correctly or barcode was detected as posible fake | +| MODERATE | `80` | Recognition confidence of barcode (mostly 1D barcodes) with weak checksumm or even without it. Could contains some misrecognitions in codetext or even fake recognitions if is low | +| STRONG | `100` | Recognition confidence which was confirmed with BCH codes like Reed–Solomon. There must not be errors in read codetext or fake recognitions | + +## Examples + +```javascript +//This sample shows how BarCodeConfidence changed, depending on barcode type +//Moderate confidence +let generator = new BarcodeGenerator(EncodeTypes.CODE_128, "12345"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, [DecodeType.CODE_39, DecodeType.CODE_128]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("BarCode Confidence: " + result.getConfidence()); +console.log("BarCode ReadingQuality: " + result.getReadingQuality()); +} +``` + +```javascript +//Strong confidence +let generator = new BarcodeGenerator(EncodeTypes.QR, "12345"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, [DecodeType.CODE_39, DecodeType.QR]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("BarCode Confidence: " + result.getConfidence()); +console.log("BarCode ReadingQuality: " + result.getReadingQuality()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeextendedparameters/_index.md b/english/nodejs/barcodeextendedparameters/_index.md new file mode 100644 index 000000000..af8530666 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/_index.md @@ -0,0 +1,64 @@ +--- +title: "BarCodeExtendedParameters Class" +linktitle: "BarCodeExtendedParameters" +articleTitle: "BarCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores extended parameters of recognized barcode." +type: docs +weight: 1340 +url: /nodejs/barcodeextendedparameters/ +--- +## BarCodeExtendedParameters class + +Stores extended parameters of recognized barcode + +```javascript +public class BarCodeExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarCodeExtendedParameters](./barcodeextendedparameters/#constructor)(*object*) | Initializes a new instance of the BarCodeExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified BarCodeExtendedParameters value. | +| [getAztec](./getaztec/) | | +| [getCodabar](./getcodabar/) | Gets a Codabar additional informationCodabarExtendedParameters of recognized barcode. | +| [getCode128](./getcode128/) | Gets a special data Code128ExtendedParameters of Code128 recognized barcode Value: A special data Code128ExtendedParameters of Code128 recognized barcode. | +| [getDataBar](./getdatabar/) | Gets a DataBar additional information DataBarExtendedParameters of recognized barcode. | +| [getDataMatrix](./getdatamatrix/) | | +| [getDotCode](./getdotcode/) | | +| [getGS1CompositeBar](./getgs1compositebar/) | | +| [getMaxiCode](./getmaxicode/) | Gets a MaxiCode additional information[`MaxiCodeExtendedParameters`](..//maxicodeextendedparameters/) of recognized barcode. | +| [getOneD](./getoned/) | Gets a special data OneDExtendedParameters of 1D recognized barcode Value: A special data OneDExtendedParameters of 1D recognized barcode. | +| [getPdf417](./getpdf417/) | Gets a MacroPdf417 metadata information Pdf417ExtendedParameters of recognized barcode Value: A MacroPdf417 metadata information Pdf417ExtendedParameters of recognized barcode. | +| [getQR](./getqr/) | Gets a QR Structured Append information QRExtendedParameters of recognized barcode Value: A QR Structured Append information QRExtendedParameters of recognized barcode. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this BarCodeExtendedParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [_aztecExtendedParameters](./_aztecextendedparameters/) | | +| [_codabarExtendedParameters](./_codabarextendedparameters/) | | +| [_code128Parameters](./_code128parameters/) | | +| [_dataBarParameters](./_databarparameters/) | | +| [_dataMatrixExtendedParameters](./_datamatrixextendedparameters/) | | +| [_dotCodeExtendedParameters](./_dotcodeextendedparameters/) | | +| [_gs1CompositeBarExtendedParameters](./_gs1compositebarextendedparameters/) | | +| [_maxiCodeParameters](./_maxicodeparameters/) | | +| [_oneDParameters](./_onedparameters/) | | +| [_pdf417Parameters](./_pdf417parameters/) | | +| [_qrParameters](./_qrparameters/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeextendedparameters/barcodeextendedparameters/_index.md b/english/nodejs/barcodeextendedparameters/barcodeextendedparameters/_index.md new file mode 100644 index 000000000..b495d9dc0 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/barcodeextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeExtendedParameters" +linktitle: "BarCodeExtendedParameters" +articleTitle: "BarCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarCodeExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/barcodeextendedparameters/barcodeextendedparameters/ +--- +## BarCodeExtendedParameters(object) {#constructor} + +Initializes a new instance of the BarCodeExtendedParameters class. + +```javascript +public BarCodeExtendedParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/equals/_index.md b/english/nodejs/barcodeextendedparameters/equals/_index.md new file mode 100644 index 000000000..4c4b82fce --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified BarCodeExtendedParameters value." +type: docs +weight: 250 +url: /nodejs/barcodeextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified BarCodeExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getaztec/_index.md b/english/nodejs/barcodeextendedparameters/getaztec/_index.md new file mode 100644 index 000000000..99fbbf4ac --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getaztec/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getAztec" +linktitle: "getAztec" +articleTitle: "getAztec" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 190 +url: /nodejs/barcodeextendedparameters/getaztec/ +--- +## getAztec() {#getaztec} + + + +```javascript +getAztec() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getcodabar/_index.md b/english/nodejs/barcodeextendedparameters/getcodabar/_index.md new file mode 100644 index 000000000..97976e05a --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getcodabar/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeExtendedParameters.getCodabar" +linktitle: "getCodabar" +articleTitle: "getCodabar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Codabar additional informationCodabarExtendedParameters of recognized barcode." +type: docs +weight: 210 +url: /nodejs/barcodeextendedparameters/getcodabar/ +--- +## getCodabar() {#getcodabar} + +Gets a Codabar additional information`CodabarExtendedParameters` of recognized barcode + +```javascript +getCodabar() +``` + +### Return Value + +A + +Codabar additional information{ + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getcode128/_index.md b/english/nodejs/barcodeextendedparameters/getcode128/_index.md new file mode 100644 index 000000000..b1789be5c --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getcode128/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getCode128" +linktitle: "getCode128" +articleTitle: "getCode128" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a special data Code128ExtendedParameters of Code128 recognized barcode Value: A special data Code128ExtendedParameters of Code128 recognized barcode." +type: docs +weight: 220 +url: /nodejs/barcodeextendedparameters/getcode128/ +--- +## getCode128() {#getcode128} + +Gets a special data Code128ExtendedParameters of Code128 recognized barcode Value: A special data Code128ExtendedParameters of Code128 recognized barcode + +```javascript +getCode128() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getdatabar/_index.md b/english/nodejs/barcodeextendedparameters/getdatabar/_index.md new file mode 100644 index 000000000..7374abf7c --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getdatabar/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeExtendedParameters.getDataBar" +linktitle: "getDataBar" +articleTitle: "getDataBar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a DataBar additional information DataBarExtendedParameters of recognized barcode." +type: docs +weight: 140 +url: /nodejs/barcodeextendedparameters/getdatabar/ +--- +## getDataBar() {#getdatabar} + +Gets a DataBar additional information DataBarExtendedParameters of recognized barcode + +```javascript +getDataBar() +``` + +### Return Value + +mixed + +A DataBar additional information DataBarExtendedParameters of recognized barcode + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getdatamatrix/_index.md b/english/nodejs/barcodeextendedparameters/getdatamatrix/_index.md new file mode 100644 index 000000000..6508d6ee9 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getdatamatrix/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getDataMatrix" +linktitle: "getDataMatrix" +articleTitle: "getDataMatrix" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 180 +url: /nodejs/barcodeextendedparameters/getdatamatrix/ +--- +## getDataMatrix() {#getdatamatrix} + + + +```javascript +getDataMatrix() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getdotcode/_index.md b/english/nodejs/barcodeextendedparameters/getdotcode/_index.md new file mode 100644 index 000000000..949867a99 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getdotcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getDotCode" +linktitle: "getDotCode" +articleTitle: "getDotCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 170 +url: /nodejs/barcodeextendedparameters/getdotcode/ +--- +## getDotCode() {#getdotcode} + + + +```javascript +getDotCode() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getgs1compositebar/_index.md b/english/nodejs/barcodeextendedparameters/getgs1compositebar/_index.md new file mode 100644 index 000000000..4edbd9304 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getgs1compositebar/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getGS1CompositeBar" +linktitle: "getGS1CompositeBar" +articleTitle: "getGS1CompositeBar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 200 +url: /nodejs/barcodeextendedparameters/getgs1compositebar/ +--- +## getGS1CompositeBar() {#getgs1compositebar} + + + +```javascript +getGS1CompositeBar() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getmaxicode/_index.md b/english/nodejs/barcodeextendedparameters/getmaxicode/_index.md new file mode 100644 index 000000000..e474ce389 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getmaxicode/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeExtendedParameters.getMaxiCode" +linktitle: "getMaxiCode" +articleTitle: "getMaxiCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode additional information of recognized barcode." +type: docs +weight: 150 +url: /nodejs/barcodeextendedparameters/getmaxicode/ +--- +## getMaxiCode() {#getmaxicode} + +Gets a MaxiCode additional information[`MaxiCodeExtendedParameters`](../..//maxicodeextendedparameters/) of recognized barcode + +```javascript +getMaxiCode() +``` + +### Return Value + +A + +MaxiCode additional information[`MaxiCodeExtendedParameters`](../..//maxicodeextendedparameters/) of recognized barcode + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getoned/_index.md b/english/nodejs/barcodeextendedparameters/getoned/_index.md new file mode 100644 index 000000000..c46b645b3 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getoned/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getOneD" +linktitle: "getOneD" +articleTitle: "getOneD" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a special data OneDExtendedParameters of 1D recognized barcode Value: A special data OneDExtendedParameters of 1D recognized barcode." +type: docs +weight: 160 +url: /nodejs/barcodeextendedparameters/getoned/ +--- +## getOneD() {#getoned} + +Gets a special data OneDExtendedParameters of 1D recognized barcode Value: A special data OneDExtendedParameters of 1D recognized barcode + +```javascript +getOneD() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getpdf417/_index.md b/english/nodejs/barcodeextendedparameters/getpdf417/_index.md new file mode 100644 index 000000000..385ba4bc4 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getpdf417/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getPdf417" +linktitle: "getPdf417" +articleTitle: "getPdf417" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MacroPdf417 metadata information Pdf417ExtendedParameters of recognized barcode Value: A MacroPdf417 metadata information Pdf417ExtendedParameters of ..." +type: docs +weight: 240 +url: /nodejs/barcodeextendedparameters/getpdf417/ +--- +## getPdf417() {#getpdf417} + +Gets a MacroPdf417 metadata information Pdf417ExtendedParameters of recognized barcode Value: A MacroPdf417 metadata information Pdf417ExtendedParameters of recognized barcode + +```javascript +getPdf417() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/getqr/_index.md b/english/nodejs/barcodeextendedparameters/getqr/_index.md new file mode 100644 index 000000000..f937ad2e3 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/getqr/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.getQR" +linktitle: "getQR" +articleTitle: "getQR" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a QR Structured Append information QRExtendedParameters of recognized barcode Value: A QR Structured Append information QRExtendedParameters of recogniz..." +type: docs +weight: 230 +url: /nodejs/barcodeextendedparameters/getqr/ +--- +## getQR() {#getqr} + +Gets a QR Structured Append information QRExtendedParameters of recognized barcode Value: A QR Structured Append information QRExtendedParameters of recognized barcode + +```javascript +getQR() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/hashcode/_index.md b/english/nodejs/barcodeextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..ed09630d3 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 260 +url: /nodejs/barcodeextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/init/_index.md b/english/nodejs/barcodeextendedparameters/init/_index.md new file mode 100644 index 000000000..701a67167 --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 130 +url: /nodejs/barcodeextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeextendedparameters/tostring/_index.md b/english/nodejs/barcodeextendedparameters/tostring/_index.md new file mode 100644 index 000000000..7b893f65e --- /dev/null +++ b/english/nodejs/barcodeextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this BarCodeExtendedParameters." +type: docs +weight: 270 +url: /nodejs/barcodeextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this BarCodeExtendedParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this BarCodeExtendedParameters. + +### See Also + +* class [BarCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/_index.md b/english/nodejs/barcodegenerator/_index.md new file mode 100644 index 000000000..5757d2605 --- /dev/null +++ b/english/nodejs/barcodegenerator/_index.md @@ -0,0 +1,60 @@ +--- +title: "BarcodeGenerator Class" +linktitle: "BarcodeGenerator" +articleTitle: "BarcodeGenerator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarcodeGenerator for backend barcode images generation. supported symbologies: 1D: Codabar, Code11, Code128, Code39Standard, Code39Extended Code93Standard, C..." +type: docs +weight: 440 +url: /nodejs/barcodegenerator/ +--- +## BarcodeGenerator class + +BarcodeGenerator for backend barcode images generation. supported symbologies: 1D: Codabar, Code11, Code128, Code39Standard, Code39Extended Code93Standard, Code93Extended, EAN13, EAN8, Interleaved2of5, MSI, Standard2of5, UPCA, UPCE, ISBN, GS1Code128, Postnet, Planet EAN14, SCC14, SSCC18, ITF14, SingaporePost ... 2D: Aztec, DataMatrix, PDf417, QR code ... + +```javascript +public class BarcodeGenerator : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarcodeGenerator](./barcodegenerator/#constructor)(*object, object*) | BarcodeGenerator constructor. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [exportToXml](./exporttoxml/)(*object*) | Exports BarCode properties to the xml file specified. | +| [generateBarCodeImage](./generatebarcodeimage/)(*object*) | Generate the barcode image under current settings. This sample shows how to create and save a barcode image. | +| [getBarcodeType](./getbarcodetype/) | Barcode symbology type. | +| [getCodeText](./getcodetext/) | Text to be encoded. | +| [getParameters](./getparameters/) | Generation parameters. | +| [importFromXml](./importfromxml/)(*object*) | Imports BarCode properties from the xml-file specified and creates BarcodeGenerator instance. | +| [init](./init/) | | +| [javaClassName](./javaclassname/) | | +| [save](./save/)(*object, object*) | Save barcode image to specific file in specific format. | +| [setBarcodeType](./setbarcodetype/)(*object*) | Barcode symbology type. | +| [setCodeText](./setcodetext/)(*object, object, object*) | Encodes the Unicode codeText into a byte sequence using the specified encoding. UTF-8 is the most commonly used encoding. If the encoding supports it and insertBOM is set to true, the function includes a byte order mark (BOM). | + +## Fields + +| Name | Description | +| --- | --- | +| [parameters](./parameters/) | | + +## Examples + +```javascript +// This sample shows how to create and save a barcode image. +let encode_type = EncodeTypes.CODE_128; +let generator = new BarcodeGenerator(encode_type); +generator.setCodeText("123ABC"); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodegenerator/barcodegenerator/_index.md b/english/nodejs/barcodegenerator/barcodegenerator/_index.md new file mode 100644 index 000000000..c6a107da8 --- /dev/null +++ b/english/nodejs/barcodegenerator/barcodegenerator/_index.md @@ -0,0 +1,28 @@ +--- +title: "BarcodeGenerator" +linktitle: "BarcodeGenerator" +articleTitle: "BarcodeGenerator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarcodeGenerator class." +type: docs +weight: 10 +url: /nodejs/barcodegenerator/barcodegenerator/ +--- +## BarcodeGenerator(object, object) {#constructor} + +BarcodeGenerator constructor. + +```javascript +public BarcodeGenerator(object encodeType, object codeText) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodeType | object | Barcode symbology type. Use EncodeTypes class to setup a symbology | +| codeText | object | Text to be encoded. | + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/construct/_index.md b/english/nodejs/barcodegenerator/construct/_index.md new file mode 100644 index 000000000..28b873fc9 --- /dev/null +++ b/english/nodejs/barcodegenerator/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeGenerator.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/barcodegenerator/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/exporttoxml/_index.md b/english/nodejs/barcodegenerator/exporttoxml/_index.md new file mode 100644 index 000000000..9de7b855e --- /dev/null +++ b/english/nodejs/barcodegenerator/exporttoxml/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarcodeGenerator.exportToXml" +linktitle: "exportToXml" +articleTitle: "exportToXml" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Exports BarCode properties to the xml file specified." +type: docs +weight: 130 +url: /nodejs/barcodegenerator/exporttoxml/ +--- +## exportToXml(object) {#exporttoxml} + +Exports BarCode properties to the xml file specified + +```javascript +exportToXml(filePath) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| filePath | object | The xml file | + +### Return Value + +Whether + +or not export completed successfully. Returns True in case of success; False Otherwise + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/generatebarcodeimage/_index.md b/english/nodejs/barcodegenerator/generatebarcodeimage/_index.md new file mode 100644 index 000000000..ca8040fa7 --- /dev/null +++ b/english/nodejs/barcodegenerator/generatebarcodeimage/_index.md @@ -0,0 +1,40 @@ +--- +title: "BarcodeGenerator.generateBarCodeImage" +linktitle: "generateBarCodeImage" +articleTitle: "generateBarCodeImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generate the barcode image under current settings. This sample shows how to create and save a barcode image." +type: docs +weight: 90 +url: /nodejs/barcodegenerator/generatebarcodeimage/ +--- +## generateBarCodeImage(object) {#generatebarcodeimage} + +Generate the barcode image under current settings. This sample shows how to create and save a barcode image. + +```javascript +generateBarCodeImage(format) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| format | object | BarCodeImageFormat value (PNG, BMP, JPEG, GIF) | + +### Return Value + +String + +base64 representation of image. + +## Examples + +```javascript +let generator = new BarCodeGenerator(EncodeTypes.CODE_128); +let image = generator.generateBarCodeImage(BarCodeImageFormat.GIF); +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/getbarcodetype/_index.md b/english/nodejs/barcodegenerator/getbarcodetype/_index.md new file mode 100644 index 000000000..c65c9aa95 --- /dev/null +++ b/english/nodejs/barcodegenerator/getbarcodetype/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeGenerator.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode symbology type." +type: docs +weight: 70 +url: /nodejs/barcodegenerator/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Barcode symbology type. + +```javascript +getBarcodeType() +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/getcodetext/_index.md b/english/nodejs/barcodegenerator/getcodetext/_index.md new file mode 100644 index 000000000..2dae83fda --- /dev/null +++ b/english/nodejs/barcodegenerator/getcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeGenerator.getCodeText" +linktitle: "getCodeText" +articleTitle: "getCodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Text to be encoded." +type: docs +weight: 110 +url: /nodejs/barcodegenerator/getcodetext/ +--- +## getCodeText() {#getcodetext} + +Text to be encoded. + +```javascript +getCodeText() +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/getparameters/_index.md b/english/nodejs/barcodegenerator/getparameters/_index.md new file mode 100644 index 000000000..cb3742e30 --- /dev/null +++ b/english/nodejs/barcodegenerator/getparameters/_index.md @@ -0,0 +1,30 @@ +--- +title: "BarcodeGenerator.getParameters" +linktitle: "getParameters" +articleTitle: "getParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generation parameters." +type: docs +weight: 60 +url: /nodejs/barcodegenerator/getparameters/ +--- +## getParameters() {#getparameters} + +Generation parameters. + +```javascript +getParameters() +``` + +### Return Value + +[BaseGenerationParameters](../../..//basegenerationparameters/) + +BaseGenerationParameters + +### See Also + +* class [BaseGenerationParameters](../../basegenerationparameters/) +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/importfromxml/_index.md b/english/nodejs/barcodegenerator/importfromxml/_index.md new file mode 100644 index 000000000..d80b29e8e --- /dev/null +++ b/english/nodejs/barcodegenerator/importfromxml/_index.md @@ -0,0 +1,34 @@ +--- +title: "BarcodeGenerator.importFromXml" +linktitle: "importFromXml" +articleTitle: "importFromXml" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Imports BarCode properties from the xml-file specified and creates BarcodeGenerator instance." +type: docs +weight: 140 +url: /nodejs/barcodegenerator/importfromxml/ +--- +## importFromXml(object) {#importfromxml} + +Imports BarCode properties from the xml-file specified and creates BarcodeGenerator instance. + +```javascript +static importFromXml(filePath) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| filePath | object | The name of the file | + +### Return Value + +[BarcodeGenerator](../../..//barcodegenerator/) + +instance + +### See Also + +* class [BarcodeGenerator](../../barcodegenerator/) +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/init/_index.md b/english/nodejs/barcodegenerator/init/_index.md new file mode 100644 index 000000000..62b1c079f --- /dev/null +++ b/english/nodejs/barcodegenerator/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeGenerator.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/barcodegenerator/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/javaclassname/_index.md b/english/nodejs/barcodegenerator/javaclassname/_index.md new file mode 100644 index 000000000..527296172 --- /dev/null +++ b/english/nodejs/barcodegenerator/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeGenerator.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/barcodegenerator/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/save/_index.md b/english/nodejs/barcodegenerator/save/_index.md new file mode 100644 index 000000000..b8844e81c --- /dev/null +++ b/english/nodejs/barcodegenerator/save/_index.md @@ -0,0 +1,35 @@ +--- +title: "BarcodeGenerator.save" +linktitle: "save" +articleTitle: "save" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Save barcode image to specific file in specific format." +type: docs +weight: 100 +url: /nodejs/barcodegenerator/save/ +--- +## save(object, object) {#save} + +Save barcode image to specific file in specific format. + +```javascript +save(filePath, format) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| filePath | object | Path to save to. | +| format | object | BarCodeImageFormat value (PNG, BMP, JPEG, GIF) | + +## Examples + +```javascript +let generator = new BarCodeGenerator(EncodeTypes.CODE_128); +generator.save("file path", BarCodeImageFormat.GIF); +``` + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/setbarcodetype/_index.md b/english/nodejs/barcodegenerator/setbarcodetype/_index.md new file mode 100644 index 000000000..e14b4a35d --- /dev/null +++ b/english/nodejs/barcodegenerator/setbarcodetype/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeGenerator.setBarcodeType" +linktitle: "setBarcodeType" +articleTitle: "setBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode symbology type." +type: docs +weight: 80 +url: /nodejs/barcodegenerator/setbarcodetype/ +--- +## setBarcodeType(object) {#setbarcodetype} + +Barcode symbology type. + +```javascript +setBarcodeType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodegenerator/setcodetext/_index.md b/english/nodejs/barcodegenerator/setcodetext/_index.md new file mode 100644 index 000000000..3da5efc2a --- /dev/null +++ b/english/nodejs/barcodegenerator/setcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarcodeGenerator.setCodeText" +linktitle: "setCodeText" +articleTitle: "setCodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encodes the Unicode codeText into a byte sequence using the specified encoding. UTF-8 is the most commonly used encoding. If the encoding supports it and ins..." +type: docs +weight: 120 +url: /nodejs/barcodegenerator/setcodetext/ +--- +## setCodeText(object, object, object) {#setcodetext} + +Encodes the Unicode `codeText` into a byte sequence using the specified `encoding`. UTF-8 is the most commonly used encoding. If the encoding supports it and `insertBOM` is set to `true`, the function includes a `[byte order mark (BOM)](https://en.wikipedia.org/wiki/Byte_order_mark#Byte-order_marks_by_encoding)`. + +```javascript +setCodeText(codeText, encoding, BoM) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| codeText | object | CodeText string | +| encoding | object | Applied encoding | +| BoM | object | | + +### See Also + +* class [BarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeimageformat/_index.md b/english/nodejs/barcodeimageformat/_index.md new file mode 100644 index 000000000..ad6d4038e --- /dev/null +++ b/english/nodejs/barcodeimageformat/_index.md @@ -0,0 +1,36 @@ +--- +title: "BarCodeImageFormat Enum" +linktitle: "BarCodeImageFormat" +articleTitle: "BarCodeImageFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the file format of the image." +type: docs +weight: 1100 +url: /nodejs/barcodeimageformat/ +--- +## BarCodeImageFormat enumeration + +Specifies the file format of the image. + +```javascript +public enum BarCodeImageFormat +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| BMP | `0` | Specifies the bitmap (BMP) image format. | +| GIF | `1` | Specifies the Graphics Interchange Format (GIF) image format. | +| JPEG | `2` | Specifies the Joint Photographic Experts Group (JPEG) image format. | +| PNG | `3` | Specifies the W3C Portable Network Graphics (PNG) image format. | +| TIFF | `4` | Specifies the Tagged Image File Format (TIFF) image format. | +| TIFF_IN_CMYK | `5` | Specifies the Tagged Image File Format (TIFF) image format in CMYK color model. | +| EMF | `6` | Specifies the Enhanced Metafile (EMF) image format. | +| SVG | `7` | Specifies the Scalable Vector Graphics (SVG) image format. | +| PDF | `8` | Specifies the Portable Document Format (PDF) image format. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeparameters/_index.md b/english/nodejs/barcodeparameters/_index.md new file mode 100644 index 000000000..831589d1f --- /dev/null +++ b/english/nodejs/barcodeparameters/_index.md @@ -0,0 +1,104 @@ +--- +title: "BarcodeParameters Class" +linktitle: "BarcodeParameters" +articleTitle: "BarcodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode generation parameters." +type: docs +weight: 450 +url: /nodejs/barcodeparameters/ +--- +## BarcodeParameters class + +Barcode generation parameters. + +```javascript +public class BarcodeParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarcodeParameters](./barcodeparameters/#constructor)(*object*) | Initializes a new instance of the BarcodeParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAustralianPost](./getaustralianpost/) | AustralianPost barcode parameters. | +| [getAztec](./getaztec/) | Aztec parameters. | +| [getBarColor](./getbarcolor/) | Bars color. | +| [getBarHeight](./getbarheight/) | Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [getBarWidthReduction](./getbarwidthreduction/) | Get bars reduction value that is used to compensate ink spread while printing. | +| [getChecksumAlwaysShow](./getchecksumalwaysshow/) | Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. | +| [getCodabar](./getcodabar/) | Codabar parameters. | +| [getCodablock](./getcodablock/) | Codablock parameters. | +| [getCode128](./getcode128/) | Code128 parameters. | +| [getCode16K](./getcode16k/) | Code16K parameters. | +| [getCodeTextParameters](./getcodetextparameters/) | Codetext parameters. | +| [getCoupon](./getcoupon/) | Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. | +| [getDataBar](./getdatabar/) | Databar parameters. | +| [getDataMatrix](./getdatamatrix/) | DataMatrix parameters. | +| [getDotCode](./getdotcode/) | DotCode parameters. | +| [getEnableEscape](./getenableescape/) | Indicates whether explains the character "\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters. Aspose.BarCode supports inputing decimal... | +| [getFilledBars](./getfilledbars/) | Gets a value indicating whether bars filled. Only for 1D barcodes. Default value: true. | +| [getGS1CompositeBar](./getgs1compositebar/) | GS1 Composite Bar parameters. | +| [getHanXin](./gethanxin/) | HanXin parameters. | +| [getITF](./getitf/) | ITF parameters. | +| [getMaxiCode](./getmaxicode/) | MaxiCode parameters. | +| [getPadding](./getpadding/) | Barcode paddings. Default value: 5pt 5pt 5pt 5pt. | +| [getPatchCode](./getpatchcode/) | PatchCode parameters. | +| [getPdf417](./getpdf417/) | PDF417 parameters. | +| [getPostal](./getpostal/) | Postal parameters. Used for Postnet, Planet. | +| [getQR](./getqr/) | QR parameters. | +| [getSupplement](./getsupplement/) | Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. | +| [getWideNarrowRatio](./getwidenarrowratio/) | Wide bars to Narrow bars ratio . Default value: 3, that is, wide bars are 3 times as wide as narrow bars . Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39Extended, Code39Standard The... | +| [getXDimension](./getxdimension/) | x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [init](./init/) | | +| [isChecksumEnabled](./ischecksumenabled/) | Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode... | +| [setBarColor](./setbarcolor/)(*object*) | Bars color. | +| [setBarHeight](./setbarheight/)(*object*) | Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [setBarWidthReduction](./setbarwidthreduction/)(*object*) | Sets bars reduction value that is used to compensate ink spread while printing. | +| [setChecksumAlwaysShow](./setchecksumalwaysshow/)(*object*) | Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. | +| [setChecksumEnabled](./setchecksumenabled/)(*object*) | Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode... | +| [setEnableEscape](./setenableescape/)(*object*) | Indicates whether explains the character "\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters. | +| [setFilledBars](./setfilledbars/)(*object*) | Sets a value indicating whether bars filled. Only for 1D barcodes. Default value: true. | +| [setGS1CompositeBar](./setgs1compositebar/)(*object*) | GS1 Composite Bar parameters. | +| [setPadding](./setpadding/)(*object*) | Barcode paddings. Default value: 5pt 5pt 5pt 5pt. | +| [setWideNarrowRatio](./setwidenarrowratio/)(*object*) | Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39Extended, Code39Standard. | +| [setXDimension](./setxdimension/)(*object*) | x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | + +## Fields + +| Name | Description | +| --- | --- | +| [australianPost](./australianpost/) | | +| [aztec](./aztec/) | | +| [barHeight](./barheight/) | | +| [barWidthReduction](./barwidthreduction/) | | +| [codabar](./codabar/) | | +| [codablock](./codablock/) | | +| [code128](./code128/) | | +| [code16K](./code16k/) | | +| [codeTextParameters](./codetextparameters/) | | +| [coupon](./coupon/) | | +| [dataBar](./databar/) | | +| [dataMatrix](./datamatrix/) | | +| [dotCode](./dotcode/) | | +| [gs1CompositeBar](./gs1compositebar/) | | +| [hanXin](./hanxin/) | | +| [itf](./itf/) | | +| [maxiCode](./maxicode/) | | +| [padding](./padding/) | | +| [patchCode](./patchcode/) | | +| [pdf417](./pdf417/) | | +| [postal](./postal/) | | +| [qr](./qr/) | | +| [supplement](./supplement/) | | +| [xDimension](./xdimension/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodeparameters/barcodeparameters/_index.md b/english/nodejs/barcodeparameters/barcodeparameters/_index.md new file mode 100644 index 000000000..4880a295c --- /dev/null +++ b/english/nodejs/barcodeparameters/barcodeparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters" +linktitle: "BarcodeParameters" +articleTitle: "BarcodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarcodeParameters class." +type: docs +weight: 10 +url: /nodejs/barcodeparameters/barcodeparameters/ +--- +## BarcodeParameters(object) {#constructor} + +Initializes a new instance of the BarcodeParameters class. + +```javascript +public BarcodeParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getaustralianpost/_index.md b/english/nodejs/barcodeparameters/getaustralianpost/_index.md new file mode 100644 index 000000000..e9b19b2b8 --- /dev/null +++ b/english/nodejs/barcodeparameters/getaustralianpost/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getAustralianPost" +linktitle: "getAustralianPost" +articleTitle: "getAustralianPost" +second_title: "Aspose.BarCode for Node.js via Java" +description: "AustralianPost barcode parameters." +type: docs +weight: 500 +url: /nodejs/barcodeparameters/getaustralianpost/ +--- +## getAustralianPost() {#getaustralianpost} + +AustralianPost barcode parameters. + +```javascript +getAustralianPost() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getaztec/_index.md b/english/nodejs/barcodeparameters/getaztec/_index.md new file mode 100644 index 000000000..cf9185dd6 --- /dev/null +++ b/english/nodejs/barcodeparameters/getaztec/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getAztec" +linktitle: "getAztec" +articleTitle: "getAztec" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Aztec parameters." +type: docs +weight: 630 +url: /nodejs/barcodeparameters/getaztec/ +--- +## getAztec() {#getaztec} + +Aztec parameters. + +```javascript +getAztec() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getbarcolor/_index.md b/english/nodejs/barcodeparameters/getbarcolor/_index.md new file mode 100644 index 000000000..6e6a61221 --- /dev/null +++ b/english/nodejs/barcodeparameters/getbarcolor/_index.md @@ -0,0 +1,30 @@ +--- +title: "BarcodeParameters.getBarColor" +linktitle: "getBarColor" +articleTitle: "getBarColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Bars color." +type: docs +weight: 310 +url: /nodejs/barcodeparameters/getbarcolor/ +--- +## getBarColor() {#getbarcolor} + +Bars color. + +```javascript +getBarColor() +``` + +### Return Value + +value + +of Bar color +Default value: #000000 + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getbarheight/_index.md b/english/nodejs/barcodeparameters/getbarheight/_index.md new file mode 100644 index 000000000..c7f796d17 --- /dev/null +++ b/english/nodejs/barcodeparameters/getbarheight/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getBarHeight" +linktitle: "getBarHeight" +articleTitle: "getBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 290 +url: /nodejs/barcodeparameters/getbarheight/ +--- +## getBarHeight() {#getbarheight} + +Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +getBarHeight() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getbarwidthreduction/_index.md b/english/nodejs/barcodeparameters/getbarwidthreduction/_index.md new file mode 100644 index 000000000..adab96aa2 --- /dev/null +++ b/english/nodejs/barcodeparameters/getbarwidthreduction/_index.md @@ -0,0 +1,30 @@ +--- +title: "BarcodeParameters.getBarWidthReduction" +linktitle: "getBarWidthReduction" +articleTitle: "getBarWidthReduction" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Get bars reduction value that is used to compensate ink spread while printing." +type: docs +weight: 460 +url: /nodejs/barcodeparameters/getbarwidthreduction/ +--- +## getBarWidthReduction() {#getbarwidthreduction} + +Get bars reduction value that is used to compensate ink spread while printing. + +```javascript +getBarWidthReduction() +``` + +### Return Value + +[Unit](../../..//unit/) + +value of BarWidthReduction + +### See Also + +* class [Unit](../../unit/) +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getchecksumalwaysshow/_index.md b/english/nodejs/barcodeparameters/getchecksumalwaysshow/_index.md new file mode 100644 index 000000000..0ffe04546 --- /dev/null +++ b/english/nodejs/barcodeparameters/getchecksumalwaysshow/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getChecksumAlwaysShow" +linktitle: "getChecksumAlwaysShow" +articleTitle: "getChecksumAlwaysShow" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes." +type: docs +weight: 350 +url: /nodejs/barcodeparameters/getchecksumalwaysshow/ +--- +## getChecksumAlwaysShow() {#getchecksumalwaysshow} + +Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. + +```javascript +getChecksumAlwaysShow() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcodabar/_index.md b/english/nodejs/barcodeparameters/getcodabar/_index.md new file mode 100644 index 000000000..1d12d5bd7 --- /dev/null +++ b/english/nodejs/barcodeparameters/getcodabar/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCodabar" +linktitle: "getCodabar" +articleTitle: "getCodabar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codabar parameters." +type: docs +weight: 650 +url: /nodejs/barcodeparameters/getcodabar/ +--- +## getCodabar() {#getcodabar} + +Codabar parameters. + +```javascript +getCodabar() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcodablock/_index.md b/english/nodejs/barcodeparameters/getcodablock/_index.md new file mode 100644 index 000000000..6ebc73893 --- /dev/null +++ b/english/nodejs/barcodeparameters/getcodablock/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCodablock" +linktitle: "getCodablock" +articleTitle: "getCodablock" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codablock parameters." +type: docs +weight: 540 +url: /nodejs/barcodeparameters/getcodablock/ +--- +## getCodablock() {#getcodablock} + +Codablock parameters. + +```javascript +getCodablock() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcode128/_index.md b/english/nodejs/barcodeparameters/getcode128/_index.md new file mode 100644 index 000000000..cd8806371 --- /dev/null +++ b/english/nodejs/barcodeparameters/getcode128/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCode128" +linktitle: "getCode128" +articleTitle: "getCode128" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Code128 parameters." +type: docs +weight: 640 +url: /nodejs/barcodeparameters/getcode128/ +--- +## getCode128() {#getcode128} + +Code128 parameters. + +```javascript +getCode128() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcode16k/_index.md b/english/nodejs/barcodeparameters/getcode16k/_index.md new file mode 100644 index 000000000..43c1e65e5 --- /dev/null +++ b/english/nodejs/barcodeparameters/getcode16k/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCode16K" +linktitle: "getCode16K" +articleTitle: "getCode16K" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Code16K parameters." +type: docs +weight: 560 +url: /nodejs/barcodeparameters/getcode16k/ +--- +## getCode16K() {#getcode16k} + +Code16K parameters. + +```javascript +getCode16K() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcodetextparameters/_index.md b/english/nodejs/barcodeparameters/getcodetextparameters/_index.md new file mode 100644 index 000000000..e84d9856f --- /dev/null +++ b/english/nodejs/barcodeparameters/getcodetextparameters/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCodeTextParameters" +linktitle: "getCodeTextParameters" +articleTitle: "getCodeTextParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codetext parameters." +type: docs +weight: 430 +url: /nodejs/barcodeparameters/getcodetextparameters/ +--- +## getCodeTextParameters() {#getcodetextparameters} + +Codetext parameters. + +```javascript +getCodeTextParameters() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getcoupon/_index.md b/english/nodejs/barcodeparameters/getcoupon/_index.md new file mode 100644 index 000000000..38bb7daea --- /dev/null +++ b/english/nodejs/barcodeparameters/getcoupon/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getCoupon" +linktitle: "getCoupon" +articleTitle: "getCoupon" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon." +type: docs +weight: 660 +url: /nodejs/barcodeparameters/getcoupon/ +--- +## getCoupon() {#getcoupon} + +Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. + +```javascript +getCoupon() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getdatabar/_index.md b/english/nodejs/barcodeparameters/getdatabar/_index.md new file mode 100644 index 000000000..642944f4a --- /dev/null +++ b/english/nodejs/barcodeparameters/getdatabar/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getDataBar" +linktitle: "getDataBar" +articleTitle: "getDataBar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Databar parameters." +type: docs +weight: 510 +url: /nodejs/barcodeparameters/getdatabar/ +--- +## getDataBar() {#getdatabar} + +Databar parameters. + +```javascript +getDataBar() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getdatamatrix/_index.md b/english/nodejs/barcodeparameters/getdatamatrix/_index.md new file mode 100644 index 000000000..cb85fb79b --- /dev/null +++ b/english/nodejs/barcodeparameters/getdatamatrix/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getDataMatrix" +linktitle: "getDataMatrix" +articleTitle: "getDataMatrix" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DataMatrix parameters." +type: docs +weight: 550 +url: /nodejs/barcodeparameters/getdatamatrix/ +--- +## getDataMatrix() {#getdatamatrix} + +DataMatrix parameters. + +```javascript +getDataMatrix() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getdotcode/_index.md b/english/nodejs/barcodeparameters/getdotcode/_index.md new file mode 100644 index 000000000..283e1c5b3 --- /dev/null +++ b/english/nodejs/barcodeparameters/getdotcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getDotCode" +linktitle: "getDotCode" +articleTitle: "getDotCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DotCode parameters." +type: docs +weight: 570 +url: /nodejs/barcodeparameters/getdotcode/ +--- +## getDotCode() {#getdotcode} + +DotCode parameters. + +```javascript +getDotCode() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getenableescape/_index.md b/english/nodejs/barcodeparameters/getenableescape/_index.md new file mode 100644 index 000000000..f2ceee564 --- /dev/null +++ b/english/nodejs/barcodeparameters/getenableescape/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getEnableEscape" +linktitle: "getEnableEscape" +articleTitle: "getEnableEscape" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether explains the character \"\\\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is tr..." +type: docs +weight: 390 +url: /nodejs/barcodeparameters/getenableescape/ +--- +## getEnableEscape() {#getenableescape} + +Indicates whether explains the character "\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters. Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \013 and \\CR stands for CR. + +```javascript +getEnableEscape() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getfilledbars/_index.md b/english/nodejs/barcodeparameters/getfilledbars/_index.md new file mode 100644 index 000000000..ae0f2d7da --- /dev/null +++ b/english/nodejs/barcodeparameters/getfilledbars/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getFilledBars" +linktitle: "getFilledBars" +articleTitle: "getFilledBars" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a value indicating whether bars filled. Only for 1D barcodes. Default value: true." +type: docs +weight: 440 +url: /nodejs/barcodeparameters/getfilledbars/ +--- +## getFilledBars() {#getfilledbars} + +Gets a value indicating whether bars filled. Only for 1D barcodes. Default value: true. + +```javascript +getFilledBars() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getgs1compositebar/_index.md b/english/nodejs/barcodeparameters/getgs1compositebar/_index.md new file mode 100644 index 000000000..b6d947575 --- /dev/null +++ b/english/nodejs/barcodeparameters/getgs1compositebar/_index.md @@ -0,0 +1,48 @@ +--- +title: "BarcodeParameters.getGS1CompositeBar" +linktitle: "getGS1CompositeBar" +articleTitle: "getGS1CompositeBar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "GS1 Composite Bar parameters." +type: docs +weight: 520 +url: /nodejs/barcodeparameters/getgs1compositebar/ +--- +## getGS1CompositeBar() {#getgs1compositebar} + +GS1 Composite Bar parameters. + +```javascript +getGS1CompositeBar() +``` + +### Return Value + +[GS1CompositeBarParameters](../../..//gs1compositebarparameters/) + +GS1 Composite Bar parameters. + +## Examples + +```javascript +let codetext = "(01)03212345678906/(21)A1B2C3D4E5F6G7H8"; +let generator = new BarcodeGenerator(EncodeTypes.GS_1_COMPOSITE_BAR, codetext); +generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS_1_CODE_128); +generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC_A); +// Aspect ratio of 2D component +generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); +// X-Dimension of 1D and 2D components +generator.getParameters().getBarcode().getXDimension().setPixels(3); +/// +// Height of 1D component +generator.getParameters().getBarcode().getBarHeight().setPixels(100); +/// +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* class [GS1CompositeBarParameters](../../gs1compositebarparameters/) +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/gethanxin/_index.md b/english/nodejs/barcodeparameters/gethanxin/_index.md new file mode 100644 index 000000000..669409b12 --- /dev/null +++ b/english/nodejs/barcodeparameters/gethanxin/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getHanXin" +linktitle: "getHanXin" +articleTitle: "getHanXin" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HanXin parameters." +type: docs +weight: 670 +url: /nodejs/barcodeparameters/gethanxin/ +--- +## getHanXin() {#gethanxin} + +HanXin parameters. + +```javascript +getHanXin() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getitf/_index.md b/english/nodejs/barcodeparameters/getitf/_index.md new file mode 100644 index 000000000..e9c36467e --- /dev/null +++ b/english/nodejs/barcodeparameters/getitf/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getITF" +linktitle: "getITF" +articleTitle: "getITF" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ITF parameters." +type: docs +weight: 580 +url: /nodejs/barcodeparameters/getitf/ +--- +## getITF() {#getitf} + +ITF parameters. + +```javascript +getITF() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getmaxicode/_index.md b/english/nodejs/barcodeparameters/getmaxicode/_index.md new file mode 100644 index 000000000..0fbabc5a7 --- /dev/null +++ b/english/nodejs/barcodeparameters/getmaxicode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getMaxiCode" +linktitle: "getMaxiCode" +articleTitle: "getMaxiCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MaxiCode parameters." +type: docs +weight: 620 +url: /nodejs/barcodeparameters/getmaxicode/ +--- +## getMaxiCode() {#getmaxicode} + +MaxiCode parameters. + +```javascript +getMaxiCode() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getpadding/_index.md b/english/nodejs/barcodeparameters/getpadding/_index.md new file mode 100644 index 000000000..dd6a3fa6d --- /dev/null +++ b/english/nodejs/barcodeparameters/getpadding/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getPadding" +linktitle: "getPadding" +articleTitle: "getPadding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode paddings. Default value: 5pt 5pt 5pt 5pt." +type: docs +weight: 330 +url: /nodejs/barcodeparameters/getpadding/ +--- +## getPadding() {#getpadding} + +Barcode paddings. Default value: 5pt 5pt 5pt 5pt. + +```javascript +getPadding() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getpatchcode/_index.md b/english/nodejs/barcodeparameters/getpatchcode/_index.md new file mode 100644 index 000000000..1304c207a --- /dev/null +++ b/english/nodejs/barcodeparameters/getpatchcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getPatchCode" +linktitle: "getPatchCode" +articleTitle: "getPatchCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode parameters." +type: docs +weight: 490 +url: /nodejs/barcodeparameters/getpatchcode/ +--- +## getPatchCode() {#getpatchcode} + +PatchCode parameters. + +```javascript +getPatchCode() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getpdf417/_index.md b/english/nodejs/barcodeparameters/getpdf417/_index.md new file mode 100644 index 000000000..81f0a221d --- /dev/null +++ b/english/nodejs/barcodeparameters/getpdf417/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getPdf417" +linktitle: "getPdf417" +articleTitle: "getPdf417" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PDF417 parameters." +type: docs +weight: 590 +url: /nodejs/barcodeparameters/getpdf417/ +--- +## getPdf417() {#getpdf417} + +PDF417 parameters. + +```javascript +getPdf417() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getpostal/_index.md b/english/nodejs/barcodeparameters/getpostal/_index.md new file mode 100644 index 000000000..0803e28ba --- /dev/null +++ b/english/nodejs/barcodeparameters/getpostal/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getPostal" +linktitle: "getPostal" +articleTitle: "getPostal" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Postal parameters. Used for Postnet, Planet." +type: docs +weight: 480 +url: /nodejs/barcodeparameters/getpostal/ +--- +## getPostal() {#getpostal} + +Postal parameters. Used for Postnet, Planet. + +```javascript +getPostal() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getqr/_index.md b/english/nodejs/barcodeparameters/getqr/_index.md new file mode 100644 index 000000000..e1a48764d --- /dev/null +++ b/english/nodejs/barcodeparameters/getqr/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getQR" +linktitle: "getQR" +articleTitle: "getQR" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR parameters." +type: docs +weight: 600 +url: /nodejs/barcodeparameters/getqr/ +--- +## getQR() {#getqr} + +QR parameters. + +```javascript +getQR() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getsupplement/_index.md b/english/nodejs/barcodeparameters/getsupplement/_index.md new file mode 100644 index 000000000..945173921 --- /dev/null +++ b/english/nodejs/barcodeparameters/getsupplement/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getSupplement" +linktitle: "getSupplement" +articleTitle: "getSupplement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN." +type: docs +weight: 610 +url: /nodejs/barcodeparameters/getsupplement/ +--- +## getSupplement() {#getsupplement} + +Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. + +```javascript +getSupplement() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getwidenarrowratio/_index.md b/english/nodejs/barcodeparameters/getwidenarrowratio/_index.md new file mode 100644 index 000000000..12a5752e5 --- /dev/null +++ b/english/nodejs/barcodeparameters/getwidenarrowratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getWideNarrowRatio" +linktitle: "getWideNarrowRatio" +articleTitle: "getWideNarrowRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Wide bars to Narrow bars ratio . Default value: 3, that is, wide bars are 3 times as wide as narrow bars . Used for ITF, PZN, PharmaCode, Standard2of5, Inter..." +type: docs +weight: 410 +url: /nodejs/barcodeparameters/getwidenarrowratio/ +--- +## getWideNarrowRatio() {#getwidenarrowratio} + +Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39Extended, Code39Standard The WideNarrowRatio parameter value is less than or equal to 0. + +```javascript +getWideNarrowRatio() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/getxdimension/_index.md b/english/nodejs/barcodeparameters/getxdimension/_index.md new file mode 100644 index 000000000..b689c81a2 --- /dev/null +++ b/english/nodejs/barcodeparameters/getxdimension/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.getXDimension" +linktitle: "getXDimension" +articleTitle: "getXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode p..." +type: docs +weight: 270 +url: /nodejs/barcodeparameters/getxdimension/ +--- +## getXDimension() {#getxdimension} + +x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +getXDimension() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/init/_index.md b/english/nodejs/barcodeparameters/init/_index.md new file mode 100644 index 000000000..988567e61 --- /dev/null +++ b/english/nodejs/barcodeparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 260 +url: /nodejs/barcodeparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/ischecksumenabled/_index.md b/english/nodejs/barcodeparameters/ischecksumenabled/_index.md new file mode 100644 index 000000000..11161b173 --- /dev/null +++ b/english/nodejs/barcodeparameters/ischecksumenabled/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeParameters.isChecksumEnabled" +linktitle: "isChecksumEnabled" +articleTitle: "isChecksumEnabled" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Check..." +type: docs +weight: 370 +url: /nodejs/barcodeparameters/ischecksumenabled/ +--- +## isChecksumEnabled() {#ischecksumenabled} + +Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar Checksum always used: Rest symbology + +```javascript +isChecksumEnabled() +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setbarcolor/_index.md b/english/nodejs/barcodeparameters/setbarcolor/_index.md new file mode 100644 index 000000000..b92c61fdc --- /dev/null +++ b/english/nodejs/barcodeparameters/setbarcolor/_index.md @@ -0,0 +1,28 @@ +--- +title: "BarcodeParameters.setBarColor" +linktitle: "setBarColor" +articleTitle: "setBarColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Bars color." +type: docs +weight: 320 +url: /nodejs/barcodeparameters/setbarcolor/ +--- +## setBarColor(object) {#setbarcolor} + +Bars color. + +```javascript +setBarColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | for Bar color +Default value: #000000. | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setbarheight/_index.md b/english/nodejs/barcodeparameters/setbarheight/_index.md new file mode 100644 index 000000000..ad7436e21 --- /dev/null +++ b/english/nodejs/barcodeparameters/setbarheight/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setBarHeight" +linktitle: "setBarHeight" +articleTitle: "setBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 300 +url: /nodejs/barcodeparameters/setbarheight/ +--- +## setBarHeight(object) {#setbarheight} + +Height of 1D barcodes' bars in Unit value. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +setBarHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setbarwidthreduction/_index.md b/english/nodejs/barcodeparameters/setbarwidthreduction/_index.md new file mode 100644 index 000000000..2e914c571 --- /dev/null +++ b/english/nodejs/barcodeparameters/setbarwidthreduction/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setBarWidthReduction" +linktitle: "setBarWidthReduction" +articleTitle: "setBarWidthReduction" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets bars reduction value that is used to compensate ink spread while printing." +type: docs +weight: 470 +url: /nodejs/barcodeparameters/setbarwidthreduction/ +--- +## setBarWidthReduction(object) {#setbarwidthreduction} + +Sets bars reduction value that is used to compensate ink spread while printing. + +```javascript +setBarWidthReduction(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setchecksumalwaysshow/_index.md b/english/nodejs/barcodeparameters/setchecksumalwaysshow/_index.md new file mode 100644 index 000000000..b37ce62c8 --- /dev/null +++ b/english/nodejs/barcodeparameters/setchecksumalwaysshow/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setChecksumAlwaysShow" +linktitle: "setChecksumAlwaysShow" +articleTitle: "setChecksumAlwaysShow" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes." +type: docs +weight: 360 +url: /nodejs/barcodeparameters/setchecksumalwaysshow/ +--- +## setChecksumAlwaysShow(object) {#setchecksumalwaysshow} + +Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes. + +```javascript +setChecksumAlwaysShow(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setchecksumenabled/_index.md b/english/nodejs/barcodeparameters/setchecksumenabled/_index.md new file mode 100644 index 000000000..a839d25b4 --- /dev/null +++ b/english/nodejs/barcodeparameters/setchecksumenabled/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setChecksumEnabled" +linktitle: "setChecksumEnabled" +articleTitle: "setChecksumEnabled" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Check..." +type: docs +weight: 380 +url: /nodejs/barcodeparameters/setchecksumenabled/ +--- +## setChecksumEnabled(object) {#setchecksumenabled} + +Enable checksum during generation 1D barcodes. Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible. Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar Checksum always used: Rest symbology + +```javascript +setChecksumEnabled(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setenableescape/_index.md b/english/nodejs/barcodeparameters/setenableescape/_index.md new file mode 100644 index 000000000..6e1d22d67 --- /dev/null +++ b/english/nodejs/barcodeparameters/setenableescape/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setEnableEscape" +linktitle: "setEnableEscape" +articleTitle: "setEnableEscape" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether explains the character \"\\\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is tr..." +type: docs +weight: 400 +url: /nodejs/barcodeparameters/setenableescape/ +--- +## setEnableEscape(object) {#setenableescape} + +Indicates whether explains the character "\" as an escape character in CodeText property. Used for Pdf417, DataMatrix, Code128 only If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters. + +```javascript +setEnableEscape(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setfilledbars/_index.md b/english/nodejs/barcodeparameters/setfilledbars/_index.md new file mode 100644 index 000000000..475b9e378 --- /dev/null +++ b/english/nodejs/barcodeparameters/setfilledbars/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setFilledBars" +linktitle: "setFilledBars" +articleTitle: "setFilledBars" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a value indicating whether bars filled. Only for 1D barcodes. Default value: true." +type: docs +weight: 450 +url: /nodejs/barcodeparameters/setfilledbars/ +--- +## setFilledBars(object) {#setfilledbars} + +Sets a value indicating whether bars filled. Only for 1D barcodes. Default value: true. + +```javascript +setFilledBars(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setgs1compositebar/_index.md b/english/nodejs/barcodeparameters/setgs1compositebar/_index.md new file mode 100644 index 000000000..d9582b970 --- /dev/null +++ b/english/nodejs/barcodeparameters/setgs1compositebar/_index.md @@ -0,0 +1,43 @@ +--- +title: "BarcodeParameters.setGS1CompositeBar" +linktitle: "setGS1CompositeBar" +articleTitle: "setGS1CompositeBar" +second_title: "Aspose.BarCode for Node.js via Java" +description: "GS1 Composite Bar parameters." +type: docs +weight: 530 +url: /nodejs/barcodeparameters/setgs1compositebar/ +--- +## setGS1CompositeBar(object) {#setgs1compositebar} + +GS1 Composite Bar parameters. + +```javascript +setGS1CompositeBar(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +```javascript +let codetext = "(01)03212345678906/(21)A1B2C3D4E5F6G7H8"; +let generator = new BarcodeGenerator(EncodeTypes.GS_1_COMPOSITE_BAR, codetext); +generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS_1_CODE_128); +generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC_A); +// Aspect ratio of 2D component +generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); +// X-Dimension of 1D and 2D components +generator.getParameters().getBarcode().getXDimension().setPixels(3); +// Height of 1D component +generator.getParameters().getBarcode().getBarHeight().setPixels(100); +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setpadding/_index.md b/english/nodejs/barcodeparameters/setpadding/_index.md new file mode 100644 index 000000000..dbe89fc5a --- /dev/null +++ b/english/nodejs/barcodeparameters/setpadding/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setPadding" +linktitle: "setPadding" +articleTitle: "setPadding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode paddings. Default value: 5pt 5pt 5pt 5pt." +type: docs +weight: 340 +url: /nodejs/barcodeparameters/setpadding/ +--- +## setPadding(object) {#setpadding} + +Barcode paddings. Default value: 5pt 5pt 5pt 5pt. + +```javascript +setPadding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setwidenarrowratio/_index.md b/english/nodejs/barcodeparameters/setwidenarrowratio/_index.md new file mode 100644 index 000000000..9a31d9565 --- /dev/null +++ b/english/nodejs/barcodeparameters/setwidenarrowratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setWideNarrowRatio" +linktitle: "setWideNarrowRatio" +articleTitle: "setWideNarrowRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interle..." +type: docs +weight: 420 +url: /nodejs/barcodeparameters/setwidenarrowratio/ +--- +## setWideNarrowRatio(object) {#setwidenarrowratio} + +Wide bars to Narrow bars ratio. Default value: 3, that is, wide bars are 3 times as wide as narrow bars. Used for ITF, PZN, PharmaCode, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, IATA2of5, VIN, DeutschePost, OPC, Code32, DataLogic2of5, PatchCode, Code39Extended, Code39Standard + +```javascript +setWideNarrowRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodeparameters/setxdimension/_index.md b/english/nodejs/barcodeparameters/setxdimension/_index.md new file mode 100644 index 000000000..a520580ee --- /dev/null +++ b/english/nodejs/barcodeparameters/setxdimension/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeParameters.setXDimension" +linktitle: "setXDimension" +articleTitle: "setXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode p..." +type: docs +weight: 280 +url: /nodejs/barcodeparameters/setxdimension/ +--- +## setXDimension(object) {#setxdimension} + +x-dimension is the smallest width of the unit of BarCode bars or spaces. Increase this will increase the whole barcode image width. Ignored if AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +setXDimension(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BarcodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodequalitymode/_index.md b/english/nodejs/barcodequalitymode/_index.md new file mode 100644 index 000000000..cb837ad1d --- /dev/null +++ b/english/nodejs/barcodequalitymode/_index.md @@ -0,0 +1,30 @@ +--- +title: "BarcodeQualityMode Enum" +linktitle: "BarcodeQualityMode" +articleTitle: "BarcodeQualityMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows..." +type: docs +weight: 1560 +url: /nodejs/barcodequalitymode/ +--- +## BarcodeQualityMode enumeration + +Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. + +```javascript +public enum BarcodeQualityMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| HIGH | `0` | Enables recognition methods for High quality barcodes. | +| NORMAL | `1` | Enables recognition methods for Common(Normal) quality barcodes. | +| LOW | `2` | Enables recognition methods for Low quality barcodes. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodereader/_index.md b/english/nodejs/barcodereader/_index.md new file mode 100644 index 000000000..a05e85bc9 --- /dev/null +++ b/english/nodejs/barcodereader/_index.md @@ -0,0 +1,74 @@ +--- +title: "BarCodeReader Class" +linktitle: "BarCodeReader" +articleTitle: "BarCodeReader" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform ReadBarCodes operation to detect barcodes." +type: docs +weight: 1260 +url: /nodejs/barcodereader/ +--- +## BarCodeReader class + +BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform ReadBarCodes operation to detect barcodes. + +```javascript +public class BarCodeReader : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarCodeReader](./barcodereader/#constructor)(*object, object, object*) | Initializes a new instance of the BarCodeReader. | + +## Methods + +| Name | Description | +| --- | --- | +| [abort](./abort/) | | +| [construct](./construct/)(*object*) | | +| [containsAny](./containsany/)(*object*) | Determines whether any of the given decode types is included into. | +| [convertToString](./converttostring/)(*object*) | internal. | +| [exportToXml](./exporttoxml/)(*object*) | Exports BarCode properties to the xml-file specified. | +| [getBarCodeDecodeType](./getbarcodedecodetype/) | Gets the decode type of the input barcode decoding. | +| [getBarcodeSettings](./getbarcodesettings/) | The main BarCode decoding parameters. Contains parameters which make influence on recognized data. | +| [getFoundBarCodes](./getfoundbarcodes/) | Gets recognized BarCodeResult array. | +| [getFoundCount](./getfoundcount/) | Gets recognized barcodes count. | +| [getQualitySettings](./getqualitysettings/) | QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. | +| [getTimeout](./gettimeout/) | Gets the timeout of recognition process in milliseconds. | +| [importFromXml](./importfromxml/)(*object*) | Exports BarCode properties to the xml-file specified. | +| [init](./init/) | | +| [javaClassName](./javaclassname/) | | +| [readBarCodes](./readbarcodes/) | Reads BarCodeResult from the image. | +| [setBarCodeImage](./setbarcodeimage/)(*object, object*) | Sets bitmap image and areas for recognition. Must be called before ReadBarCodes() method. | +| [setBarCodeReadType](./setbarcodereadtype/)(*object*) | Sets SingleDecodeType type array for recognition. Must be called before readBarCodes() method. | +| [setQualitySettings](./setqualitysettings/)(*object*) | QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. | +| [setTimeout](./settimeout/)(*object*) | Sets the timeout of recognition process in milliseconds. | + +## Fields + +| Name | Description | +| --- | --- | +| [barcodeSettings](./barcodesettings/) | | +| [qualitySettings](./qualitysettings/) | | +| [recognizedResults](./recognizedresults/) | | + +## Examples + +```javascript +//This sample shows how to detect Code39 and Code128 barcodes. +let reader = new BarCodeReader("test.png", null, [DecodeType.CODE_39, DecodeType.CODE_128]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodereader/abort/_index.md b/english/nodejs/barcodereader/abort/_index.md new file mode 100644 index 000000000..cd67fcaac --- /dev/null +++ b/english/nodejs/barcodereader/abort/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeReader.abort" +linktitle: "abort" +articleTitle: "abort" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 120 +url: /nodejs/barcodereader/abort/ +--- +## abort() {#abort} + + + +```javascript +abort() +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/barcodereader/_index.md b/english/nodejs/barcodereader/barcodereader/_index.md new file mode 100644 index 000000000..4f42d5830 --- /dev/null +++ b/english/nodejs/barcodereader/barcodereader/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeReader" +linktitle: "BarCodeReader" +articleTitle: "BarCodeReader" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarCodeReader class." +type: docs +weight: 10 +url: /nodejs/barcodereader/barcodereader/ +--- +## BarCodeReader(object, object, object) {#constructor} + +Initializes a new instance of the BarCodeReader + +```javascript +public BarCodeReader(object image, object areas, object decodeTypes) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| image | object | encoded as base64 string or path to image | +| areas | object | array of object by type Rectangle | +| decodeTypes | object | the array of objects by DecodeType | + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/construct/_index.md b/english/nodejs/barcodereader/construct/_index.md new file mode 100644 index 000000000..fa06a0c5f --- /dev/null +++ b/english/nodejs/barcodereader/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeReader.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/barcodereader/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/containsany/_index.md b/english/nodejs/barcodereader/containsany/_index.md new file mode 100644 index 000000000..7a2657a0a --- /dev/null +++ b/english/nodejs/barcodereader/containsany/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeReader.containsAny" +linktitle: "containsAny" +articleTitle: "containsAny" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines whether any of the given decode types is included into." +type: docs +weight: 70 +url: /nodejs/barcodereader/containsany/ +--- +## containsAny(object) {#containsany} + +Determines whether any of the given decode types is included into + +```javascript +containsAny(...decodeTypes) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ...decodeTypes | object | | + +### Return Value + +bool + +Value is a true if any types are included into. + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/converttostring/_index.md b/english/nodejs/barcodereader/converttostring/_index.md new file mode 100644 index 000000000..fe28a8a5b --- /dev/null +++ b/english/nodejs/barcodereader/converttostring/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeReader.convertToString" +linktitle: "convertToString" +articleTitle: "convertToString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "internal." +type: docs +weight: 80 +url: /nodejs/barcodereader/converttostring/ +--- +## convertToString(object) {#converttostring} + +internal + +```javascript +static convertToString(arg) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| arg | object | | + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/exporttoxml/_index.md b/english/nodejs/barcodereader/exporttoxml/_index.md new file mode 100644 index 000000000..ff38692f5 --- /dev/null +++ b/english/nodejs/barcodereader/exporttoxml/_index.md @@ -0,0 +1,34 @@ +--- +title: "BarCodeReader.exportToXml" +linktitle: "exportToXml" +articleTitle: "exportToXml" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Exports BarCode properties to the xml-file specified." +type: docs +weight: 220 +url: /nodejs/barcodereader/exporttoxml/ +--- +## exportToXml(object) {#exporttoxml} + +Exports BarCode properties to the xml-file specified + +```javascript +exportToXml(xmlFile) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlFile | object | The name of the file
| + +### Return Value + +Whether + +or not export completed successfully. +Returns True in case of success; False Otherwise + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/getbarcodedecodetype/_index.md b/english/nodejs/barcodereader/getbarcodedecodetype/_index.md new file mode 100644 index 000000000..1613529da --- /dev/null +++ b/english/nodejs/barcodereader/getbarcodedecodetype/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeReader.getBarCodeDecodeType" +linktitle: "getBarCodeDecodeType" +articleTitle: "getBarCodeDecodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the decode type of the input barcode decoding." +type: docs +weight: 210 +url: /nodejs/barcodereader/getbarcodedecodetype/ +--- +## getBarCodeDecodeType() {#getbarcodedecodetype} + +Gets the decode type of the input barcode decoding + +```javascript +getBarCodeDecodeType() +``` + +### Return Value + +* + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/getbarcodesettings/_index.md b/english/nodejs/barcodereader/getbarcodesettings/_index.md new file mode 100644 index 000000000..9b8c9bb55 --- /dev/null +++ b/english/nodejs/barcodereader/getbarcodesettings/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeReader.getBarcodeSettings" +linktitle: "getBarcodeSettings" +articleTitle: "getBarcodeSettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The main BarCode decoding parameters. Contains parameters which make influence on recognized data." +type: docs +weight: 180 +url: /nodejs/barcodereader/getbarcodesettings/ +--- +## getBarcodeSettings() {#getbarcodesettings} + +The main BarCode decoding parameters. Contains parameters which make influence on recognized data. + +```javascript +getBarcodeSettings() +``` + +### Return Value + +The + +main BarCode decoding parameters + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/getfoundbarcodes/_index.md b/english/nodejs/barcodereader/getfoundbarcodes/_index.md new file mode 100644 index 000000000..1a22d0669 --- /dev/null +++ b/english/nodejs/barcodereader/getfoundbarcodes/_index.md @@ -0,0 +1,39 @@ +--- +title: "BarCodeReader.getFoundBarCodes" +linktitle: "getFoundBarCodes" +articleTitle: "getFoundBarCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets recognized BarCodeResult array." +type: docs +weight: 130 +url: /nodejs/barcodereader/getfoundbarcodes/ +--- +## getFoundBarCodes() {#getfoundbarcodes} + +Gets recognized BarCodeResult array + +```javascript +getFoundBarCodes() +``` + +### Return Value + +recognized + +BarCodeResult array + +## Examples + +```javascript +//This sample shows how to read barcodes with BarCodeReader +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +reader.readBarCodes(); +for(let i = 0; reader.getFoundCount() > i; ++i) +console.log("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/getfoundcount/_index.md b/english/nodejs/barcodereader/getfoundcount/_index.md new file mode 100644 index 000000000..e0e4667fd --- /dev/null +++ b/english/nodejs/barcodereader/getfoundcount/_index.md @@ -0,0 +1,34 @@ +--- +title: "BarCodeReader.getFoundCount" +linktitle: "getFoundCount" +articleTitle: "getFoundCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets recognized barcodes count." +type: docs +weight: 140 +url: /nodejs/barcodereader/getfoundcount/ +--- +## getFoundCount() {#getfoundcount} + +Gets recognized barcodes count + +```javascript +getFoundCount() +``` + +## Examples + +```javascript +//This sample shows how to read barcodes with BarCodeReader +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +reader.readBarCodes(); +for(let i = 0; reader.getFoundCount() > i; ++i) +console.log("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +Value: The recognized barcodes count +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/getqualitysettings/_index.md b/english/nodejs/barcodereader/getqualitysettings/_index.md new file mode 100644 index 000000000..59458c72d --- /dev/null +++ b/english/nodejs/barcodereader/getqualitysettings/_index.md @@ -0,0 +1,71 @@ +--- +title: "BarCodeReader.getQualitySettings" +linktitle: "getQualitySettings" +articleTitle: "getQualitySettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, Norm..." +type: docs +weight: 160 +url: /nodejs/barcodereader/getqualitysettings/ +--- +## getQualitySettings() {#getqualitysettings} + +QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. + +```javascript +getQualitySettings() +``` + +### Return Value + +[QualitySettings](../../..//qualitysettings/) + +to configure recognition quality and speed. + +## Examples + +```javascript +//This sample shows how to use QualitySettings with BarCodeReader +let reader = new BarCodeReader("test.png", null, null); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//normal quality mode is set by default +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +//set separate options +reader.getQualitySettings().setAllowMedianSmoothing(true); +reader.getQualitySettings().setMedianSmoothingWindowSize(5); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [QualitySettings](../../qualitysettings/) +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/gettimeout/_index.md b/english/nodejs/barcodereader/gettimeout/_index.md new file mode 100644 index 000000000..68ebbaf75 --- /dev/null +++ b/english/nodejs/barcodereader/gettimeout/_index.md @@ -0,0 +1,42 @@ +--- +title: "BarCodeReader.getTimeout" +linktitle: "getTimeout" +articleTitle: "getTimeout" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the timeout of recognition process in milliseconds." +type: docs +weight: 100 +url: /nodejs/barcodereader/gettimeout/ +--- +## getTimeout() {#gettimeout} + +Gets the timeout of recognition process in milliseconds. + +```javascript +getTimeout() +``` + +### Return Value + +The + +timeout. + +## Examples + +```javascript +let reader = new BarCodeReader("test.png", null, null); +reader.setTimeout(5000); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/importfromxml/_index.md b/english/nodejs/barcodereader/importfromxml/_index.md new file mode 100644 index 000000000..c00fe4e46 --- /dev/null +++ b/english/nodejs/barcodereader/importfromxml/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeReader.importFromXml" +linktitle: "importFromXml" +articleTitle: "importFromXml" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Exports BarCode properties to the xml-file specified." +type: docs +weight: 230 +url: /nodejs/barcodereader/importfromxml/ +--- +## importFromXml(object) {#importfromxml} + +Exports BarCode properties to the xml-file specified + +```javascript +static importFromXml(xmlFile) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| xmlFile | object | The name of the file
| + +### Return Value + +Whether + +or not export completed successfully. Returns True in case of success; False Otherwise + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/init/_index.md b/english/nodejs/barcodereader/init/_index.md new file mode 100644 index 000000000..742ddeea8 --- /dev/null +++ b/english/nodejs/barcodereader/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeReader.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 90 +url: /nodejs/barcodereader/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/javaclassname/_index.md b/english/nodejs/barcodereader/javaclassname/_index.md new file mode 100644 index 000000000..917328a60 --- /dev/null +++ b/english/nodejs/barcodereader/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeReader.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/barcodereader/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/readbarcodes/_index.md b/english/nodejs/barcodereader/readbarcodes/_index.md new file mode 100644 index 000000000..151c35425 --- /dev/null +++ b/english/nodejs/barcodereader/readbarcodes/_index.md @@ -0,0 +1,46 @@ +--- +title: "BarCodeReader.readBarCodes" +linktitle: "readBarCodes" +articleTitle: "readBarCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Reads BarCodeResult from the image." +type: docs +weight: 150 +url: /nodejs/barcodereader/readbarcodes/ +--- +## readBarCodes() {#readbarcodes} + +Reads BarCodeResult from the image. + +```javascript +readBarCodes() +``` + +### Return Value + +Returns + +array of recognized { + +## Examples + +```javascript +//This sample shows how to read barcodes with BarCodeReader +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +reader.readBarCodes(); +for(let i = 0; reader.getFoundCount() > i; ++i) +console.log("BarCode CodeText: " + reader.getFoundBarCodes()[i].getCodeText()); +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/setbarcodeimage/_index.md b/english/nodejs/barcodereader/setbarcodeimage/_index.md new file mode 100644 index 000000000..8e4ac2029 --- /dev/null +++ b/english/nodejs/barcodereader/setbarcodeimage/_index.md @@ -0,0 +1,49 @@ +--- +title: "BarCodeReader.setBarCodeImage" +linktitle: "setBarCodeImage" +articleTitle: "setBarCodeImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets bitmap image and areas for recognition. Must be called before ReadBarCodes() method." +type: docs +weight: 190 +url: /nodejs/barcodereader/setbarcodeimage/ +--- +## setBarCodeImage(object, object) {#setbarcodeimage} + +Sets bitmap image and areas for recognition. Must be called before ReadBarCodes() method. + +```javascript +setBarCodeImage(imageResource, ...areas) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| imageResource | object | The image for recognition. | +| ...areas | object | | + +## Examples + +```javascript +//This sample shows how to detect Code39 and Code128 barcodes. +let bmp = "test.png"; +let reader = new BarCodeReader(); +reader.setBarCodeReadType([ DecodeType.CODE_39, DecodeType.CODE_128 ]); +var img = new Image(); +img.src = 'path_to_image'; +width = img.width; +height = img.height; +reader.setBarCodeImage(bmp, new Rectangle[] { new Rectangle(0, 0, width, height) }); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/setbarcodereadtype/_index.md b/english/nodejs/barcodereader/setbarcodereadtype/_index.md new file mode 100644 index 000000000..25d985fde --- /dev/null +++ b/english/nodejs/barcodereader/setbarcodereadtype/_index.md @@ -0,0 +1,43 @@ +--- +title: "BarCodeReader.setBarCodeReadType" +linktitle: "setBarCodeReadType" +articleTitle: "setBarCodeReadType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets SingleDecodeType type array for recognition. Must be called before readBarCodes() method." +type: docs +weight: 200 +url: /nodejs/barcodereader/setbarcodereadtype/ +--- +## setBarCodeReadType(object) {#setbarcodereadtype} + +Sets SingleDecodeType type array for recognition. Must be called before readBarCodes() method. + +```javascript +setBarCodeReadType(...types) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ...types | object | | + +## Examples + +```javascript +//This sample shows how to detect Code39 and Code128 barcodes. +let reader = new BarCodeReader(); +reader.setBarCodeReadType([ DecodeType.CODE_39, DecodeType.CODE_128 ]); +reader.setBarCodeImage("test.png"); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/setqualitysettings/_index.md b/english/nodejs/barcodereader/setqualitysettings/_index.md new file mode 100644 index 000000000..848abee7e --- /dev/null +++ b/english/nodejs/barcodereader/setqualitysettings/_index.md @@ -0,0 +1,69 @@ +--- +title: "BarCodeReader.setQualitySettings" +linktitle: "setQualitySettings" +articleTitle: "setQualitySettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, Norm..." +type: docs +weight: 170 +url: /nodejs/barcodereader/setqualitysettings/ +--- +## setQualitySettings(object) {#setqualitysettings} + +QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. + +```javascript +setQualitySettings(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +```javascript +//This sample shows how to use QualitySettings with BarCodeReader +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//normal quality mode is set by default +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +//set separate options +reader.getQualitySettings().setAllowMedianSmoothing(true); +reader.getQualitySettings().setMedianSmoothingWindowSize(5); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +QualitySettings to configure recognition quality and speed. +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodereader/settimeout/_index.md b/english/nodejs/barcodereader/settimeout/_index.md new file mode 100644 index 000000000..36b0b2576 --- /dev/null +++ b/english/nodejs/barcodereader/settimeout/_index.md @@ -0,0 +1,40 @@ +--- +title: "BarCodeReader.setTimeout" +linktitle: "setTimeout" +articleTitle: "setTimeout" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the timeout of recognition process in milliseconds." +type: docs +weight: 110 +url: /nodejs/barcodereader/settimeout/ +--- +## setTimeout(object) {#settimeout} + +Sets the timeout of recognition process in milliseconds. + +```javascript +setTimeout(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The timeout. | + +## Examples + +```javascript +let reader = new BarCodeReader("test.png", null, null); +reader.setTimeout(5000); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarCodeReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/_index.md b/english/nodejs/barcoderegionparameters/_index.md new file mode 100644 index 000000000..20b7f1a20 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/_index.md @@ -0,0 +1,67 @@ +--- +title: "BarCodeRegionParameters Class" +linktitle: "BarCodeRegionParameters" +articleTitle: "BarCodeRegionParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Represents the recognized barcode's region and barcode angle." +type: docs +weight: 1330 +url: /nodejs/barcoderegionparameters/ +--- +## BarCodeRegionParameters class + +Represents the recognized barcode's region and barcode angle + +```javascript +public class BarCodeRegionParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarCodeRegionParameters](./barcoderegionparameters/#constructor)(*object*) | Initializes a new instance of the BarCodeRegionParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [convertJavaPoints](./convertjavapoints/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value. | +| [getAngle](./getangle/) | Gets the angle of the barcode (0-360). Value: The angle for barcode (0-360). | +| [getPoints](./getpoints/) | Gets Points array bounding barcode region Value: Returns Points array bounding barcode region. | +| [getQuadrangle](./getquadrangle/) | Gets Quadrangle bounding barcode region Value: Returns Quadrangle bounding barcode region. | +| [getRectangle](./getrectangle/) | Gets Rectangle bounding barcode region Value: Returns Rectangle bounding barcode region. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this BarCodeRegionParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [points](./points/) | | +| [quad](./quad/) | | +| [rect](./rect/) | | + +## Examples + +```javascript +//This sample shows how to get barcode Angle and bounding quadrangle values +let generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("BarCode Angle: " + result.getRegion().getAngle()); +console.log("BarCode Quadrangle: " + result.getRegion().getQuadrangle()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcoderegionparameters/barcoderegionparameters/_index.md b/english/nodejs/barcoderegionparameters/barcoderegionparameters/_index.md new file mode 100644 index 000000000..605464d99 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/barcoderegionparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeRegionParameters" +linktitle: "BarCodeRegionParameters" +articleTitle: "BarCodeRegionParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarCodeRegionParameters class." +type: docs +weight: 10 +url: /nodejs/barcoderegionparameters/barcoderegionparameters/ +--- +## BarCodeRegionParameters(object) {#constructor} + +Initializes a new instance of the BarCodeRegionParameters class. + +```javascript +public BarCodeRegionParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/convertjavapoints/_index.md b/english/nodejs/barcoderegionparameters/convertjavapoints/_index.md new file mode 100644 index 000000000..01f5342b2 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/convertjavapoints/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeRegionParameters.convertJavaPoints" +linktitle: "convertJavaPoints" +articleTitle: "convertJavaPoints" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/barcoderegionparameters/convertjavapoints/ +--- +## convertJavaPoints(object) {#convertjavapoints} + + + +```javascript +static convertJavaPoints(javaPoints) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaPoints | object | | + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/equals/_index.md b/english/nodejs/barcoderegionparameters/equals/_index.md new file mode 100644 index 000000000..c5818038d --- /dev/null +++ b/english/nodejs/barcoderegionparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeRegionParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value." +type: docs +weight: 110 +url: /nodejs/barcoderegionparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified BarCodeRegionParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance.
| + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/getangle/_index.md b/english/nodejs/barcoderegionparameters/getangle/_index.md new file mode 100644 index 000000000..311cce92d --- /dev/null +++ b/english/nodejs/barcoderegionparameters/getangle/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeRegionParameters.getAngle" +linktitle: "getAngle" +articleTitle: "getAngle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the angle of the barcode (0-360). Value: The angle for barcode (0-360)." +type: docs +weight: 80 +url: /nodejs/barcoderegionparameters/getangle/ +--- +## getAngle() {#getangle} + +Gets the angle of the barcode (0-360). Value: The angle for barcode (0-360). + +```javascript +getAngle() +``` + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/getpoints/_index.md b/english/nodejs/barcoderegionparameters/getpoints/_index.md new file mode 100644 index 000000000..d1ae7006c --- /dev/null +++ b/english/nodejs/barcoderegionparameters/getpoints/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeRegionParameters.getPoints" +linktitle: "getPoints" +articleTitle: "getPoints" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Points array bounding barcode region Value: Returns Points array bounding barcode region." +type: docs +weight: 90 +url: /nodejs/barcoderegionparameters/getpoints/ +--- +## getPoints() {#getpoints} + +Gets Points array bounding barcode region Value: Returns Points array bounding barcode region + +```javascript +getPoints() +``` + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/getquadrangle/_index.md b/english/nodejs/barcoderegionparameters/getquadrangle/_index.md new file mode 100644 index 000000000..c41e67608 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/getquadrangle/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeRegionParameters.getQuadrangle" +linktitle: "getQuadrangle" +articleTitle: "getQuadrangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Quadrangle bounding barcode region Value: Returns Quadrangle bounding barcode region." +type: docs +weight: 70 +url: /nodejs/barcoderegionparameters/getquadrangle/ +--- +## getQuadrangle() {#getquadrangle} + +Gets Quadrangle bounding barcode region Value: Returns Quadrangle bounding barcode region + +```javascript +getQuadrangle() +``` + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/getrectangle/_index.md b/english/nodejs/barcoderegionparameters/getrectangle/_index.md new file mode 100644 index 000000000..91eea77ef --- /dev/null +++ b/english/nodejs/barcoderegionparameters/getrectangle/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeRegionParameters.getRectangle" +linktitle: "getRectangle" +articleTitle: "getRectangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Rectangle bounding barcode region Value: Returns Rectangle bounding barcode region." +type: docs +weight: 100 +url: /nodejs/barcoderegionparameters/getrectangle/ +--- +## getRectangle() {#getrectangle} + +Gets Rectangle bounding barcode region Value: Returns Rectangle bounding barcode region + +```javascript +getRectangle() +``` + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/hashcode/_index.md b/english/nodejs/barcoderegionparameters/hashcode/_index.md new file mode 100644 index 000000000..f213345d3 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeRegionParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 120 +url: /nodejs/barcoderegionparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/init/_index.md b/english/nodejs/barcoderegionparameters/init/_index.md new file mode 100644 index 000000000..e98c8d80f --- /dev/null +++ b/english/nodejs/barcoderegionparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeRegionParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/barcoderegionparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderegionparameters/tostring/_index.md b/english/nodejs/barcoderegionparameters/tostring/_index.md new file mode 100644 index 000000000..cd8c00385 --- /dev/null +++ b/english/nodejs/barcoderegionparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeRegionParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this BarCodeRegionParameters." +type: docs +weight: 130 +url: /nodejs/barcoderegionparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this BarCodeRegionParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this BarCodeRegionParameters. + +### See Also + +* class [BarCodeRegionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/_index.md b/english/nodejs/barcoderesult/_index.md new file mode 100644 index 000000000..eec6ef553 --- /dev/null +++ b/english/nodejs/barcoderesult/_index.md @@ -0,0 +1,72 @@ +--- +title: "BarCodeResult Class" +linktitle: "BarCodeResult" +articleTitle: "BarCodeResult" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores recognized barcode data like SingleDecodeType type, string codetext, BarCodeRegionParameters region and other parameters." +type: docs +weight: 1320 +url: /nodejs/barcoderesult/ +--- +## BarCodeResult class + +Stores recognized barcode data like SingleDecodeType type, `string` codetext, BarCodeRegionParameters region and other parameters + +```javascript +public class BarCodeResult : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarCodeResult](./barcoderesult/#constructor)(*object*) | Initializes a new instance of the BarCodeResult class. | + +## Methods + +| Name | Description | +| --- | --- | +| [deepClone](./deepclone/) | Creates a copy of BarCodeResult class. | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified BarCodeResult value. | +| [getCodeBytes](./getcodebytes/) | Gets the encoded code bytes Value: The code bytes of the barcode. | +| [getCodeText](./getcodetext/)(*object*) | Gets the code text with encoding. | +| [getCodeType](./getcodetype/) | Gets the barcode type Value: The type information of the recognized barcode. | +| [getCodeTypeName](./getcodetypename/) | Gets the name of the barcode type Value: The type name of the recognized barcode. | +| [getConfidence](./getconfidence/) | Gets recognition confidence level of the recognized barcode Value: BarCodeConfidence.Strong does not have fakes or misrecognitions, BarCodeConfidence.Moderate could sometimes have fakes or incorrect codetext because this confidence level for barcodews with weak cheksum or even without it... | +| [getExtended](./getextended/) | Gets extended parameters of recognized barcode Value: The extended parameters of recognized barcode. | +| [getReadingQuality](./getreadingquality/) | Gets the reading quality. Works for 1D and postal barcodes. Value: The reading quality percent. | +| [getRegion](./getregion/) | Gets the barcode region Value: The region of the recognized barcode. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this BarCodeResult. | + +## Fields + +| Name | Description | +| --- | --- | +| [extended](./extended/) | | +| [region](./region/) | | + +## Examples + +```javascript +//This sample shows how to obtain BarCodeResult. +let generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("BarCode Confidence: " + result.getConfidence()); +console.log("BarCode ReadingQuality: " + result.getReadingQuality()); +console.log("BarCode Angle: " + result.getRegion().getAngle()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcoderesult/barcoderesult/_index.md b/english/nodejs/barcoderesult/barcoderesult/_index.md new file mode 100644 index 000000000..24c5beb8c --- /dev/null +++ b/english/nodejs/barcoderesult/barcoderesult/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarCodeResult" +linktitle: "BarCodeResult" +articleTitle: "BarCodeResult" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarCodeResult class." +type: docs +weight: 10 +url: /nodejs/barcoderesult/barcoderesult/ +--- +## BarCodeResult(object) {#constructor} + +Initializes a new instance of the BarCodeResult class. + +```javascript +public BarCodeResult(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/deepclone/_index.md b/english/nodejs/barcoderesult/deepclone/_index.md new file mode 100644 index 000000000..aa045c7d9 --- /dev/null +++ b/english/nodejs/barcoderesult/deepclone/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeResult.deepClone" +linktitle: "deepClone" +articleTitle: "deepClone" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Creates a copy of BarCodeResult class." +type: docs +weight: 160 +url: /nodejs/barcoderesult/deepclone/ +--- +## deepClone() {#deepclone} + +Creates a copy of BarCodeResult class. + +```javascript +deepClone() +``` + +### Return Value + +Returns + +copy of BarCodeResult class. + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/equals/_index.md b/english/nodejs/barcoderesult/equals/_index.md new file mode 100644 index 000000000..7ab184aa1 --- /dev/null +++ b/english/nodejs/barcoderesult/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeResult.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified BarCodeResult value." +type: docs +weight: 130 +url: /nodejs/barcoderesult/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified BarCodeResult value. + +```javascript +equals(other) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| other | object | An BarCodeResult value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getcodebytes/_index.md b/english/nodejs/barcoderesult/getcodebytes/_index.md new file mode 100644 index 000000000..41fbc5e69 --- /dev/null +++ b/english/nodejs/barcoderesult/getcodebytes/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getCodeBytes" +linktitle: "getCodeBytes" +articleTitle: "getCodeBytes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the encoded code bytes Value: The code bytes of the barcode." +type: docs +weight: 80 +url: /nodejs/barcoderesult/getcodebytes/ +--- +## getCodeBytes() {#getcodebytes} + +Gets the encoded code bytes Value: The code bytes of the barcode + +```javascript +getCodeBytes() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getcodetext/_index.md b/english/nodejs/barcoderesult/getcodetext/_index.md new file mode 100644 index 000000000..d6303ab65 --- /dev/null +++ b/english/nodejs/barcoderesult/getcodetext/_index.md @@ -0,0 +1,33 @@ +--- +title: "BarCodeResult.getCodeText" +linktitle: "getCodeText" +articleTitle: "getCodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the code text with encoding." +type: docs +weight: 70 +url: /nodejs/barcoderesult/getcodetext/ +--- +## getCodeText(object) {#getcodetext} + +Gets the code text with encoding. + +```javascript +getCodeText(encoding) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encoding | object | The encoding for codetext. | + +### Return Value + +A + +string containing recognized code text. + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getcodetype/_index.md b/english/nodejs/barcoderesult/getcodetype/_index.md new file mode 100644 index 000000000..001844fee --- /dev/null +++ b/english/nodejs/barcoderesult/getcodetype/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getCodeType" +linktitle: "getCodeType" +articleTitle: "getCodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the barcode type Value: The type information of the recognized barcode." +type: docs +weight: 90 +url: /nodejs/barcoderesult/getcodetype/ +--- +## getCodeType() {#getcodetype} + +Gets the barcode type Value: The type information of the recognized barcode + +```javascript +getCodeType() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getcodetypename/_index.md b/english/nodejs/barcoderesult/getcodetypename/_index.md new file mode 100644 index 000000000..470611fed --- /dev/null +++ b/english/nodejs/barcoderesult/getcodetypename/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getCodeTypeName" +linktitle: "getCodeTypeName" +articleTitle: "getCodeTypeName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the name of the barcode type Value: The type name of the recognized barcode." +type: docs +weight: 100 +url: /nodejs/barcoderesult/getcodetypename/ +--- +## getCodeTypeName() {#getcodetypename} + +Gets the name of the barcode type Value: The type name of the recognized barcode + +```javascript +getCodeTypeName() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getconfidence/_index.md b/english/nodejs/barcoderesult/getconfidence/_index.md new file mode 100644 index 000000000..633223f01 --- /dev/null +++ b/english/nodejs/barcoderesult/getconfidence/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getConfidence" +linktitle: "getConfidence" +articleTitle: "getConfidence" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets recognition confidence level of the recognized barcode Value: BarCodeConfidence.Strong does not have fakes or misrecognitions, BarCodeConfidence.Moderat..." +type: docs +weight: 60 +url: /nodejs/barcoderesult/getconfidence/ +--- +## getConfidence() {#getconfidence} + +Gets recognition confidence level of the recognized barcode Value: BarCodeConfidence.Strong does not have fakes or misrecognitions, BarCodeConfidence.Moderate could sometimes have fakes or incorrect codetext because this confidence level for barcodews with weak cheksum or even without it, BarCodeConfidence.NONE always has incorrect codetext and could be fake recognitions + +```javascript +getConfidence() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getextended/_index.md b/english/nodejs/barcoderesult/getextended/_index.md new file mode 100644 index 000000000..c02ac9146 --- /dev/null +++ b/english/nodejs/barcoderesult/getextended/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getExtended" +linktitle: "getExtended" +articleTitle: "getExtended" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets extended parameters of recognized barcode Value: The extended parameters of recognized barcode." +type: docs +weight: 120 +url: /nodejs/barcoderesult/getextended/ +--- +## getExtended() {#getextended} + +Gets extended parameters of recognized barcode Value: The extended parameters of recognized barcode + +```javascript +getExtended() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getreadingquality/_index.md b/english/nodejs/barcoderesult/getreadingquality/_index.md new file mode 100644 index 000000000..64def5f90 --- /dev/null +++ b/english/nodejs/barcoderesult/getreadingquality/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getReadingQuality" +linktitle: "getReadingQuality" +articleTitle: "getReadingQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the reading quality. Works for 1D and postal barcodes. Value: The reading quality percent." +type: docs +weight: 50 +url: /nodejs/barcoderesult/getreadingquality/ +--- +## getReadingQuality() {#getreadingquality} + +Gets the reading quality. Works for 1D and postal barcodes. Value: The reading quality percent + +```javascript +getReadingQuality() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/getregion/_index.md b/english/nodejs/barcoderesult/getregion/_index.md new file mode 100644 index 000000000..86a7d0028 --- /dev/null +++ b/english/nodejs/barcoderesult/getregion/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.getRegion" +linktitle: "getRegion" +articleTitle: "getRegion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the barcode region Value: The region of the recognized barcode." +type: docs +weight: 110 +url: /nodejs/barcoderesult/getregion/ +--- +## getRegion() {#getregion} + +Gets the barcode region Value: The region of the recognized barcode + +```javascript +getRegion() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/hashcode/_index.md b/english/nodejs/barcoderesult/hashcode/_index.md new file mode 100644 index 000000000..de1d524fa --- /dev/null +++ b/english/nodejs/barcoderesult/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeResult.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 140 +url: /nodejs/barcoderesult/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/init/_index.md b/english/nodejs/barcoderesult/init/_index.md new file mode 100644 index 000000000..73fdf1c78 --- /dev/null +++ b/english/nodejs/barcoderesult/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarCodeResult.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/barcoderesult/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcoderesult/tostring/_index.md b/english/nodejs/barcoderesult/tostring/_index.md new file mode 100644 index 000000000..35420f3cc --- /dev/null +++ b/english/nodejs/barcoderesult/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarCodeResult.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this BarCodeResult." +type: docs +weight: 150 +url: /nodejs/barcoderesult/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this BarCodeResult. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this BarCodeResult. + +### See Also + +* class [BarCodeResult](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/_index.md b/english/nodejs/barcodesettings/_index.md new file mode 100644 index 000000000..525ca51bb --- /dev/null +++ b/english/nodejs/barcodesettings/_index.md @@ -0,0 +1,47 @@ +--- +title: "BarcodeSettings Class" +linktitle: "BarcodeSettings" +articleTitle: "BarcodeSettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The main BarCode decoding parameters. Contains parameters which make influence on recognized data." +type: docs +weight: 1390 +url: /nodejs/barcodesettings/ +--- +## BarcodeSettings class + +The main BarCode decoding parameters. Contains parameters which make influence on recognized data. + +```javascript +public class BarcodeSettings : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BarcodeSettings](./barcodesettings/#constructor)(*object*) | BarcodeSettings copy constructor. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAustraliaPost](./getaustraliapost/) | Gets AustraliaPost decoding parameters. | +| [getChecksumValidation](./getchecksumvalidation/) | Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended... | +| [getDetectEncoding](./getdetectencoding/) | The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. | +| [getStripFNC](./getstripfnc/) | Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. | +| [init](./init/) | | +| [setChecksumValidation](./setchecksumvalidation/)(*object*) | Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended... | +| [setDetectEncoding](./setdetectencoding/)(*object*) | The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. | +| [setStripFNC](./setstripfnc/)(*object*) | Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. | + +## Fields + +| Name | Description | +| --- | --- | +| [_australiaPost](./_australiapost/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/barcodesettings/barcodesettings/_index.md b/english/nodejs/barcodesettings/barcodesettings/_index.md new file mode 100644 index 000000000..9de91b309 --- /dev/null +++ b/english/nodejs/barcodesettings/barcodesettings/_index.md @@ -0,0 +1,27 @@ +--- +title: "BarcodeSettings" +linktitle: "BarcodeSettings" +articleTitle: "BarcodeSettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BarcodeSettings class." +type: docs +weight: 10 +url: /nodejs/barcodesettings/barcodesettings/ +--- +## BarcodeSettings(object) {#constructor} + +BarcodeSettings copy constructor + +```javascript +public BarcodeSettings(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/getaustraliapost/_index.md b/english/nodejs/barcodesettings/getaustraliapost/_index.md new file mode 100644 index 000000000..15b98448f --- /dev/null +++ b/english/nodejs/barcodesettings/getaustraliapost/_index.md @@ -0,0 +1,29 @@ +--- +title: "BarcodeSettings.getAustraliaPost" +linktitle: "getAustraliaPost" +articleTitle: "getAustraliaPost" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets AustraliaPost decoding parameters." +type: docs +weight: 100 +url: /nodejs/barcodesettings/getaustraliapost/ +--- +## getAustraliaPost() {#getaustraliapost} + +Gets AustraliaPost decoding parameters + +```javascript +getAustraliaPost() +``` + +### Return Value + +The + +AustraliaPost decoding parameters which make influence on recognized data of AustraliaPost symbology + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/getchecksumvalidation/_index.md b/english/nodejs/barcodesettings/getchecksumvalidation/_index.md new file mode 100644 index 000000000..836bffcd6 --- /dev/null +++ b/english/nodejs/barcodesettings/getchecksumvalidation/_index.md @@ -0,0 +1,61 @@ +--- +title: "BarcodeSettings.getChecksumValidation" +linktitle: "getChecksumValidation" +articleTitle: "getChecksumValidation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where ..." +type: docs +weight: 40 +url: /nodejs/barcodesettings/getchecksumvalidation/ +--- +## getChecksumValidation() {#getchecksumvalidation} + +Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, ItalianPost25, Matrix2of5, MSI, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies + +```javascript +getChecksumValidation() +``` + +### Return Value + +Enable + +checksum validation during recognition for 1D and Postal barcodes. + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.EAN_13, "1234567890128"); +generator.save("c:/test.png", BarcodeImageFormat.PNG); +let reader = new BarCodeReader("c:/test.png", DecodeType.EAN_13); +//checksum disabled +reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.OFF); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +console.log ("BarCode Value: " + result.getExtended().getOneD().getValue()); +console.log ("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +} +``` + +```javascript +let reader = new BarCodeReader("c:/test.png", DecodeType.EAN_13); +//checksum enabled +reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.ON); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.CodeText); +console.log ("BarCode Value: " + result.getExtended().getOneD().getValue()); +console.log ("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/getdetectencoding/_index.md b/english/nodejs/barcodesettings/getdetectencoding/_index.md new file mode 100644 index 000000000..1e16ad49d --- /dev/null +++ b/english/nodejs/barcodesettings/getdetectencoding/_index.md @@ -0,0 +1,57 @@ +--- +title: "BarcodeSettings.getDetectEncoding" +linktitle: "getDetectEncoding" +articleTitle: "getDetectEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true." +type: docs +weight: 80 +url: /nodejs/barcodesettings/getdetectencoding/ +--- +## getDetectEncoding() {#getdetectencoding} + +The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. + +```javascript +getDetectEncoding() +``` + +### Return Value + +The + +flag which force engine to detect codetext encoding for Unicode codesets + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.QR, "Слово")) +im = generator.generateBarcodeImage(BarcodeImageFormat.PNG); +//detects encoding for Unicode codesets is enabled +let reader = new BarCodeReader(im, DecodeType.QR); +reader.getBarcodeSettings().setDetectEncoding(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +//detect encoding is disabled +let reader = new BarCodeReader(im, DecodeType.QR); +reader.getBarcodeSettings().setDetectEncoding(false); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/getstripfnc/_index.md b/english/nodejs/barcodesettings/getstripfnc/_index.md new file mode 100644 index 000000000..23b255043 --- /dev/null +++ b/english/nodejs/barcodesettings/getstripfnc/_index.md @@ -0,0 +1,57 @@ +--- +title: "BarcodeSettings.getStripFNC" +linktitle: "getStripFNC" +articleTitle: "getStripFNC" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false." +type: docs +weight: 60 +url: /nodejs/barcodesettings/getstripfnc/ +--- +## getStripFNC() {#getstripfnc} + +Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. + +```javascript +getStripFNC() +``` + +### Return Value + +Strip + +FNC1, FNC2, FNC3 characters from codetext. Default value is false. + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_CODE_128, "(02)04006664241007(37)1(400)7019590754"); +generator.save("c:/test.png", BarcodeImageFormat.PNG); +let reader = new BarCodeReader("c:/test.png", DecodeType.CODE_128); +//StripFNC disabled +reader.getBarcodeSettings().setStripFNC(false); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("c:/test.png", DecodeType.CODE_128); +//StripFNC enabled +reader.getBarcodeSettings().setStripFNC(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/init/_index.md b/english/nodejs/barcodesettings/init/_index.md new file mode 100644 index 000000000..527ee9e2e --- /dev/null +++ b/english/nodejs/barcodesettings/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BarcodeSettings.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/barcodesettings/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/setchecksumvalidation/_index.md b/english/nodejs/barcodesettings/setchecksumvalidation/_index.md new file mode 100644 index 000000000..1c73784c6 --- /dev/null +++ b/english/nodejs/barcodesettings/setchecksumvalidation/_index.md @@ -0,0 +1,59 @@ +--- +title: "BarcodeSettings.setChecksumValidation" +linktitle: "setChecksumValidation" +articleTitle: "setChecksumValidation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where ..." +type: docs +weight: 50 +url: /nodejs/barcodesettings/setchecksumvalidation/ +--- +## setChecksumValidation(object) {#setchecksumvalidation} + +Enable checksum validation during recognition for 1D and Postal barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar, PatchCode, Pharmacode, DataLogic2of5 Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, ItalianPost25, Matrix2of5, MSI, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies + +```javascript +setChecksumValidation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Enable checksum validation during recognition for 1D and Postal barcodes. | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.EAN_13, "1234567890128"); +generator.save("c:/test.png", BarcodeImageFormat.PNG); +let reader = new BarCodeReader("c:/test.png", DecodeType.EAN_13); +//checksum disabled +reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.OFF); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +console.log ("BarCode Value: " + result.getExtended().getOneD().getValue()); +console.log ("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +} +``` + +```javascript +let reader = new BarCodeReader("c:/test.png", DecodeType.EAN_13); +//checksum enabled +reader.getBarcodeSettings().setChecksumValidation(ChecksumValidation.ON); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.CodeText); +console.log ("BarCode Value: " + result.getExtended().getOneD().getValue()); +console.log ("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/setdetectencoding/_index.md b/english/nodejs/barcodesettings/setdetectencoding/_index.md new file mode 100644 index 000000000..79505e178 --- /dev/null +++ b/english/nodejs/barcodesettings/setdetectencoding/_index.md @@ -0,0 +1,61 @@ +--- +title: "BarcodeSettings.setDetectEncoding" +linktitle: "setDetectEncoding" +articleTitle: "setDetectEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true." +type: docs +weight: 90 +url: /nodejs/barcodesettings/setdetectencoding/ +--- +## setDetectEncoding(object) {#setdetectencoding} + +The flag which force engine to detect codetext encoding for Unicode codesets. Default value is true. + +```javascript +setDetectEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Return Value + +The + +flag which force engine to detect codetext encoding for Unicode codesets + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.QR, "Слово")) +im = generator.generateBarcodeImage(BarcodeImageFormat.PNG); +//detects encoding for Unicode codesets is enabled +let reader = new BarCodeReader(im, DecodeType.QR); +reader.getBarcodeSettings().setDetectEncoding(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +//detect encoding is disabled +let reader = new BarCodeReader(im, DecodeType.QR); +reader.getBarcodeSettings().setDetectEncoding(false); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/barcodesettings/setstripfnc/_index.md b/english/nodejs/barcodesettings/setstripfnc/_index.md new file mode 100644 index 000000000..1124e5577 --- /dev/null +++ b/english/nodejs/barcodesettings/setstripfnc/_index.md @@ -0,0 +1,55 @@ +--- +title: "BarcodeSettings.setStripFNC" +linktitle: "setStripFNC" +articleTitle: "setStripFNC" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false." +type: docs +weight: 70 +url: /nodejs/barcodesettings/setstripfnc/ +--- +## setStripFNC(object) {#setstripfnc} + +Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. + +```javascript +setStripFNC(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false. | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_CODE_128, "(02)04006664241007(37)1(400)7019590754"); +generator.save("c:/test.png", BarcodeImageFormat.PNG); +let reader = new BarCodeReader("c:/test.png", DecodeType.CODE_128); +//StripFNC disabled +reader.getBarcodeSettings().setStripFNC(false); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("c:/test.png", DecodeType.CODE_128); +//StripFNC enabled +reader.getBarcodeSettings().setStripFNC(true); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log ("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* class [BarcodeSettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/_index.md b/english/nodejs/basegenerationparameters/_index.md new file mode 100644 index 000000000..f4b8abd4f --- /dev/null +++ b/english/nodejs/basegenerationparameters/_index.md @@ -0,0 +1,65 @@ +--- +title: "BaseGenerationParameters Class" +linktitle: "BaseGenerationParameters" +articleTitle: "BaseGenerationParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode image generation parameters." +type: docs +weight: 460 +url: /nodejs/basegenerationparameters/ +--- +## BaseGenerationParameters class + +Barcode image generation parameters. + +```javascript +public class BaseGenerationParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BaseGenerationParameters](./basegenerationparameters/#constructor)(*object*) | Initializes a new instance of the BaseGenerationParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAutoSizeMode](./getautosizemode/) | Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE. | +| [getBackColor](./getbackcolor/) | Background color of the barcode image. Default value: #FFFFFF. | +| [getBarcode](./getbarcode/) | Gets the BarcodeParameters that contains all barcode properties. | +| [getBorder](./getborder/) | Gets the BorderParameters that contains all configuration properties for barcode border. | +| [getCaptionAbove](./getcaptionabove/) | Caption Above the BarCode image. See CaptionParameters. | +| [getCaptionBelow](./getcaptionbelow/) | Caption Below the BarCode image. See CaptionParameters. | +| [getImage](./getimage/) | Image parameters. See ImageParameters. | +| [getImageHeight](./getimageheight/) | BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [getImageWidth](./getimagewidth/) | BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [getResolution](./getresolution/) | Gets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | +| [getRotationAngle](./getrotationangle/) | BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image . Default value: 0. | +| [getUseAntiAlias](./getuseantialias/) | Gets a value indicating whether is used anti-aliasing mode to render image. | +| [init](./init/) | | +| [setAutoSizeMode](./setautosizemode/)(*object*) | Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE. | +| [setBackColor](./setbackcolor/)(*object*) | Background color of the barcode image. Default value: #FFFFFF. | +| [setImageHeight](./setimageheight/)(*object*) | BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [setImageWidth](./setimagewidth/)(*object*) | BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. | +| [setResolution](./setresolution/)(*object*) | Sets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. | +| [setRotationAngle](./setrotationangle/)(*object*) | BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. | +| [setUseAntiAlias](./setuseantialias/)(*object*) | Sets a value indicating whether is used anti-aliasing mode to render image. | + +## Fields + +| Name | Description | +| --- | --- | +| [barcodeParameters](./barcodeparameters/) | | +| [borderParameters](./borderparameters/) | | +| [captionAbove](./captionabove/) | | +| [captionBelow](./captionbelow/) | | +| [image](./image/) | | +| [imageHeight](./imageheight/) | | +| [imageWidth](./imagewidth/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/basegenerationparameters/basegenerationparameters/_index.md b/english/nodejs/basegenerationparameters/basegenerationparameters/_index.md new file mode 100644 index 000000000..e5e2e8516 --- /dev/null +++ b/english/nodejs/basegenerationparameters/basegenerationparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters" +linktitle: "BaseGenerationParameters" +articleTitle: "BaseGenerationParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BaseGenerationParameters class." +type: docs +weight: 10 +url: /nodejs/basegenerationparameters/basegenerationparameters/ +--- +## BaseGenerationParameters(object) {#constructor} + +Initializes a new instance of the BaseGenerationParameters class. + +```javascript +public BaseGenerationParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getautosizemode/_index.md b/english/nodejs/basegenerationparameters/getautosizemode/_index.md new file mode 100644 index 000000000..08028a2ab --- /dev/null +++ b/english/nodejs/basegenerationparameters/getautosizemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getAutoSizeMode" +linktitle: "getAutoSizeMode" +articleTitle: "getAutoSizeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE." +type: docs +weight: 210 +url: /nodejs/basegenerationparameters/getautosizemode/ +--- +## getAutoSizeMode() {#getautosizemode} + +Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE. + +```javascript +getAutoSizeMode() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getbackcolor/_index.md b/english/nodejs/basegenerationparameters/getbackcolor/_index.md new file mode 100644 index 000000000..7d0a9c985 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getbackcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getBackColor" +linktitle: "getBackColor" +articleTitle: "getBackColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Background color of the barcode image. Default value: #FFFFFF." +type: docs +weight: 120 +url: /nodejs/basegenerationparameters/getbackcolor/ +--- +## getBackColor() {#getbackcolor} + +Background color of the barcode image. Default value: #FFFFFF + +```javascript +getBackColor() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getbarcode/_index.md b/english/nodejs/basegenerationparameters/getbarcode/_index.md new file mode 100644 index 000000000..484aca7e0 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getbarcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getBarcode" +linktitle: "getBarcode" +articleTitle: "getBarcode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the BarcodeParameters that contains all barcode properties." +type: docs +weight: 270 +url: /nodejs/basegenerationparameters/getbarcode/ +--- +## getBarcode() {#getbarcode} + +Gets the BarcodeParameters that contains all barcode properties. + +```javascript +getBarcode() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getborder/_index.md b/english/nodejs/basegenerationparameters/getborder/_index.md new file mode 100644 index 000000000..3dc245556 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getborder/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getBorder" +linktitle: "getBorder" +articleTitle: "getBorder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the BorderParameters that contains all configuration properties for barcode border." +type: docs +weight: 280 +url: /nodejs/basegenerationparameters/getborder/ +--- +## getBorder() {#getborder} + +Gets the BorderParameters that contains all configuration properties for barcode border. + +```javascript +getBorder() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getcaptionabove/_index.md b/english/nodejs/basegenerationparameters/getcaptionabove/_index.md new file mode 100644 index 000000000..3e2b2a7e3 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getcaptionabove/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getCaptionAbove" +linktitle: "getCaptionAbove" +articleTitle: "getCaptionAbove" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption Above the BarCode image. See CaptionParameters." +type: docs +weight: 190 +url: /nodejs/basegenerationparameters/getcaptionabove/ +--- +## getCaptionAbove() {#getcaptionabove} + +Caption Above the BarCode image. See CaptionParameters. + +```javascript +getCaptionAbove() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getcaptionbelow/_index.md b/english/nodejs/basegenerationparameters/getcaptionbelow/_index.md new file mode 100644 index 000000000..baf4bcc43 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getcaptionbelow/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getCaptionBelow" +linktitle: "getCaptionBelow" +articleTitle: "getCaptionBelow" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption Below the BarCode image. See CaptionParameters." +type: docs +weight: 200 +url: /nodejs/basegenerationparameters/getcaptionbelow/ +--- +## getCaptionBelow() {#getcaptionbelow} + +Caption Below the BarCode image. See CaptionParameters. + +```javascript +getCaptionBelow() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getimage/_index.md b/english/nodejs/basegenerationparameters/getimage/_index.md new file mode 100644 index 000000000..6f25f76e4 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getimage/_index.md @@ -0,0 +1,30 @@ +--- +title: "BaseGenerationParameters.getImage" +linktitle: "getImage" +articleTitle: "getImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Image parameters. See ImageParameters." +type: docs +weight: 160 +url: /nodejs/basegenerationparameters/getimage/ +--- +## getImage() {#getimage} + +Image parameters. See ImageParameters. + +```javascript +getImage() +``` + +### Return Value + +[ImageParameters](../../..//imageparameters/) + +ImageParameters + +### See Also + +* class [ImageParameters](../../imageparameters/) +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getimageheight/_index.md b/english/nodejs/basegenerationparameters/getimageheight/_index.md new file mode 100644 index 000000000..0cd5a5d87 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getimageheight/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getImageHeight" +linktitle: "getImageHeight" +articleTitle: "getImageHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 230 +url: /nodejs/basegenerationparameters/getimageheight/ +--- +## getImageHeight() {#getimageheight} + +BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +getImageHeight() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getimagewidth/_index.md b/english/nodejs/basegenerationparameters/getimagewidth/_index.md new file mode 100644 index 000000000..4205708ad --- /dev/null +++ b/english/nodejs/basegenerationparameters/getimagewidth/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getImageWidth" +linktitle: "getImageWidth" +articleTitle: "getImageWidth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 250 +url: /nodejs/basegenerationparameters/getimagewidth/ +--- +## getImageWidth() {#getimagewidth} + +BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +getImageWidth() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getresolution/_index.md b/english/nodejs/basegenerationparameters/getresolution/_index.md new file mode 100644 index 000000000..a17ab3d80 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getresolution/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getResolution" +linktitle: "getResolution" +articleTitle: "getResolution" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi." +type: docs +weight: 140 +url: /nodejs/basegenerationparameters/getresolution/ +--- +## getResolution() {#getresolution} + +Gets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. + +```javascript +getResolution() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getrotationangle/_index.md b/english/nodejs/basegenerationparameters/getrotationangle/_index.md new file mode 100644 index 000000000..c396997cf --- /dev/null +++ b/english/nodejs/basegenerationparameters/getrotationangle/_index.md @@ -0,0 +1,32 @@ +--- +title: "BaseGenerationParameters.getRotationAngle" +linktitle: "getRotationAngle" +articleTitle: "getRotationAngle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270..." +type: docs +weight: 170 +url: /nodejs/basegenerationparameters/getrotationangle/ +--- +## getRotationAngle() {#getrotationangle} + +BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. + +```javascript +getRotationAngle() +``` + +## Examples + +```javascript +//This sample shows how to create and save a BarCode image. +let generator = new BarcodeGenerator( EncodeTypes.DATA_MATRIX); +generator.getParameters().setRotationAngle(7); +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/getuseantialias/_index.md b/english/nodejs/basegenerationparameters/getuseantialias/_index.md new file mode 100644 index 000000000..e134ee2b0 --- /dev/null +++ b/english/nodejs/basegenerationparameters/getuseantialias/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.getUseAntiAlias" +linktitle: "getUseAntiAlias" +articleTitle: "getUseAntiAlias" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a value indicating whether is used anti-aliasing mode to render image." +type: docs +weight: 100 +url: /nodejs/basegenerationparameters/getuseantialias/ +--- +## getUseAntiAlias() {#getuseantialias} + +Gets a value indicating whether is used anti-aliasing mode to render image + +```javascript +getUseAntiAlias() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/init/_index.md b/english/nodejs/basegenerationparameters/init/_index.md new file mode 100644 index 000000000..317e596bf --- /dev/null +++ b/english/nodejs/basegenerationparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BaseGenerationParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 90 +url: /nodejs/basegenerationparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setautosizemode/_index.md b/english/nodejs/basegenerationparameters/setautosizemode/_index.md new file mode 100644 index 000000000..acd5c576f --- /dev/null +++ b/english/nodejs/basegenerationparameters/setautosizemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setAutoSizeMode" +linktitle: "setAutoSizeMode" +articleTitle: "setAutoSizeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE." +type: docs +weight: 220 +url: /nodejs/basegenerationparameters/setautosizemode/ +--- +## setAutoSizeMode(object) {#setautosizemode} + +Specifies the different types of automatic sizing modes. Default value: AutoSizeMode.NONE. + +```javascript +setAutoSizeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setbackcolor/_index.md b/english/nodejs/basegenerationparameters/setbackcolor/_index.md new file mode 100644 index 000000000..4d8cdf383 --- /dev/null +++ b/english/nodejs/basegenerationparameters/setbackcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setBackColor" +linktitle: "setBackColor" +articleTitle: "setBackColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Background color of the barcode image. Default value: #FFFFFF." +type: docs +weight: 130 +url: /nodejs/basegenerationparameters/setbackcolor/ +--- +## setBackColor(object) {#setbackcolor} + +Background color of the barcode image. Default value: #FFFFFF + +```javascript +setBackColor(colorValue) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| colorValue | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setimageheight/_index.md b/english/nodejs/basegenerationparameters/setimageheight/_index.md new file mode 100644 index 000000000..d75c548bc --- /dev/null +++ b/english/nodejs/basegenerationparameters/setimageheight/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setImageHeight" +linktitle: "setImageHeight" +articleTitle: "setImageHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 240 +url: /nodejs/basegenerationparameters/setimageheight/ +--- +## setImageHeight(object) {#setimageheight} + +BarCode image height when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +setImageHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setimagewidth/_index.md b/english/nodejs/basegenerationparameters/setimagewidth/_index.md new file mode 100644 index 000000000..6d9c0f39c --- /dev/null +++ b/english/nodejs/basegenerationparameters/setimagewidth/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setImageWidth" +linktitle: "setImageWidth" +articleTitle: "setImageWidth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION." +type: docs +weight: 260 +url: /nodejs/basegenerationparameters/setimagewidth/ +--- +## setImageWidth(object) {#setimagewidth} + +BarCode image width when AutoSizeMode property is set to AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. + +```javascript +setImageWidth(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setresolution/_index.md b/english/nodejs/basegenerationparameters/setresolution/_index.md new file mode 100644 index 000000000..72f1fe1e4 --- /dev/null +++ b/english/nodejs/basegenerationparameters/setresolution/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setResolution" +linktitle: "setResolution" +articleTitle: "setResolution" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi." +type: docs +weight: 150 +url: /nodejs/basegenerationparameters/setresolution/ +--- +## setResolution(object) {#setresolution} + +Sets the resolution of the BarCode image. One value for both dimensions. Default value: 96 dpi. + +```javascript +setResolution(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setrotationangle/_index.md b/english/nodejs/basegenerationparameters/setrotationangle/_index.md new file mode 100644 index 000000000..5bc5d89b9 --- /dev/null +++ b/english/nodejs/basegenerationparameters/setrotationangle/_index.md @@ -0,0 +1,36 @@ +--- +title: "BaseGenerationParameters.setRotationAngle" +linktitle: "setRotationAngle" +articleTitle: "setRotationAngle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270..." +type: docs +weight: 180 +url: /nodejs/basegenerationparameters/setrotationangle/ +--- +## setRotationAngle(object) {#setrotationangle} + +BarCode image rotation angle, measured in degree, e.g. RotationAngle = 0 or RotationAngle = 360 means no rotation. If RotationAngle NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image. Default value: 0. + +```javascript +setRotationAngle(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +```javascript +//This sample shows how to create and save a BarCode image. +let generator = new BarcodeGenerator( EncodeTypes.DATA_MATRIX); +generator.getParameters().setRotationAngle(7); +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/basegenerationparameters/setuseantialias/_index.md b/english/nodejs/basegenerationparameters/setuseantialias/_index.md new file mode 100644 index 000000000..2d6b9f167 --- /dev/null +++ b/english/nodejs/basegenerationparameters/setuseantialias/_index.md @@ -0,0 +1,27 @@ +--- +title: "BaseGenerationParameters.setUseAntiAlias" +linktitle: "setUseAntiAlias" +articleTitle: "setUseAntiAlias" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a value indicating whether is used anti-aliasing mode to render image." +type: docs +weight: 110 +url: /nodejs/basegenerationparameters/setuseantialias/ +--- +## setUseAntiAlias(object) {#setuseantialias} + +Sets a value indicating whether is used anti-aliasing mode to render image + +```javascript +setUseAntiAlias(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BaseGenerationParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderdashstyle/_index.md b/english/nodejs/borderdashstyle/_index.md new file mode 100644 index 000000000..70ea86ad9 --- /dev/null +++ b/english/nodejs/borderdashstyle/_index.md @@ -0,0 +1,32 @@ +--- +title: "BorderDashStyle Enum" +linktitle: "BorderDashStyle" +articleTitle: "BorderDashStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the style of dashed border lines." +type: docs +weight: 880 +url: /nodejs/borderdashstyle/ +--- +## BorderDashStyle enumeration + +Specifies the style of dashed border lines. + +```javascript +public enum BorderDashStyle +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| SOLID | `0` | Specifies a solid line. | +| DASH | `1` | Specifies a line consisting of dashes. | +| DOT | `2` | Specifies a line consisting of dots. | +| DASH_DOT | `3` | Specifies a line consisting of a repeating pattern of dash-dot. | +| DASH_DOT_DOT | `4` | Specifies a line consisting of a repeating pattern of dash-dot-dot. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/borderparameters/_index.md b/english/nodejs/borderparameters/_index.md new file mode 100644 index 000000000..f92875ac7 --- /dev/null +++ b/english/nodejs/borderparameters/_index.md @@ -0,0 +1,49 @@ +--- +title: "BorderParameters Class" +linktitle: "BorderParameters" +articleTitle: "BorderParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode image border parameters." +type: docs +weight: 470 +url: /nodejs/borderparameters/ +--- +## BorderParameters class + +Barcode image border parameters + +```javascript +public class BorderParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [BorderParameters](./borderparameters/#constructor)(*object*) | Initializes a new instance of the BorderParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getColor](./getcolor/) | Border color. Default value: #000000. | +| [getDashStyle](./getdashstyle/) | Border dash style. Default value: BorderDashStyle.SOLID. | +| [getVisible](./getvisible/) | Border visibility. If false than parameter Width is always ignored (0). Default value: false. | +| [getWidth](./getwidth/) | Border width. Default value: 0. Ignored if Visible is set to false. | +| [init](./init/) | | +| [setColor](./setcolor/)(*object*) | Border color. Default value: #000000. | +| [setDashStyle](./setdashstyle/)(*object*) | Border dash style. Default value: BorderDashStyle.SOLID. | +| [setVisible](./setvisible/)(*object*) | Border visibility. If false than parameter Width is always ignored (0). Default value: false. | +| [setWidth](./setwidth/)(*object*) | Border width. Default value: 0. Ignored if Visible is set to false. | +| [toString](./tostring/) | Returns a human-readable string representation of this BorderParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [width](./width/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/borderparameters/borderparameters/_index.md b/english/nodejs/borderparameters/borderparameters/_index.md new file mode 100644 index 000000000..8109ede3e --- /dev/null +++ b/english/nodejs/borderparameters/borderparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "BorderParameters" +linktitle: "BorderParameters" +articleTitle: "BorderParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the BorderParameters class." +type: docs +weight: 10 +url: /nodejs/borderparameters/borderparameters/ +--- +## BorderParameters(object) {#constructor} + +Initializes a new instance of the BorderParameters class. + +```javascript +public BorderParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/getcolor/_index.md b/english/nodejs/borderparameters/getcolor/_index.md new file mode 100644 index 000000000..1b1586ec9 --- /dev/null +++ b/english/nodejs/borderparameters/getcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "BorderParameters.getColor" +linktitle: "getColor" +articleTitle: "getColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border color. Default value: #000000." +type: docs +weight: 110 +url: /nodejs/borderparameters/getcolor/ +--- +## getColor() {#getcolor} + +Border color. Default value: #000000 + +```javascript +getColor() +``` + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/getdashstyle/_index.md b/english/nodejs/borderparameters/getdashstyle/_index.md new file mode 100644 index 000000000..6562010c0 --- /dev/null +++ b/english/nodejs/borderparameters/getdashstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: "BorderParameters.getDashStyle" +linktitle: "getDashStyle" +articleTitle: "getDashStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border dash style. Default value: BorderDashStyle.SOLID." +type: docs +weight: 90 +url: /nodejs/borderparameters/getdashstyle/ +--- +## getDashStyle() {#getdashstyle} + +Border dash style. Default value: BorderDashStyle.SOLID. + +```javascript +getDashStyle() +``` + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/getvisible/_index.md b/english/nodejs/borderparameters/getvisible/_index.md new file mode 100644 index 000000000..e0fb0b9e3 --- /dev/null +++ b/english/nodejs/borderparameters/getvisible/_index.md @@ -0,0 +1,23 @@ +--- +title: "BorderParameters.getVisible" +linktitle: "getVisible" +articleTitle: "getVisible" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border visibility. If false than parameter Width is always ignored (0). Default value: false." +type: docs +weight: 40 +url: /nodejs/borderparameters/getvisible/ +--- +## getVisible() {#getvisible} + +Border visibility. If false than parameter Width is always ignored (0). Default value: false. + +```javascript +getVisible() +``` + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/getwidth/_index.md b/english/nodejs/borderparameters/getwidth/_index.md new file mode 100644 index 000000000..f42d0208a --- /dev/null +++ b/english/nodejs/borderparameters/getwidth/_index.md @@ -0,0 +1,23 @@ +--- +title: "BorderParameters.getWidth" +linktitle: "getWidth" +articleTitle: "getWidth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border width. Default value: 0. Ignored if Visible is set to false." +type: docs +weight: 60 +url: /nodejs/borderparameters/getwidth/ +--- +## getWidth() {#getwidth} + +Border width. Default value: 0. Ignored if Visible is set to false. + +```javascript +getWidth() +``` + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/init/_index.md b/english/nodejs/borderparameters/init/_index.md new file mode 100644 index 000000000..990a346da --- /dev/null +++ b/english/nodejs/borderparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "BorderParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/borderparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/setcolor/_index.md b/english/nodejs/borderparameters/setcolor/_index.md new file mode 100644 index 000000000..f7793d72b --- /dev/null +++ b/english/nodejs/borderparameters/setcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "BorderParameters.setColor" +linktitle: "setColor" +articleTitle: "setColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border color. Default value: #000000." +type: docs +weight: 120 +url: /nodejs/borderparameters/setcolor/ +--- +## setColor(object) {#setcolor} + +Border color. Default value: #000000 + +```javascript +setColor(hexValue) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| hexValue | object | | + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/setdashstyle/_index.md b/english/nodejs/borderparameters/setdashstyle/_index.md new file mode 100644 index 000000000..6036164e9 --- /dev/null +++ b/english/nodejs/borderparameters/setdashstyle/_index.md @@ -0,0 +1,27 @@ +--- +title: "BorderParameters.setDashStyle" +linktitle: "setDashStyle" +articleTitle: "setDashStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border dash style. Default value: BorderDashStyle.SOLID." +type: docs +weight: 100 +url: /nodejs/borderparameters/setdashstyle/ +--- +## setDashStyle(object) {#setdashstyle} + +Border dash style. Default value: BorderDashStyle.SOLID. + +```javascript +setDashStyle(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/setvisible/_index.md b/english/nodejs/borderparameters/setvisible/_index.md new file mode 100644 index 000000000..e51ddb5ff --- /dev/null +++ b/english/nodejs/borderparameters/setvisible/_index.md @@ -0,0 +1,27 @@ +--- +title: "BorderParameters.setVisible" +linktitle: "setVisible" +articleTitle: "setVisible" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border visibility. If false than parameter Width is always ignored (0). Default value: false." +type: docs +weight: 50 +url: /nodejs/borderparameters/setvisible/ +--- +## setVisible(object) {#setvisible} + +Border visibility. If false than parameter Width is always ignored (0). Default value: false. + +```javascript +setVisible(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/setwidth/_index.md b/english/nodejs/borderparameters/setwidth/_index.md new file mode 100644 index 000000000..0e4b57227 --- /dev/null +++ b/english/nodejs/borderparameters/setwidth/_index.md @@ -0,0 +1,27 @@ +--- +title: "BorderParameters.setWidth" +linktitle: "setWidth" +articleTitle: "setWidth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border width. Default value: 0. Ignored if Visible is set to false." +type: docs +weight: 70 +url: /nodejs/borderparameters/setwidth/ +--- +## setWidth(object) {#setwidth} + +Border width. Default value: 0. Ignored if Visible is set to false. + +```javascript +setWidth(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/borderparameters/tostring/_index.md b/english/nodejs/borderparameters/tostring/_index.md new file mode 100644 index 000000000..559451c9c --- /dev/null +++ b/english/nodejs/borderparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "BorderParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this BorderParameters." +type: docs +weight: 80 +url: /nodejs/borderparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this BorderParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this BorderParameters. + +### See Also + +* class [BorderParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/_index.md b/english/nodejs/captionparameters/_index.md new file mode 100644 index 000000000..f49afd893 --- /dev/null +++ b/english/nodejs/captionparameters/_index.md @@ -0,0 +1,55 @@ +--- +title: "CaptionParameters Class" +linktitle: "CaptionParameters" +articleTitle: "CaptionParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption parameters." +type: docs +weight: 480 +url: /nodejs/captionparameters/ +--- +## CaptionParameters class + +Caption parameters. + +```javascript +public class CaptionParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CaptionParameters](./captionparameters/#constructor)(*object*) | Initializes a new instance of the CaptionParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAlignment](./getalignment/) | Caption test horizontal alignment. Default TextAlignment.CENTER. | +| [getFont](./getfont/) | Caption font. Default value: Arial 8pt regular. | +| [getNoWrap](./getnowrap/) | Specify word wraps (line breaks) within text. Default value: false. | +| [getPadding](./getpadding/) | Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt. | +| [getText](./gettext/) | Caption text. Default value: empty string. | +| [getTextColor](./gettextcolor/) | Caption text color. Default value BLACK. | +| [getVisible](./getvisible/) | Caption text visibility. Default value: false. | +| [init](./init/) | | +| [setAlignment](./setalignment/)(*object*) | Caption test horizontal alignment. Default TextAlignment.CENTER. | +| [setNoWrap](./setnowrap/)(*object*) | Specify word wraps (line breaks) within text. Default value: false. | +| [setPadding](./setpadding/)(*object*) | Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt. | +| [setText](./settext/)(*object*) | Caption text. Default value: empty string. | +| [setTextColor](./settextcolor/)(*object*) | Caption text color. Default value BLACK. | +| [setVisible](./setvisible/)(*object*) | Caption text visibility. Default value: false. | +| [toString](./tostring/) | Specify word wraps (line breaks) within text. Default value: false. | + +## Fields + +| Name | Description | +| --- | --- | +| [font](./font/) | | +| [padding](./padding/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/captionparameters/captionparameters/_index.md b/english/nodejs/captionparameters/captionparameters/_index.md new file mode 100644 index 000000000..37fe036b0 --- /dev/null +++ b/english/nodejs/captionparameters/captionparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters" +linktitle: "CaptionParameters" +articleTitle: "CaptionParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CaptionParameters class." +type: docs +weight: 10 +url: /nodejs/captionparameters/captionparameters/ +--- +## CaptionParameters(object) {#constructor} + +Initializes a new instance of the CaptionParameters class. + +```javascript +public CaptionParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/getalignment/_index.md b/english/nodejs/captionparameters/getalignment/_index.md new file mode 100644 index 000000000..1cd7ada50 --- /dev/null +++ b/english/nodejs/captionparameters/getalignment/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getAlignment" +linktitle: "getAlignment" +articleTitle: "getAlignment" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption test horizontal alignment. Default TextAlignment.CENTER." +type: docs +weight: 140 +url: /nodejs/captionparameters/getalignment/ +--- +## getAlignment() {#getalignment} + +Caption test horizontal alignment. Default TextAlignment.CENTER. + +```javascript +getAlignment() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/getfont/_index.md b/english/nodejs/captionparameters/getfont/_index.md new file mode 100644 index 000000000..947724536 --- /dev/null +++ b/english/nodejs/captionparameters/getfont/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getFont" +linktitle: "getFont" +articleTitle: "getFont" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption font. Default value: Arial 8pt regular." +type: docs +weight: 70 +url: /nodejs/captionparameters/getfont/ +--- +## getFont() {#getfont} + +Caption font. Default value: Arial 8pt regular. + +```javascript +getFont() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/getnowrap/_index.md b/english/nodejs/captionparameters/getnowrap/_index.md new file mode 100644 index 000000000..004d377fa --- /dev/null +++ b/english/nodejs/captionparameters/getnowrap/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getNoWrap" +linktitle: "getNoWrap" +articleTitle: "getNoWrap" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify word wraps (line breaks) within text. Default value: false." +type: docs +weight: 160 +url: /nodejs/captionparameters/getnowrap/ +--- +## getNoWrap() {#getnowrap} + +Specify word wraps (line breaks) within text. Default value: false. + +```javascript +getNoWrap() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/getpadding/_index.md b/english/nodejs/captionparameters/getpadding/_index.md new file mode 100644 index 000000000..6daafa5f6 --- /dev/null +++ b/english/nodejs/captionparameters/getpadding/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getPadding" +linktitle: "getPadding" +articleTitle: "getPadding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt." +type: docs +weight: 120 +url: /nodejs/captionparameters/getpadding/ +--- +## getPadding() {#getpadding} + +Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt. + +```javascript +getPadding() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/gettext/_index.md b/english/nodejs/captionparameters/gettext/_index.md new file mode 100644 index 000000000..dd6037d21 --- /dev/null +++ b/english/nodejs/captionparameters/gettext/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getText" +linktitle: "getText" +articleTitle: "getText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text. Default value: empty string." +type: docs +weight: 50 +url: /nodejs/captionparameters/gettext/ +--- +## getText() {#gettext} + +Caption text. Default value: empty string. + +```javascript +getText() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/gettextcolor/_index.md b/english/nodejs/captionparameters/gettextcolor/_index.md new file mode 100644 index 000000000..4645c851c --- /dev/null +++ b/english/nodejs/captionparameters/gettextcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getTextColor" +linktitle: "getTextColor" +articleTitle: "getTextColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text color. Default value BLACK." +type: docs +weight: 100 +url: /nodejs/captionparameters/gettextcolor/ +--- +## getTextColor() {#gettextcolor} + +Caption text color. Default value BLACK. + +```javascript +getTextColor() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/getvisible/_index.md b/english/nodejs/captionparameters/getvisible/_index.md new file mode 100644 index 000000000..8b18afbd1 --- /dev/null +++ b/english/nodejs/captionparameters/getvisible/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.getVisible" +linktitle: "getVisible" +articleTitle: "getVisible" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text visibility. Default value: false." +type: docs +weight: 80 +url: /nodejs/captionparameters/getvisible/ +--- +## getVisible() {#getvisible} + +Caption text visibility. Default value: false. + +```javascript +getVisible() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/init/_index.md b/english/nodejs/captionparameters/init/_index.md new file mode 100644 index 000000000..bf0ffa2a5 --- /dev/null +++ b/english/nodejs/captionparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/captionparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/setalignment/_index.md b/english/nodejs/captionparameters/setalignment/_index.md new file mode 100644 index 000000000..e8ca0b2d6 --- /dev/null +++ b/english/nodejs/captionparameters/setalignment/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setAlignment" +linktitle: "setAlignment" +articleTitle: "setAlignment" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption test horizontal alignment. Default TextAlignment.CENTER." +type: docs +weight: 150 +url: /nodejs/captionparameters/setalignment/ +--- +## setAlignment(object) {#setalignment} + +Caption test horizontal alignment. Default TextAlignment.CENTER. + +```javascript +setAlignment(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/setnowrap/_index.md b/english/nodejs/captionparameters/setnowrap/_index.md new file mode 100644 index 000000000..4e69b741e --- /dev/null +++ b/english/nodejs/captionparameters/setnowrap/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setNoWrap" +linktitle: "setNoWrap" +articleTitle: "setNoWrap" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify word wraps (line breaks) within text. Default value: false." +type: docs +weight: 170 +url: /nodejs/captionparameters/setnowrap/ +--- +## setNoWrap(object) {#setnowrap} + +Specify word wraps (line breaks) within text. Default value: false. + +```javascript +setNoWrap(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/setpadding/_index.md b/english/nodejs/captionparameters/setpadding/_index.md new file mode 100644 index 000000000..8faeec779 --- /dev/null +++ b/english/nodejs/captionparameters/setpadding/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setPadding" +linktitle: "setPadding" +articleTitle: "setPadding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt." +type: docs +weight: 130 +url: /nodejs/captionparameters/setpadding/ +--- +## setPadding(object) {#setpadding} + +Captions paddings. Default value for CaptionAbove: 5pt 5pt 0 5pt. Default value for CaptionBelow: 0 5pt 5pt 5pt. + +```javascript +setPadding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/settext/_index.md b/english/nodejs/captionparameters/settext/_index.md new file mode 100644 index 000000000..b6d150cb6 --- /dev/null +++ b/english/nodejs/captionparameters/settext/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setText" +linktitle: "setText" +articleTitle: "setText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text. Default value: empty string." +type: docs +weight: 60 +url: /nodejs/captionparameters/settext/ +--- +## setText(object) {#settext} + +Caption text. Default value: empty string. + +```javascript +setText(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/settextcolor/_index.md b/english/nodejs/captionparameters/settextcolor/_index.md new file mode 100644 index 000000000..20dde50ba --- /dev/null +++ b/english/nodejs/captionparameters/settextcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setTextColor" +linktitle: "setTextColor" +articleTitle: "setTextColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text color. Default value BLACK." +type: docs +weight: 110 +url: /nodejs/captionparameters/settextcolor/ +--- +## setTextColor(object) {#settextcolor} + +Caption text color. Default value BLACK. + +```javascript +setTextColor(hexValue) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| hexValue | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/setvisible/_index.md b/english/nodejs/captionparameters/setvisible/_index.md new file mode 100644 index 000000000..b54135082 --- /dev/null +++ b/english/nodejs/captionparameters/setvisible/_index.md @@ -0,0 +1,27 @@ +--- +title: "CaptionParameters.setVisible" +linktitle: "setVisible" +articleTitle: "setVisible" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Caption text visibility. Default value: false." +type: docs +weight: 90 +url: /nodejs/captionparameters/setvisible/ +--- +## setVisible(object) {#setvisible} + +Caption text visibility. Default value: false. + +```javascript +setVisible(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/captionparameters/tostring/_index.md b/english/nodejs/captionparameters/tostring/_index.md new file mode 100644 index 000000000..40b5ec054 --- /dev/null +++ b/english/nodejs/captionparameters/tostring/_index.md @@ -0,0 +1,23 @@ +--- +title: "CaptionParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify word wraps (line breaks) within text. Default value: false." +type: docs +weight: 180 +url: /nodejs/captionparameters/tostring/ +--- +## toString() {#tostring} + +Specify word wraps (line breaks) within text. Default value: false. + +```javascript +toString() +``` + +### See Also + +* class [CaptionParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/checksumvalidation/_index.md b/english/nodejs/checksumvalidation/_index.md new file mode 100644 index 000000000..80ba5ba8d --- /dev/null +++ b/english/nodejs/checksumvalidation/_index.md @@ -0,0 +1,30 @@ +--- +title: "ChecksumValidation Enum" +linktitle: "ChecksumValidation" +articleTitle: "ChecksumValidation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum on..." +type: docs +weight: 1510 +url: /nodejs/checksumvalidation/ +--- +## ChecksumValidation enumeration + +Enable checksum validation during recognition for 1D barcodes. Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible. Checksum never used: Codabar Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN Checksum always used: Rest symbologies This sample shows influence of ChecksumValidation on recognition quality and results + +```javascript +public enum ChecksumValidation +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| DEFAULT | `0` | If checksum is required by the specification - it will be validated. | +| ON | `1` | Always validate checksum if possible. | +| OFF | `2` | Do not validate checksum | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/cmykcolor/_index.md b/english/nodejs/cmykcolor/_index.md new file mode 100644 index 000000000..8929611d3 --- /dev/null +++ b/english/nodejs/cmykcolor/_index.md @@ -0,0 +1,36 @@ +--- +title: "CMYKColor Class" +linktitle: "CMYKColor" +articleTitle: "CMYKColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for CMYK color. A null instance means CMYK is not used, and default RGB color is in use." +type: docs +weight: 830 +url: /nodejs/cmykcolor/ +--- +## CMYKColor class + +Class for CMYK color. A null instance means CMYK is not used, and default RGB color is in use. + +```javascript +public class CMYKColor +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CMYKColor](./cmykcolor/#constructor)(*object, object, object, object*) | Initializes a new instance of the CMYKColor class from CMYK values. CMYK values are expected in the range 0–100. | + +## Methods + +| Name | Description | +| --- | --- | +| [formatCMYK](./formatcmyk/) | Format this CMYKColor into a string "C_M_Y_K", multiplying each internal component (0–1) by 100 and rounding. | +| [parseCMYK](./parsecmyk/)(*object*) | Parse a CMYK string of the form "C_M_Y_K" into a CMYKColor instance. | +| [toString](./tostring/) | Optional: a human-readable representation. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/cmykcolor/cmykcolor/_index.md b/english/nodejs/cmykcolor/cmykcolor/_index.md new file mode 100644 index 000000000..7e4a48b00 --- /dev/null +++ b/english/nodejs/cmykcolor/cmykcolor/_index.md @@ -0,0 +1,30 @@ +--- +title: "CMYKColor" +linktitle: "CMYKColor" +articleTitle: "CMYKColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CMYKColor class." +type: docs +weight: 10 +url: /nodejs/cmykcolor/cmykcolor/ +--- +## CMYKColor(object, object, object, object) {#constructor} + +Initializes a new instance of the CMYKColor class from CMYK values. CMYK values are expected in the range 0–100. + +```javascript +public CMYKColor(object c, object m, object y, object k) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| c | object | – Cyan value [0, 100] | +| m | object | – Magenta value [0, 100] | +| y | object | – Yellow value [0, 100] | +| k | object | – Black value [0, 100] | + +### See Also + +* class [CMYKColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/cmykcolor/formatcmyk/_index.md b/english/nodejs/cmykcolor/formatcmyk/_index.md new file mode 100644 index 000000000..e2d70e280 --- /dev/null +++ b/english/nodejs/cmykcolor/formatcmyk/_index.md @@ -0,0 +1,29 @@ +--- +title: "CMYKColor.formatCMYK" +linktitle: "formatCMYK" +articleTitle: "formatCMYK" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Format this CMYKColor into a string \"C_M_Y_K\", multiplying each internal component (0–1) by 100 and rounding." +type: docs +weight: 30 +url: /nodejs/cmykcolor/formatcmyk/ +--- +## formatCMYK() {#formatcmyk} + +Format this CMYKColor into a string "C_M_Y_K", multiplying each internal component (0–1) by 100 and rounding. + +```javascript +formatCMYK() +``` + +### Return Value + +string + +e.g. "30_100_0_30" + +### See Also + +* class [CMYKColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/cmykcolor/parsecmyk/_index.md b/english/nodejs/cmykcolor/parsecmyk/_index.md new file mode 100644 index 000000000..91d80695e --- /dev/null +++ b/english/nodejs/cmykcolor/parsecmyk/_index.md @@ -0,0 +1,38 @@ +--- +title: "CMYKColor.parseCMYK" +linktitle: "parseCMYK" +articleTitle: "parseCMYK" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Parse a CMYK string of the form \"C_M_Y_K\" into a CMYKColor instance." +type: docs +weight: 20 +url: /nodejs/cmykcolor/parsecmyk/ +--- +## parseCMYK(object) {#parsecmyk} + +Parse a CMYK string of the form "C_M_Y_K" into a CMYKColor instance. + +```javascript +static parseCMYK(str) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| str | object | – a string like "30_100_0_30" | + +### Return Value + +[CMYKColor](../../..//cmykcolor/) + +### Exceptions + +| exception | condition | +| --- | --- | +| Error | if the format is invalid or values are not numeric | + +### See Also + +* class [CMYKColor](../../cmykcolor/) +* class [CMYKColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/cmykcolor/tostring/_index.md b/english/nodejs/cmykcolor/tostring/_index.md new file mode 100644 index 000000000..a3b78a557 --- /dev/null +++ b/english/nodejs/cmykcolor/tostring/_index.md @@ -0,0 +1,23 @@ +--- +title: "CMYKColor.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional: a human-readable representation." +type: docs +weight: 40 +url: /nodejs/cmykcolor/tostring/ +--- +## toString() {#tostring} + +Optional: a human-readable representation. + +```javascript +toString() +``` + +### See Also + +* class [CMYKColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarchecksummode/_index.md b/english/nodejs/codabarchecksummode/_index.md new file mode 100644 index 000000000..3de849fca --- /dev/null +++ b/english/nodejs/codabarchecksummode/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarChecksumMode Enum" +linktitle: "CodabarChecksumMode" +articleTitle: "CodabarChecksumMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the checksum algorithm for Codabar." +type: docs +weight: 980 +url: /nodejs/codabarchecksummode/ +--- +## CodabarChecksumMode enumeration + +Specifies the checksum algorithm for Codabar + +```javascript +public enum CodabarChecksumMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| MOD_10 | `0` | Specifies Mod 10 algorithm for Codabar. | +| MOD_16 | `1` | Specifies Mod 16 algorithm for Codabar (recomended AIIM). | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codabarextendedparameters/_index.md b/english/nodejs/codabarextendedparameters/_index.md new file mode 100644 index 000000000..d8bae22a5 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/_index.md @@ -0,0 +1,45 @@ +--- +title: "CodabarExtendedParameters Class" +linktitle: "CodabarExtendedParameters" +articleTitle: "CodabarExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a Codabar additional information of recognized barcode." +type: docs +weight: 1460 +url: /nodejs/codabarextendedparameters/ +--- +## CodabarExtendedParameters class + +Stores a Codabar additional information of recognized barcode + +```javascript +public class CodabarExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CodabarExtendedParameters](./codabarextendedparameters/#constructor)(*object*) | Initializes a new instance of the CodabarExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified CodabarExtendedParameters value. | +| [getCodabarStartSymbol](./getcodabarstartsymbol/) | Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A. | +| [getCodabarStopSymbol](./getcodabarstopsymbol/) | Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A. | +| [getStartSymbol](./getstartsymbol/) | Gets a Codabar start symbol. Default value: CodabarSymbol.A. | +| [getStopSymbol](./getstopsymbol/) | Gets a Codabar stop symbol. Default value: CodabarSymbol.A. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [setCodabarStartSymbol](./setcodabarstartsymbol/)(*object*) | Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A. | +| [setCodabarStopSymbol](./setcodabarstopsymbol/)(*object*) | Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A. | +| [setStartSymbol](./setstartsymbol/)(*object*) | Sets a Codabar start symbol. Default value: CodabarSymbol.A. | +| [setStopSymbol](./setstopsymbol/)(*object*) | Sets a Codabar stop symbol. Default value: CodabarSymbol.A. | +| [toString](./tostring/) | Returns a human-readable string representation of this CodabarExtendedParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codabarextendedparameters/codabarextendedparameters/_index.md b/english/nodejs/codabarextendedparameters/codabarextendedparameters/_index.md new file mode 100644 index 000000000..52049ec39 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/codabarextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarExtendedParameters" +linktitle: "CodabarExtendedParameters" +articleTitle: "CodabarExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CodabarExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/codabarextendedparameters/codabarextendedparameters/ +--- +## CodabarExtendedParameters(object) {#constructor} + +Initializes a new instance of the CodabarExtendedParameters class. + +```javascript +public CodabarExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/equals/_index.md b/english/nodejs/codabarextendedparameters/equals/_index.md new file mode 100644 index 000000000..a28b2ad87 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "CodabarExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified CodabarExtendedParameters value." +type: docs +weight: 110 +url: /nodejs/codabarextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `CodabarExtendedParameters` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/getcodabarstartsymbol/_index.md b/english/nodejs/codabarextendedparameters/getcodabarstartsymbol/_index.md new file mode 100644 index 000000000..771cbab01 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/getcodabarstartsymbol/_index.md @@ -0,0 +1,25 @@ +--- +title: "CodabarExtendedParameters.getCodabarStartSymbol" +linktitle: "getCodabarStartSymbol" +articleTitle: "getCodabarStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A." +type: docs +weight: 50 +url: /nodejs/codabarextendedparameters/getcodabarstartsymbol/ +--- +## getCodabarStartSymbol() {#getcodabarstartsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStartSymbol(). + +Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A + +```javascript +getCodabarStartSymbol() +``` + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/getcodabarstopsymbol/_index.md b/english/nodejs/codabarextendedparameters/getcodabarstopsymbol/_index.md new file mode 100644 index 000000000..db8a13230 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/getcodabarstopsymbol/_index.md @@ -0,0 +1,25 @@ +--- +title: "CodabarExtendedParameters.getCodabarStopSymbol" +linktitle: "getCodabarStopSymbol" +articleTitle: "getCodabarStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A." +type: docs +weight: 90 +url: /nodejs/codabarextendedparameters/getcodabarstopsymbol/ +--- +## getCodabarStopSymbol() {#getcodabarstopsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStopSymbol(). + +Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A + +```javascript +getCodabarStopSymbol() +``` + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/getstartsymbol/_index.md b/english/nodejs/codabarextendedparameters/getstartsymbol/_index.md new file mode 100644 index 000000000..17f146234 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/getstartsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.getStartSymbol" +linktitle: "getStartSymbol" +articleTitle: "getStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Codabar start symbol. Default value: CodabarSymbol.A." +type: docs +weight: 30 +url: /nodejs/codabarextendedparameters/getstartsymbol/ +--- +## getStartSymbol() {#getstartsymbol} + +Gets a Codabar start symbol. Default value: CodabarSymbol.A + +```javascript +getStartSymbol() +``` + +### Return Value + +a + +Codabar start symbol. + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/getstopsymbol/_index.md b/english/nodejs/codabarextendedparameters/getstopsymbol/_index.md new file mode 100644 index 000000000..9463a46cb --- /dev/null +++ b/english/nodejs/codabarextendedparameters/getstopsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.getStopSymbol" +linktitle: "getStopSymbol" +articleTitle: "getStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Codabar stop symbol. Default value: CodabarSymbol.A." +type: docs +weight: 70 +url: /nodejs/codabarextendedparameters/getstopsymbol/ +--- +## getStopSymbol() {#getstopsymbol} + +Gets a Codabar stop symbol. Default value: CodabarSymbol.A + +```javascript +getStopSymbol() +``` + +### Return Value + +a + +Codabar stop symbol. + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/hashcode/_index.md b/english/nodejs/codabarextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..f90117e63 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 120 +url: /nodejs/codabarextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/init/_index.md b/english/nodejs/codabarextendedparameters/init/_index.md new file mode 100644 index 000000000..eba7a701a --- /dev/null +++ b/english/nodejs/codabarextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodabarExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/codabarextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/setcodabarstartsymbol/_index.md b/english/nodejs/codabarextendedparameters/setcodabarstartsymbol/_index.md new file mode 100644 index 000000000..9a8bd2bd5 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/setcodabarstartsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.setCodabarStartSymbol" +linktitle: "setCodabarStartSymbol" +articleTitle: "setCodabarStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A." +type: docs +weight: 60 +url: /nodejs/codabarextendedparameters/setcodabarstartsymbol/ +--- +## setCodabarStartSymbol(object) {#setcodabarstartsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStartSymbol(). + +Gets or sets a Codabar start symbol. Default value: CodabarSymbol.A + +```javascript +setCodabarStartSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/setcodabarstopsymbol/_index.md b/english/nodejs/codabarextendedparameters/setcodabarstopsymbol/_index.md new file mode 100644 index 000000000..6a8a0d183 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/setcodabarstopsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.setCodabarStopSymbol" +linktitle: "setCodabarStopSymbol" +articleTitle: "setCodabarStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A." +type: docs +weight: 100 +url: /nodejs/codabarextendedparameters/setcodabarstopsymbol/ +--- +## setCodabarStopSymbol(object) {#setcodabarstopsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStopSymbol(). + +Gets or sets a Codabar stop symbol. Default value: CodabarSymbol.A + +```javascript +setCodabarStopSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/setstartsymbol/_index.md b/english/nodejs/codabarextendedparameters/setstartsymbol/_index.md new file mode 100644 index 000000000..ffa2444e9 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/setstartsymbol/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarExtendedParameters.setStartSymbol" +linktitle: "setStartSymbol" +articleTitle: "setStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Codabar start symbol. Default value: CodabarSymbol.A." +type: docs +weight: 40 +url: /nodejs/codabarextendedparameters/setstartsymbol/ +--- +## setStartSymbol(object) {#setstartsymbol} + +Sets a Codabar start symbol. Default value: CodabarSymbol.A + +```javascript +setStartSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Codabar start symbol. | + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/setstopsymbol/_index.md b/english/nodejs/codabarextendedparameters/setstopsymbol/_index.md new file mode 100644 index 000000000..bf1d46f64 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/setstopsymbol/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarExtendedParameters.setStopSymbol" +linktitle: "setStopSymbol" +articleTitle: "setStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Codabar stop symbol. Default value: CodabarSymbol.A." +type: docs +weight: 80 +url: /nodejs/codabarextendedparameters/setstopsymbol/ +--- +## setStopSymbol(object) {#setstopsymbol} + +Sets a Codabar stop symbol. Default value: CodabarSymbol.A + +```javascript +setStopSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Codabar stop symbol. | + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarextendedparameters/tostring/_index.md b/english/nodejs/codabarextendedparameters/tostring/_index.md new file mode 100644 index 000000000..5d25f17a6 --- /dev/null +++ b/english/nodejs/codabarextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this CodabarExtendedParameters." +type: docs +weight: 130 +url: /nodejs/codabarextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `CodabarExtendedParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [CodabarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/_index.md b/english/nodejs/codabarparameters/_index.md new file mode 100644 index 000000000..42273af00 --- /dev/null +++ b/english/nodejs/codabarparameters/_index.md @@ -0,0 +1,47 @@ +--- +title: "CodabarParameters Class" +linktitle: "CodabarParameters" +articleTitle: "CodabarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codabar parameters." +type: docs +weight: 670 +url: /nodejs/codabarparameters/ +--- +## CodabarParameters class + +Codabar parameters. + +```javascript +public class CodabarParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CodabarParameters](./codabarparameters/#constructor)(*object*) | Initializes a new instance of the CodabarParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getChecksumMode](./getchecksummode/) | Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode(#getChecksumMode/#setChecksumMode). | +| [getCodabarChecksumMode](./getcodabarchecksummode/) | Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode. | +| [getCodabarStartSymbol](./getcodabarstartsymbol/) | Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [getCodabarStopSymbol](./getcodabarstopsymbol/) | Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [getStartSymbol](./getstartsymbol/) | Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [getStopSymbol](./getstopsymbol/) | Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [init](./init/) | | +| [setChecksumMode](./setchecksummode/)(*object*) | Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See ChecksumMode(#getChecksumMode/#setChecksumMode). | +| [setCodabarChecksumMode](./setcodabarchecksummode/)(*object*) | Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode. | +| [setCodabarStartSymbol](./setcodabarstartsymbol/)(*object*) | Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [setCodabarStopSymbol](./setcodabarstopsymbol/)(*object*) | Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [setStartSymbol](./setstartsymbol/)(*object*) | Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [setStopSymbol](./setstopsymbol/)(*object*) | Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A. | +| [toString](./tostring/) | Returns a human-readable string representation of this CodabarParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codabarparameters/codabarparameters/_index.md b/english/nodejs/codabarparameters/codabarparameters/_index.md new file mode 100644 index 000000000..a6785cd4d --- /dev/null +++ b/english/nodejs/codabarparameters/codabarparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarParameters" +linktitle: "CodabarParameters" +articleTitle: "CodabarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CodabarParameters class." +type: docs +weight: 10 +url: /nodejs/codabarparameters/codabarparameters/ +--- +## CodabarParameters(object) {#constructor} + +Initializes a new instance of the CodabarParameters class. + +```javascript +public CodabarParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getchecksummode/_index.md b/english/nodejs/codabarparameters/getchecksummode/_index.md new file mode 100644 index 000000000..df0e7bb68 --- /dev/null +++ b/english/nodejs/codabarparameters/getchecksummode/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarParameters.getChecksumMode" +linktitle: "getChecksumMode" +articleTitle: "getChecksumMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to pro..." +type: docs +weight: 30 +url: /nodejs/codabarparameters/getchecksummode/ +--- +## getChecksumMode() {#getchecksummode} + +Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See `ChecksumMode`([#getChecksumMode](..//)/[#setChecksumMode](..//)). + +```javascript +getChecksumMode() +``` + +### Return Value + +the + +checksum algorithm for Codabar barcodes. + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getcodabarchecksummode/_index.md b/english/nodejs/codabarparameters/getcodabarchecksummode/_index.md new file mode 100644 index 000000000..d5b52553f --- /dev/null +++ b/english/nodejs/codabarparameters/getcodabarchecksummode/_index.md @@ -0,0 +1,25 @@ +--- +title: "CodabarParameters.getCodabarChecksumMode" +linktitle: "getCodabarChecksumMode" +articleTitle: "getCodabarChecksumMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to pr..." +type: docs +weight: 50 +url: /nodejs/codabarparameters/getcodabarchecksummode/ +--- +## getCodabarChecksumMode() {#getcodabarchecksummode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getChecksumMode(). + +Get the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode. + +```javascript +getCodabarChecksumMode() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getcodabarstartsymbol/_index.md b/english/nodejs/codabarparameters/getcodabarstartsymbol/_index.md new file mode 100644 index 000000000..cfd801818 --- /dev/null +++ b/english/nodejs/codabarparameters/getcodabarstartsymbol/_index.md @@ -0,0 +1,25 @@ +--- +title: "CodabarParameters.getCodabarStartSymbol" +linktitle: "getCodabarStartSymbol" +articleTitle: "getCodabarStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 90 +url: /nodejs/codabarparameters/getcodabarstartsymbol/ +--- +## getCodabarStartSymbol() {#getcodabarstartsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStartSymbol(). + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +getCodabarStartSymbol() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getcodabarstopsymbol/_index.md b/english/nodejs/codabarparameters/getcodabarstopsymbol/_index.md new file mode 100644 index 000000000..c0201f72e --- /dev/null +++ b/english/nodejs/codabarparameters/getcodabarstopsymbol/_index.md @@ -0,0 +1,25 @@ +--- +title: "CodabarParameters.getCodabarStopSymbol" +linktitle: "getCodabarStopSymbol" +articleTitle: "getCodabarStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 130 +url: /nodejs/codabarparameters/getcodabarstopsymbol/ +--- +## getCodabarStopSymbol() {#getcodabarstopsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStopSymbol(). + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +getCodabarStopSymbol() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getstartsymbol/_index.md b/english/nodejs/codabarparameters/getstartsymbol/_index.md new file mode 100644 index 000000000..2660890f5 --- /dev/null +++ b/english/nodejs/codabarparameters/getstartsymbol/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodabarParameters.getStartSymbol" +linktitle: "getStartSymbol" +articleTitle: "getStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 70 +url: /nodejs/codabarparameters/getstartsymbol/ +--- +## getStartSymbol() {#getstartsymbol} + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +getStartSymbol() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/getstopsymbol/_index.md b/english/nodejs/codabarparameters/getstopsymbol/_index.md new file mode 100644 index 000000000..17f79cf8e --- /dev/null +++ b/english/nodejs/codabarparameters/getstopsymbol/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodabarParameters.getStopSymbol" +linktitle: "getStopSymbol" +articleTitle: "getStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 110 +url: /nodejs/codabarparameters/getstopsymbol/ +--- +## getStopSymbol() {#getstopsymbol} + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +getStopSymbol() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/init/_index.md b/english/nodejs/codabarparameters/init/_index.md new file mode 100644 index 000000000..0903b330f --- /dev/null +++ b/english/nodejs/codabarparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodabarParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/codabarparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setchecksummode/_index.md b/english/nodejs/codabarparameters/setchecksummode/_index.md new file mode 100644 index 000000000..97a60763e --- /dev/null +++ b/english/nodejs/codabarparameters/setchecksummode/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarParameters.setChecksumMode" +linktitle: "setChecksumMode" +articleTitle: "setChecksumMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to pro..." +type: docs +weight: 40 +url: /nodejs/codabarparameters/setchecksummode/ +--- +## setChecksumMode(object) {#setchecksummode} + +Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.Mod16. To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum. See `ChecksumMode`([#getChecksumMode](..//)/[#setChecksumMode](..//)). + +```javascript +setChecksumMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | the checksum algorithm for Codabar barcodes. | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setcodabarchecksummode/_index.md b/english/nodejs/codabarparameters/setcodabarchecksummode/_index.md new file mode 100644 index 000000000..4cf2fce22 --- /dev/null +++ b/english/nodejs/codabarparameters/setcodabarchecksummode/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarParameters.setCodabarChecksumMode" +linktitle: "setCodabarChecksumMode" +articleTitle: "setCodabarChecksumMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to pr..." +type: docs +weight: 60 +url: /nodejs/codabarparameters/setcodabarchecksummode/ +--- +## setCodabarChecksumMode(object) {#setcodabarchecksummode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setChecksumMode(). + +Set the checksum algorithm for Codabar barcodes. Default value: CodabarChecksumMode.MOD_16. To enable checksum calculation set value EnableChecksum.YES to property EnableChecksum. See CodabarChecksumMode. + +```javascript +setCodabarChecksumMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setcodabarstartsymbol/_index.md b/english/nodejs/codabarparameters/setcodabarstartsymbol/_index.md new file mode 100644 index 000000000..329dd954f --- /dev/null +++ b/english/nodejs/codabarparameters/setcodabarstartsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarParameters.setCodabarStartSymbol" +linktitle: "setCodabarStartSymbol" +articleTitle: "setCodabarStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 100 +url: /nodejs/codabarparameters/setcodabarstartsymbol/ +--- +## setCodabarStartSymbol(object) {#setcodabarstartsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStartSymbol(). + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +setCodabarStartSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setcodabarstopsymbol/_index.md b/english/nodejs/codabarparameters/setcodabarstopsymbol/_index.md new file mode 100644 index 000000000..1d551c0be --- /dev/null +++ b/english/nodejs/codabarparameters/setcodabarstopsymbol/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarParameters.setCodabarStopSymbol" +linktitle: "setCodabarStopSymbol" +articleTitle: "setCodabarStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 140 +url: /nodejs/codabarparameters/setcodabarstopsymbol/ +--- +## setCodabarStopSymbol(object) {#setcodabarstopsymbol} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStopSymbol(). + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +setCodabarStopSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setstartsymbol/_index.md b/english/nodejs/codabarparameters/setstartsymbol/_index.md new file mode 100644 index 000000000..c0fe31aa6 --- /dev/null +++ b/english/nodejs/codabarparameters/setstartsymbol/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarParameters.setStartSymbol" +linktitle: "setStartSymbol" +articleTitle: "setStartSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 80 +url: /nodejs/codabarparameters/setstartsymbol/ +--- +## setStartSymbol(object) {#setstartsymbol} + +Start symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +setStartSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/setstopsymbol/_index.md b/english/nodejs/codabarparameters/setstopsymbol/_index.md new file mode 100644 index 000000000..b7b0940c6 --- /dev/null +++ b/english/nodejs/codabarparameters/setstopsymbol/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodabarParameters.setStopSymbol" +linktitle: "setStopSymbol" +articleTitle: "setStopSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A." +type: docs +weight: 120 +url: /nodejs/codabarparameters/setstopsymbol/ +--- +## setStopSymbol(object) {#setstopsymbol} + +Stop symbol (character) of Codabar symbology. Default value: CodabarSymbol.A + +```javascript +setStopSymbol(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarparameters/tostring/_index.md b/english/nodejs/codabarparameters/tostring/_index.md new file mode 100644 index 000000000..74ba11364 --- /dev/null +++ b/english/nodejs/codabarparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodabarParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this CodabarParameters." +type: docs +weight: 150 +url: /nodejs/codabarparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this CodabarParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this CodabarParameters. + +### See Also + +* class [CodabarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codabarsymbol/_index.md b/english/nodejs/codabarsymbol/_index.md new file mode 100644 index 000000000..c00d232f9 --- /dev/null +++ b/english/nodejs/codabarsymbol/_index.md @@ -0,0 +1,31 @@ +--- +title: "CodabarSymbol Enum" +linktitle: "CodabarSymbol" +articleTitle: "CodabarSymbol" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the start or stop symbol of the Codabar barcode specification." +type: docs +weight: 860 +url: /nodejs/codabarsymbol/ +--- +## CodabarSymbol enumeration + +Specifies the start or stop symbol of the Codabar barcode specification. + +```javascript +public enum CodabarSymbol +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| A | `65` | Specifies character A as the start or stop symbol of the Codabar barcode specification. | +| B | `66` | Specifies character B as the start or stop symbol of the Codabar barcode specification. | +| C | `67` | Specifies character C as the start or stop symbol of the Codabar barcode specification. | +| D | `68` | Specifies character D as the start or stop symbol of the Codabar barcode specification. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codablockparameters/_index.md b/english/nodejs/codablockparameters/_index.md new file mode 100644 index 000000000..f71deeda7 --- /dev/null +++ b/english/nodejs/codablockparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "CodablockParameters Class" +linktitle: "CodablockParameters" +articleTitle: "CodablockParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codablock parameters." +type: docs +weight: 540 +url: /nodejs/codablockparameters/ +--- +## CodablockParameters class + +Codablock parameters. + +```javascript +public class CodablockParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CodablockParameters](./codablockparameters/#constructor)(*object*) | Initializes a new instance of the CodablockParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getColumns](./getcolumns/) | Columns count. | +| [getRows](./getrows/) | Rows count. | +| [init](./init/) | | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setColumns](./setcolumns/)(*object*) | Columns count. | +| [setRows](./setrows/)(*object*) | Rows count. | +| [toString](./tostring/) | Returns a human-readable string representation of this CodablockParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codablockparameters/codablockparameters/_index.md b/english/nodejs/codablockparameters/codablockparameters/_index.md new file mode 100644 index 000000000..0f705517a --- /dev/null +++ b/english/nodejs/codablockparameters/codablockparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodablockParameters" +linktitle: "CodablockParameters" +articleTitle: "CodablockParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CodablockParameters class." +type: docs +weight: 10 +url: /nodejs/codablockparameters/codablockparameters/ +--- +## CodablockParameters(object) {#constructor} + +Initializes a new instance of the CodablockParameters class. + +```javascript +public CodablockParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/getaspectratio/_index.md b/english/nodejs/codablockparameters/getaspectratio/_index.md new file mode 100644 index 000000000..b0a0dd93e --- /dev/null +++ b/english/nodejs/codablockparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodablockParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 70 +url: /nodejs/codablockparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/getcolumns/_index.md b/english/nodejs/codablockparameters/getcolumns/_index.md new file mode 100644 index 000000000..87880b761 --- /dev/null +++ b/english/nodejs/codablockparameters/getcolumns/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodablockParameters.getColumns" +linktitle: "getColumns" +articleTitle: "getColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 30 +url: /nodejs/codablockparameters/getcolumns/ +--- +## getColumns() {#getcolumns} + +Columns count. + +```javascript +getColumns() +``` + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/getrows/_index.md b/english/nodejs/codablockparameters/getrows/_index.md new file mode 100644 index 000000000..1845e9ebd --- /dev/null +++ b/english/nodejs/codablockparameters/getrows/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodablockParameters.getRows" +linktitle: "getRows" +articleTitle: "getRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 50 +url: /nodejs/codablockparameters/getrows/ +--- +## getRows() {#getrows} + +Rows count. + +```javascript +getRows() +``` + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/init/_index.md b/english/nodejs/codablockparameters/init/_index.md new file mode 100644 index 000000000..a7d2aac43 --- /dev/null +++ b/english/nodejs/codablockparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodablockParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/codablockparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/setaspectratio/_index.md b/english/nodejs/codablockparameters/setaspectratio/_index.md new file mode 100644 index 000000000..3610cbccf --- /dev/null +++ b/english/nodejs/codablockparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodablockParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 80 +url: /nodejs/codablockparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/setcolumns/_index.md b/english/nodejs/codablockparameters/setcolumns/_index.md new file mode 100644 index 000000000..e3e2e070f --- /dev/null +++ b/english/nodejs/codablockparameters/setcolumns/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodablockParameters.setColumns" +linktitle: "setColumns" +articleTitle: "setColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 40 +url: /nodejs/codablockparameters/setcolumns/ +--- +## setColumns(object) {#setcolumns} + +Columns count. + +```javascript +setColumns(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/setrows/_index.md b/english/nodejs/codablockparameters/setrows/_index.md new file mode 100644 index 000000000..0b48744bc --- /dev/null +++ b/english/nodejs/codablockparameters/setrows/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodablockParameters.setRows" +linktitle: "setRows" +articleTitle: "setRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 60 +url: /nodejs/codablockparameters/setrows/ +--- +## setRows(object) {#setrows} + +Rows count. + +```javascript +setRows(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codablockparameters/tostring/_index.md b/english/nodejs/codablockparameters/tostring/_index.md new file mode 100644 index 000000000..f7f67a32a --- /dev/null +++ b/english/nodejs/codablockparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodablockParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this CodablockParameters." +type: docs +weight: 90 +url: /nodejs/codablockparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this CodablockParameters. + +```javascript +toString() +``` + +### Return Value + +string + +value that represents this CodablockParameters. + +### See Also + +* class [CodablockParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128dataportion/_index.md b/english/nodejs/code128dataportion/_index.md new file mode 100644 index 000000000..11f0c8eb8 --- /dev/null +++ b/english/nodejs/code128dataportion/_index.md @@ -0,0 +1,37 @@ +--- +title: "Code128DataPortion Class" +linktitle: "Code128DataPortion" +articleTitle: "Code128DataPortion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains the data of subtype for Code128 type barcode." +type: docs +weight: 1360 +url: /nodejs/code128dataportion/ +--- +## Code128DataPortion class + +Contains the data of subtype for Code128 type barcode + +```javascript +public class Code128DataPortion : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Code128DataPortion](./code128dataportion/#constructor)(*object*) | Creates a new instance of the Code128DataPortion class with start code symbol and decoded codetext. | + +## Methods + +| Name | Description | +| --- | --- | +| [getCode128SubType](./getcode128subtype/) | Gets the type of Code128 subset. | +| [getData](./getdata/) | Gets the part of code text related to subtype. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this Code128DataPortion. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code128dataportion/code128dataportion/_index.md b/english/nodejs/code128dataportion/code128dataportion/_index.md new file mode 100644 index 000000000..69bf7113d --- /dev/null +++ b/english/nodejs/code128dataportion/code128dataportion/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code128DataPortion" +linktitle: "Code128DataPortion" +articleTitle: "Code128DataPortion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Code128DataPortion class." +type: docs +weight: 10 +url: /nodejs/code128dataportion/code128dataportion/ +--- +## Code128DataPortion(object) {#constructor} + +Creates a new instance of the `Code128DataPortion` class with start code symbol and decoded codetext. + +```javascript +public Code128DataPortion(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [Code128DataPortion](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128dataportion/getcode128subtype/_index.md b/english/nodejs/code128dataportion/getcode128subtype/_index.md new file mode 100644 index 000000000..3bb7e4686 --- /dev/null +++ b/english/nodejs/code128dataportion/getcode128subtype/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128DataPortion.getCode128SubType" +linktitle: "getCode128SubType" +articleTitle: "getCode128SubType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the type of Code128 subset." +type: docs +weight: 40 +url: /nodejs/code128dataportion/getcode128subtype/ +--- +## getCode128SubType() {#getcode128subtype} + +Gets the type of Code128 subset + +```javascript +getCode128SubType() +``` + +### Return Value + +The + +type of Code128 subset + +### See Also + +* class [Code128DataPortion](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128dataportion/getdata/_index.md b/english/nodejs/code128dataportion/getdata/_index.md new file mode 100644 index 000000000..334180e6c --- /dev/null +++ b/english/nodejs/code128dataportion/getdata/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128DataPortion.getData" +linktitle: "getData" +articleTitle: "getData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the part of code text related to subtype." +type: docs +weight: 30 +url: /nodejs/code128dataportion/getdata/ +--- +## getData() {#getdata} + +Gets the part of code text related to subtype. + +```javascript +getData() +``` + +### Return Value + +The + +part of code text related to subtype + +### See Also + +* class [Code128DataPortion](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128dataportion/init/_index.md b/english/nodejs/code128dataportion/init/_index.md new file mode 100644 index 000000000..86e16dbc4 --- /dev/null +++ b/english/nodejs/code128dataportion/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code128DataPortion.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/code128dataportion/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Code128DataPortion](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128dataportion/tostring/_index.md b/english/nodejs/code128dataportion/tostring/_index.md new file mode 100644 index 000000000..5603dd772 --- /dev/null +++ b/english/nodejs/code128dataportion/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128DataPortion.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Code128DataPortion." +type: docs +weight: 50 +url: /nodejs/code128dataportion/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `Code128DataPortion`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [Code128DataPortion](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128encodemode/_index.md b/english/nodejs/code128encodemode/_index.md new file mode 100644 index 000000000..16206472a --- /dev/null +++ b/english/nodejs/code128encodemode/_index.md @@ -0,0 +1,34 @@ +--- +title: "Code128EncodeMode Enum" +linktitle: "Code128EncodeMode" +articleTitle: "Code128EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for Code128 barcodes. Code 128 specification." +type: docs +weight: 1170 +url: /nodejs/code128encodemode/ +--- +## Code128EncodeMode enumeration + +Encoding mode for Code128 barcodes. `Code 128` specification. + +```javascript +public enum Code128EncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Encode codetext in classic ISO 15417 mode. The mode should be used in all ordinary cases. | +| CODE_A | `1` | Encode codetext only in 128A codeset. | +| CODE_B | `2` | Encode codetext only in 128B codeset. | +| CODE_C | `4` | Encode codetext only in 128C codeset. | +| CODE_AB | `3` | Encode codetext only in 128A and 128B codesets. | +| CODE_AC | `5` | Encode codetext only in 128A and 128C codesets. | +| CODE_BC | `6` | Encode codetext only in 128B and 128C codesets. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code128extendedparameters/_index.md b/english/nodejs/code128extendedparameters/_index.md new file mode 100644 index 000000000..16a4476f6 --- /dev/null +++ b/english/nodejs/code128extendedparameters/_index.md @@ -0,0 +1,63 @@ +--- +title: "Code128ExtendedParameters Class" +linktitle: "Code128ExtendedParameters" +articleTitle: "Code128ExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of Code128 recognized barcode Represents the recognized barcode's region and barcode angle." +type: docs +weight: 1310 +url: /nodejs/code128extendedparameters/ +--- +## Code128ExtendedParameters class + +Stores special data of Code128 recognized barcode Represents the recognized barcode's region and barcode angle + +```javascript +public class Code128ExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Code128ExtendedParameters](./code128extendedparameters/#constructor)(*object*) | Initializes a new instance of the Code128ExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [convertCode128DataPortions](./convertcode128dataportions/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value. | +| [getCode128DataPortions](./getcode128dataportions/) | Gets Code128DataPortion array of recognized Code128 barcode Value of the Code128DataPortion. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isEmpty](./isempty/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this Code128ExtendedParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [code128DataPortions](./code128dataportions/) | | + +## Examples + +```javascript +//This sample shows how to get code128 raw values +let generator = new BarcodeGenerator(EncodeTypes.Code128, "12345"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, DecodeType.CODE_128); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("Code128 Data Portions: " + result.getExtended().getCode128()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code128extendedparameters/code128extendedparameters/_index.md b/english/nodejs/code128extendedparameters/code128extendedparameters/_index.md new file mode 100644 index 000000000..ffd7f5949 --- /dev/null +++ b/english/nodejs/code128extendedparameters/code128extendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code128ExtendedParameters" +linktitle: "Code128ExtendedParameters" +articleTitle: "Code128ExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Code128ExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/code128extendedparameters/code128extendedparameters/ +--- +## Code128ExtendedParameters(object) {#constructor} + +Initializes a new instance of the Code128ExtendedParameters class. + +```javascript +public Code128ExtendedParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/convertcode128dataportions/_index.md b/english/nodejs/code128extendedparameters/convertcode128dataportions/_index.md new file mode 100644 index 000000000..2864f086f --- /dev/null +++ b/english/nodejs/code128extendedparameters/convertcode128dataportions/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code128ExtendedParameters.convertCode128DataPortions" +linktitle: "convertCode128DataPortions" +articleTitle: "convertCode128DataPortions" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/code128extendedparameters/convertcode128dataportions/ +--- +## convertCode128DataPortions(object) {#convertcode128dataportions} + + + +```javascript +static convertCode128DataPortions(javaCode128DataPortions) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaCode128DataPortions | object | | + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/equals/_index.md b/english/nodejs/code128extendedparameters/equals/_index.md new file mode 100644 index 000000000..e430e8e22 --- /dev/null +++ b/english/nodejs/code128extendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "Code128ExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value." +type: docs +weight: 70 +url: /nodejs/code128extendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified Code128ExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/getcode128dataportions/_index.md b/english/nodejs/code128extendedparameters/getcode128dataportions/_index.md new file mode 100644 index 000000000..c3d35d3ca --- /dev/null +++ b/english/nodejs/code128extendedparameters/getcode128dataportions/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code128ExtendedParameters.getCode128DataPortions" +linktitle: "getCode128DataPortions" +articleTitle: "getCode128DataPortions" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Code128DataPortion array of recognized Code128 barcode Value of the Code128DataPortion." +type: docs +weight: 50 +url: /nodejs/code128extendedparameters/getcode128dataportions/ +--- +## getCode128DataPortions() {#getcode128dataportions} + +Gets Code128DataPortion array of recognized Code128 barcode Value of the Code128DataPortion. + +```javascript +getCode128DataPortions() +``` + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/hashcode/_index.md b/english/nodejs/code128extendedparameters/hashcode/_index.md new file mode 100644 index 000000000..0aecde15f --- /dev/null +++ b/english/nodejs/code128extendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128ExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 80 +url: /nodejs/code128extendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/init/_index.md b/english/nodejs/code128extendedparameters/init/_index.md new file mode 100644 index 000000000..a1933590a --- /dev/null +++ b/english/nodejs/code128extendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code128ExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/code128extendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/isempty/_index.md b/english/nodejs/code128extendedparameters/isempty/_index.md new file mode 100644 index 000000000..0e35039d3 --- /dev/null +++ b/english/nodejs/code128extendedparameters/isempty/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code128ExtendedParameters.isEmpty" +linktitle: "isEmpty" +articleTitle: "isEmpty" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/code128extendedparameters/isempty/ +--- +## isEmpty() {#isempty} + + + +```javascript +isEmpty() +``` + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128extendedparameters/tostring/_index.md b/english/nodejs/code128extendedparameters/tostring/_index.md new file mode 100644 index 000000000..2724c6e76 --- /dev/null +++ b/english/nodejs/code128extendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128ExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Code128ExtendedParameters." +type: docs +weight: 90 +url: /nodejs/code128extendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Code128ExtendedParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Code128ExtendedParameters. + +### See Also + +* class [Code128ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/_index.md b/english/nodejs/code128parameters/_index.md new file mode 100644 index 000000000..4b0a516fd --- /dev/null +++ b/english/nodejs/code128parameters/_index.md @@ -0,0 +1,39 @@ +--- +title: "Code128Parameters Class" +linktitle: "Code128Parameters" +articleTitle: "Code128Parameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Code128 parameters." +type: docs +weight: 750 +url: /nodejs/code128parameters/ +--- +## Code128Parameters class + +Code128 parameters. + +```javascript +public class Code128Parameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Code128Parameters](./code128parameters/#constructor)(*object*) | Initializes a new instance of the Code128Parameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getCode128EncodeMode](./getcode128encodemode/) | Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto. | +| [getEncodeMode](./getencodemode/) | Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto. | +| [init](./init/) | | +| [setCode128EncodeMode](./setcode128encodemode/)(*object*) | Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto. | +| [setEncodeMode](./setencodemode/)(*object*) | Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto. | +| [toString](./tostring/) | Returns a human-readable string representation of this PatchCodeParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code128parameters/code128parameters/_index.md b/english/nodejs/code128parameters/code128parameters/_index.md new file mode 100644 index 000000000..0f45a9cbe --- /dev/null +++ b/english/nodejs/code128parameters/code128parameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code128Parameters" +linktitle: "Code128Parameters" +articleTitle: "Code128Parameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Code128Parameters class." +type: docs +weight: 10 +url: /nodejs/code128parameters/code128parameters/ +--- +## Code128Parameters(object) {#constructor} + +Initializes a new instance of the Code128Parameters class. + +```javascript +public Code128Parameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/getcode128encodemode/_index.md b/english/nodejs/code128parameters/getcode128encodemode/_index.md new file mode 100644 index 000000000..c2c3a357b --- /dev/null +++ b/english/nodejs/code128parameters/getcode128encodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "Code128Parameters.getCode128EncodeMode" +linktitle: "getCode128EncodeMode" +articleTitle: "getCode128EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto." +type: docs +weight: 50 +url: /nodejs/code128parameters/getcode128encodemode/ +--- +## getCode128EncodeMode() {#getcode128encodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +```javascript +getCode128EncodeMode() +``` + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/getencodemode/_index.md b/english/nodejs/code128parameters/getencodemode/_index.md new file mode 100644 index 000000000..d9fd4c506 --- /dev/null +++ b/english/nodejs/code128parameters/getencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128Parameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto." +type: docs +weight: 30 +url: /nodejs/code128parameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Gets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +```javascript +getEncodeMode() +``` + +### Return Value + +a + +Code128 encode mode. + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/init/_index.md b/english/nodejs/code128parameters/init/_index.md new file mode 100644 index 000000000..8f7a63c42 --- /dev/null +++ b/english/nodejs/code128parameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code128Parameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/code128parameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/setcode128encodemode/_index.md b/english/nodejs/code128parameters/setcode128encodemode/_index.md new file mode 100644 index 000000000..3ae9a4ed1 --- /dev/null +++ b/english/nodejs/code128parameters/setcode128encodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128Parameters.setCode128EncodeMode" +linktitle: "setCode128EncodeMode" +articleTitle: "setCode128EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto." +type: docs +weight: 60 +url: /nodejs/code128parameters/setcode128encodemode/ +--- +## setCode128EncodeMode(object) {#setcode128encodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +```javascript +setCode128EncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/setencodemode/_index.md b/english/nodejs/code128parameters/setencodemode/_index.md new file mode 100644 index 000000000..333966f13 --- /dev/null +++ b/english/nodejs/code128parameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code128Parameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto." +type: docs +weight: 40 +url: /nodejs/code128parameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Sets a Code128 encode mode. Default value: Code128EncodeMode.Auto + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Code128 encode mode. | + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128parameters/tostring/_index.md b/english/nodejs/code128parameters/tostring/_index.md new file mode 100644 index 000000000..f00b229e3 --- /dev/null +++ b/english/nodejs/code128parameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code128Parameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this PatchCodeParameters." +type: docs +weight: 70 +url: /nodejs/code128parameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this PatchCodeParameters. + +```javascript +toString() +``` + +### Return Value + +string + +A string that represents this PatchCodeParameters. + +### See Also + +* class [Code128Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code128subtype/_index.md b/english/nodejs/code128subtype/_index.md new file mode 100644 index 000000000..e69ccaf79 --- /dev/null +++ b/english/nodejs/code128subtype/_index.md @@ -0,0 +1,30 @@ +--- +title: "Code128SubType Enum" +linktitle: "Code128SubType" +articleTitle: "Code128SubType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains types of Code128 subset." +type: docs +weight: 1480 +url: /nodejs/code128subtype/ +--- +## Code128SubType enumeration + +Contains types of Code128 subset + +```javascript +public enum Code128SubType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| CODE_SET_A | `1` | ASCII characters 00 to 95 (0–9, A–Z and control codes), special characters, and FNC 1–4 /// | +| CODE_SET_B | `2` | ASCII characters 32 to 127 (0–9, A–Z, a–z), special characters, and FNC 1–4 /// | +| CODE_SET_C | `3` | 00–99 (encodes two digits with a single code point) and FNC1 /// | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code16kparameters/_index.md b/english/nodejs/code16kparameters/_index.md new file mode 100644 index 000000000..009fc5b1b --- /dev/null +++ b/english/nodejs/code16kparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "Code16KParameters Class" +linktitle: "Code16KParameters" +articleTitle: "Code16KParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Code16K parameters." +type: docs +weight: 580 +url: /nodejs/code16kparameters/ +--- +## Code16KParameters class + +Code16K parameters. + +```javascript +public class Code16KParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Code16KParameters](./code16kparameters/#constructor)(*object*) | Initializes a new instance of the Code16KParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getQuietZoneLeftCoef](./getquietzoneleftcoef/) | Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px. | +| [getQuietZoneRightCoef](./getquietzonerightcoef/) | Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px. | +| [init](./init/) | | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setQuietZoneLeftCoef](./setquietzoneleftcoef/)(*object*) | Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px. | +| [setQuietZoneRightCoef](./setquietzonerightcoef/)(*object*) | Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px. | +| [toString](./tostring/) | Returns a human-readable string representation of this Code16KParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/code16kparameters/code16kparameters/_index.md b/english/nodejs/code16kparameters/code16kparameters/_index.md new file mode 100644 index 000000000..39a175a6c --- /dev/null +++ b/english/nodejs/code16kparameters/code16kparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code16KParameters" +linktitle: "Code16KParameters" +articleTitle: "Code16KParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Code16KParameters class." +type: docs +weight: 10 +url: /nodejs/code16kparameters/code16kparameters/ +--- +## Code16KParameters(object) {#constructor} + +Initializes a new instance of the Code16KParameters class. + +```javascript +public Code16KParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/getaspectratio/_index.md b/english/nodejs/code16kparameters/getaspectratio/_index.md new file mode 100644 index 000000000..d70e90bc7 --- /dev/null +++ b/english/nodejs/code16kparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code16KParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 30 +url: /nodejs/code16kparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/getquietzoneleftcoef/_index.md b/english/nodejs/code16kparameters/getquietzoneleftcoef/_index.md new file mode 100644 index 000000000..23e6a5381 --- /dev/null +++ b/english/nodejs/code16kparameters/getquietzoneleftcoef/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code16KParameters.getQuietZoneLeftCoef" +linktitle: "getQuietZoneLeftCoef" +articleTitle: "getQuietZoneLeftCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px." +type: docs +weight: 50 +url: /nodejs/code16kparameters/getquietzoneleftcoef/ +--- +## getQuietZoneLeftCoef() {#getquietzoneleftcoef} + +Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px. + +```javascript +getQuietZoneLeftCoef() +``` + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/getquietzonerightcoef/_index.md b/english/nodejs/code16kparameters/getquietzonerightcoef/_index.md new file mode 100644 index 000000000..64baebc85 --- /dev/null +++ b/english/nodejs/code16kparameters/getquietzonerightcoef/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code16KParameters.getQuietZoneRightCoef" +linktitle: "getQuietZoneRightCoef" +articleTitle: "getQuietZoneRightCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px." +type: docs +weight: 70 +url: /nodejs/code16kparameters/getquietzonerightcoef/ +--- +## getQuietZoneRightCoef() {#getquietzonerightcoef} + +Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px. + +```javascript +getQuietZoneRightCoef() +``` + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/init/_index.md b/english/nodejs/code16kparameters/init/_index.md new file mode 100644 index 000000000..0789bfd78 --- /dev/null +++ b/english/nodejs/code16kparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Code16KParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/code16kparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/setaspectratio/_index.md b/english/nodejs/code16kparameters/setaspectratio/_index.md new file mode 100644 index 000000000..2a14dd6b7 --- /dev/null +++ b/english/nodejs/code16kparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code16KParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 40 +url: /nodejs/code16kparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/setquietzoneleftcoef/_index.md b/english/nodejs/code16kparameters/setquietzoneleftcoef/_index.md new file mode 100644 index 000000000..5756e7406 --- /dev/null +++ b/english/nodejs/code16kparameters/setquietzoneleftcoef/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code16KParameters.setQuietZoneLeftCoef" +linktitle: "setQuietZoneLeftCoef" +articleTitle: "setQuietZoneLeftCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px." +type: docs +weight: 60 +url: /nodejs/code16kparameters/setquietzoneleftcoef/ +--- +## setQuietZoneLeftCoef(object) {#setquietzoneleftcoef} + +Size of the left quiet zone in xDimension. Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px. + +```javascript +setQuietZoneLeftCoef(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/setquietzonerightcoef/_index.md b/english/nodejs/code16kparameters/setquietzonerightcoef/_index.md new file mode 100644 index 000000000..eba3e76ef --- /dev/null +++ b/english/nodejs/code16kparameters/setquietzonerightcoef/_index.md @@ -0,0 +1,27 @@ +--- +title: "Code16KParameters.setQuietZoneRightCoef" +linktitle: "setQuietZoneRightCoef" +articleTitle: "setQuietZoneRightCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px." +type: docs +weight: 80 +url: /nodejs/code16kparameters/setquietzonerightcoef/ +--- +## setQuietZoneRightCoef(object) {#setquietzonerightcoef} + +Size of the right quiet zone in xDimension. Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px. + +```javascript +setQuietZoneRightCoef(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/code16kparameters/tostring/_index.md b/english/nodejs/code16kparameters/tostring/_index.md new file mode 100644 index 000000000..5b805ca60 --- /dev/null +++ b/english/nodejs/code16kparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Code16KParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Code16KParameters." +type: docs +weight: 90 +url: /nodejs/code16kparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Code16KParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Code16KParameters. + +### See Also + +* class [Code16KParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codelocation/_index.md b/english/nodejs/codelocation/_index.md new file mode 100644 index 000000000..3ca972a1f --- /dev/null +++ b/english/nodejs/codelocation/_index.md @@ -0,0 +1,30 @@ +--- +title: "CodeLocation Enum" +linktitle: "CodeLocation" +articleTitle: "CodeLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codetext location." +type: docs +weight: 990 +url: /nodejs/codelocation/ +--- +## CodeLocation enumeration + +Codetext location + +```javascript +public enum CodeLocation +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| BELOW | `0` | Codetext below barcode. | +| ABOVE | `1` | Codetext above barcode. | +| NONE | `2` | Hide codetext. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codetextparameters/_index.md b/english/nodejs/codetextparameters/_index.md new file mode 100644 index 000000000..a7ee36a5f --- /dev/null +++ b/english/nodejs/codetextparameters/_index.md @@ -0,0 +1,58 @@ +--- +title: "CodetextParameters Class" +linktitle: "CodetextParameters" +articleTitle: "CodetextParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Codetext parameters." +type: docs +weight: 510 +url: /nodejs/codetextparameters/ +--- +## CodetextParameters class + +Codetext parameters. + +```javascript +public class CodetextParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CodetextParameters](./codetextparameters/#constructor)(*object*) | Initializes a new instance of the CodetextParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAlignment](./getalignment/) | Gets the alignment of the code text. Default value: TextAlignment.CENTER. | +| [getColor](./getcolor/) | Specify the displaying CodeText's Color. Default value BLACK. | +| [getFont](./getfont/) | Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO. | +| [getFontMode](./getfontmode/) | Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO especially in AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. Default value: FontMode.AUTO. | +| [getLocation](./getlocation/) | Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.BELOW. | +| [getNoWrap](./getnowrap/) | Specify word wraps (line breaks) within text. Default value: false. | +| [getSpace](./getspace/) | Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. | +| [getTwoDDisplayText](./gettwoddisplaytext/) | Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode. | +| [init](./init/) | | +| [setAlignment](./setalignment/)(*object*) | Sets the alignment of the code text. Default value: TextAlignment.CENTER. | +| [setColor](./setcolor/)(*object*) | Specify the displaying CodeText's Color. Default value BLACK. | +| [setFont](./setfont/)(*object*) | Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO. | +| [setFontMode](./setfontmode/)(*object*) | Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO especially in AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. Default value: FontMode.AUTO. | +| [setLocation](./setlocation/)(*object*) | Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.NONE. | +| [setNoWrap](./setnowrap/)(*object*) | Specify word wraps (line breaks) within text. Default value: false. | +| [setSpace](./setspace/)(*object*) | Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. | +| [setTwoDDisplayText](./settwoddisplaytext/)(*object*) | Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode. | +| [toString](./tostring/) | Returns a human-readable string representation of this CodetextParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [font](./font/) | | +| [space](./space/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/codetextparameters/codetextparameters/_index.md b/english/nodejs/codetextparameters/codetextparameters/_index.md new file mode 100644 index 000000000..5a4b6dfb9 --- /dev/null +++ b/english/nodejs/codetextparameters/codetextparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters" +linktitle: "CodetextParameters" +articleTitle: "CodetextParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CodetextParameters class." +type: docs +weight: 10 +url: /nodejs/codetextparameters/codetextparameters/ +--- +## CodetextParameters(object) {#constructor} + +Initializes a new instance of the CodetextParameters class. + +```javascript +public CodetextParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getalignment/_index.md b/english/nodejs/codetextparameters/getalignment/_index.md new file mode 100644 index 000000000..7225cdfac --- /dev/null +++ b/english/nodejs/codetextparameters/getalignment/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getAlignment" +linktitle: "getAlignment" +articleTitle: "getAlignment" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the alignment of the code text. Default value: TextAlignment.CENTER." +type: docs +weight: 130 +url: /nodejs/codetextparameters/getalignment/ +--- +## getAlignment() {#getalignment} + +Gets the alignment of the code text. Default value: TextAlignment.CENTER. + +```javascript +getAlignment() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getcolor/_index.md b/english/nodejs/codetextparameters/getcolor/_index.md new file mode 100644 index 000000000..465ea7c6d --- /dev/null +++ b/english/nodejs/codetextparameters/getcolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getColor" +linktitle: "getColor" +articleTitle: "getColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText's Color. Default value BLACK." +type: docs +weight: 150 +url: /nodejs/codetextparameters/getcolor/ +--- +## getColor() {#getcolor} + +Specify the displaying CodeText's Color. Default value BLACK. + +```javascript +getColor() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getfont/_index.md b/english/nodejs/codetextparameters/getfont/_index.md new file mode 100644 index 000000000..0622e8711 --- /dev/null +++ b/english/nodejs/codetextparameters/getfont/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getFont" +linktitle: "getFont" +articleTitle: "getFont" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO." +type: docs +weight: 90 +url: /nodejs/codetextparameters/getfont/ +--- +## getFont() {#getfont} + +Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO. + +```javascript +getFont() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getfontmode/_index.md b/english/nodejs/codetextparameters/getfontmode/_index.md new file mode 100644 index 000000000..4a86364d6 --- /dev/null +++ b/english/nodejs/codetextparameters/getfontmode/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getFontMode" +linktitle: "getFontMode" +articleTitle: "getFontMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO es..." +type: docs +weight: 70 +url: /nodejs/codetextparameters/getfontmode/ +--- +## getFontMode() {#getfontmode} + +Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO especially in AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. Default value: FontMode.AUTO. + +```javascript +getFontMode() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getlocation/_index.md b/english/nodejs/codetextparameters/getlocation/_index.md new file mode 100644 index 000000000..5c01bb717 --- /dev/null +++ b/english/nodejs/codetextparameters/getlocation/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getLocation" +linktitle: "getLocation" +articleTitle: "getLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.BELOW." +type: docs +weight: 170 +url: /nodejs/codetextparameters/getlocation/ +--- +## getLocation() {#getlocation} + +Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.BELOW. + +```javascript +getLocation() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getnowrap/_index.md b/english/nodejs/codetextparameters/getnowrap/_index.md new file mode 100644 index 000000000..0ef013bac --- /dev/null +++ b/english/nodejs/codetextparameters/getnowrap/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getNoWrap" +linktitle: "getNoWrap" +articleTitle: "getNoWrap" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify word wraps (line breaks) within text. Default value: false." +type: docs +weight: 190 +url: /nodejs/codetextparameters/getnowrap/ +--- +## getNoWrap() {#getnowrap} + +Specify word wraps (line breaks) within text. Default value: false. + +```javascript +getNoWrap() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/getspace/_index.md b/english/nodejs/codetextparameters/getspace/_index.md new file mode 100644 index 000000000..6735c7fd5 --- /dev/null +++ b/english/nodejs/codetextparameters/getspace/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getSpace" +linktitle: "getSpace" +articleTitle: "getSpace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon." +type: docs +weight: 110 +url: /nodejs/codetextparameters/getspace/ +--- +## getSpace() {#getspace} + +Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. + +```javascript +getSpace() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/gettwoddisplaytext/_index.md b/english/nodejs/codetextparameters/gettwoddisplaytext/_index.md new file mode 100644 index 000000000..3e987d2fd --- /dev/null +++ b/english/nodejs/codetextparameters/gettwoddisplaytext/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.getTwoDDisplayText" +linktitle: "getTwoDDisplayText" +articleTitle: "getTwoDDisplayText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode." +type: docs +weight: 50 +url: /nodejs/codetextparameters/gettwoddisplaytext/ +--- +## getTwoDDisplayText() {#gettwoddisplaytext} + +Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode + +```javascript +getTwoDDisplayText() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/init/_index.md b/english/nodejs/codetextparameters/init/_index.md new file mode 100644 index 000000000..305bce4a9 --- /dev/null +++ b/english/nodejs/codetextparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CodetextParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/codetextparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setalignment/_index.md b/english/nodejs/codetextparameters/setalignment/_index.md new file mode 100644 index 000000000..ab22d5f66 --- /dev/null +++ b/english/nodejs/codetextparameters/setalignment/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setAlignment" +linktitle: "setAlignment" +articleTitle: "setAlignment" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the alignment of the code text. Default value: TextAlignment.CENTER." +type: docs +weight: 140 +url: /nodejs/codetextparameters/setalignment/ +--- +## setAlignment(object) {#setalignment} + +Sets the alignment of the code text. Default value: TextAlignment.CENTER. + +```javascript +setAlignment(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setcolor/_index.md b/english/nodejs/codetextparameters/setcolor/_index.md new file mode 100644 index 000000000..45ff771a3 --- /dev/null +++ b/english/nodejs/codetextparameters/setcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setColor" +linktitle: "setColor" +articleTitle: "setColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText's Color. Default value BLACK." +type: docs +weight: 160 +url: /nodejs/codetextparameters/setcolor/ +--- +## setColor(object) {#setcolor} + +Specify the displaying CodeText's Color. Default value BLACK. + +```javascript +setColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setfont/_index.md b/english/nodejs/codetextparameters/setfont/_index.md new file mode 100644 index 000000000..870ec8405 --- /dev/null +++ b/english/nodejs/codetextparameters/setfont/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setFont" +linktitle: "setFont" +articleTitle: "setFont" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO." +type: docs +weight: 100 +url: /nodejs/codetextparameters/setfont/ +--- +## setFont(object) {#setfont} + +Specify the displaying CodeText's font. Default value: Arial 5pt regular. Ignored if FontMode is set to FontMode.AUTO. + +```javascript +setFont(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setfontmode/_index.md b/english/nodejs/codetextparameters/setfontmode/_index.md new file mode 100644 index 000000000..c957f7258 --- /dev/null +++ b/english/nodejs/codetextparameters/setfontmode/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setFontMode" +linktitle: "setFontMode" +articleTitle: "setFontMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO es..." +type: docs +weight: 80 +url: /nodejs/codetextparameters/setfontmode/ +--- +## setFontMode(object) {#setfontmode} + +Specify FontMode. If FontMode is set to Auto, font size will be calculated automatically based on xDimension value. It is recommended to use FontMode.AUTO especially in AutoSizeMode.NEAREST or AutoSizeMode.INTERPOLATION. Default value: FontMode.AUTO. + +```javascript +setFontMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setlocation/_index.md b/english/nodejs/codetextparameters/setlocation/_index.md new file mode 100644 index 000000000..b09384534 --- /dev/null +++ b/english/nodejs/codetextparameters/setlocation/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setLocation" +linktitle: "setLocation" +articleTitle: "setLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.NONE." +type: docs +weight: 180 +url: /nodejs/codetextparameters/setlocation/ +--- +## setLocation(object) {#setlocation} + +Specify the displaying CodeText Location, set to CodeLocation.NONE to hide CodeText. Default value: CodeLocation.NONE. + +```javascript +setLocation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setnowrap/_index.md b/english/nodejs/codetextparameters/setnowrap/_index.md new file mode 100644 index 000000000..c8c2df2e6 --- /dev/null +++ b/english/nodejs/codetextparameters/setnowrap/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setNoWrap" +linktitle: "setNoWrap" +articleTitle: "setNoWrap" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify word wraps (line breaks) within text. Default value: false." +type: docs +weight: 200 +url: /nodejs/codetextparameters/setnowrap/ +--- +## setNoWrap(object) {#setnowrap} + +Specify word wraps (line breaks) within text. Default value: false. + +```javascript +setNoWrap(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/setspace/_index.md b/english/nodejs/codetextparameters/setspace/_index.md new file mode 100644 index 000000000..b4ee2bc1f --- /dev/null +++ b/english/nodejs/codetextparameters/setspace/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setSpace" +linktitle: "setSpace" +articleTitle: "setSpace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon." +type: docs +weight: 120 +url: /nodejs/codetextparameters/setspace/ +--- +## setSpace(object) {#setspace} + +Space between the CodeText and the BarCode in Unit value. Default value: 2pt. Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon. + +```javascript +setSpace(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/settwoddisplaytext/_index.md b/english/nodejs/codetextparameters/settwoddisplaytext/_index.md new file mode 100644 index 000000000..aa8c3edd9 --- /dev/null +++ b/english/nodejs/codetextparameters/settwoddisplaytext/_index.md @@ -0,0 +1,27 @@ +--- +title: "CodetextParameters.setTwoDDisplayText" +linktitle: "setTwoDDisplayText" +articleTitle: "setTwoDDisplayText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode." +type: docs +weight: 60 +url: /nodejs/codetextparameters/settwoddisplaytext/ +--- +## setTwoDDisplayText(object) {#settwoddisplaytext} + +Text that will be displayed instead of codetext in 2D barcodes. Used for: Aztec, Pdf417, DataMatrix, QR, MaxiCode, DotCode + +```javascript +setTwoDDisplayText(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/codetextparameters/tostring/_index.md b/english/nodejs/codetextparameters/tostring/_index.md new file mode 100644 index 000000000..63a809446 --- /dev/null +++ b/english/nodejs/codetextparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "CodetextParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this CodetextParameters." +type: docs +weight: 210 +url: /nodejs/codetextparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this CodetextParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this CodetextParameters. + +### See Also + +* class [CodetextParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexbackgroundmode/_index.md b/english/nodejs/complexbackgroundmode/_index.md new file mode 100644 index 000000000..29ac5419f --- /dev/null +++ b/english/nodejs/complexbackgroundmode/_index.md @@ -0,0 +1,30 @@ +--- +title: "ComplexBackgroundMode Enum" +linktitle: "ComplexBackgroundMode" +articleTitle: "ComplexBackgroundMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of color barcodes on color images." +type: docs +weight: 1550 +url: /nodejs/complexbackgroundmode/ +--- +## ComplexBackgroundMode enumeration + +Mode which enables or disables additional recognition of color barcodes on color images. + +```javascript +public enum ComplexBackgroundMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | At this time the same as Disabled. Disables additional recognition of color barcodes on color images. | +| DISABLED | `1` | Disables additional recognition of color barcodes on color images. | +| ENABLED | `2` | Enables additional recognition of color barcodes on color images. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/complexbarcodegenerator/_index.md b/english/nodejs/complexbarcodegenerator/_index.md new file mode 100644 index 000000000..1636ba325 --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/_index.md @@ -0,0 +1,70 @@ +--- +title: "ComplexBarcodeGenerator Class" +linktitle: "ComplexBarcodeGenerator" +articleTitle: "ComplexBarcodeGenerator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ComplexBarcodeGenerator for backend complex barcode (e.g. SwissQR) images generation." +type: docs +weight: 30 +url: /nodejs/complexbarcodegenerator/ +--- +## ComplexBarcodeGenerator class + +ComplexBarcodeGenerator for backend complex barcode (e.g. SwissQR) images generation. + +```javascript +public class ComplexBarcodeGenerator : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [ComplexBarcodeGenerator](./complexbarcodegenerator/#constructor)(*object*) | Creates an instance of ComplexBarcodeGenerator. | + +## Methods + +| Name | Description | +| --- | --- | +| [generateBarCodeImage](./generatebarcodeimage/)(*object*) | Generates complex barcode image under current settings. | +| [getParameters](./getparameters/) | Generation parameters. | +| [init](./init/) | | +| [save](./save/)(*object, object*) | Generates and saves complex barcode image under current settings. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | +| [parameters](./parameters/) | | + +## Examples + +This sample shows how to create and save a SwissQR image. + +```javascript +let swissQRCodetext = new SwissQRCodetext(null); +swissQRCodetext.getBill().setAccount("Account"); +swissQRCodetext.getBill().setBillInformation("BillInformation"); +swissQRCodetext.getBill().setBillInformation("BillInformation"); +swissQRCodetext.getBill().setAmount(1024); +swissQRCodetext.getBill().getCreditor().setName("Creditor.Name"); +swissQRCodetext.getBill().getCreditor().setAddressLine1("Creditor.AddressLine1"); +swissQRCodetext.getBill().getCreditor().setAddressLine2("Creditor.AddressLine2"); +swissQRCodetext.getBill().getCreditor().setCountryCode("Nl"); +swissQRCodetext.getBill().setUnstructuredMessage("UnstructuredMessage"); +swissQRCodetext.getBill().setReference("Reference"); +swissQRCodetext.getBill().setAlternativeSchemes([new AlternativeScheme("AlternativeSchemeInstruction1"),new AlternativeScheme("AlternativeSchemeInstruction2")]); +swissQRCodetext.getBill().setDebtor(new Address(null)); +swissQRCodetext.getBill().getDebtor().setName("Debtor.Name"); +swissQRCodetext.getBill().getDebtor().setAddressLine1("Debtor.AddressLine1"); +swissQRCodetext.getBill().getDebtor().setAddressLine2("Debtor.AddressLine2"); +swissQRCodetext.getBill().getDebtor().setCountryCode("Lux"); +let cg = new ComplexBarcodeGenerator(swissQRCodetext); +let res = cg.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/complexbarcodegenerator/complexbarcodegenerator/_index.md b/english/nodejs/complexbarcodegenerator/complexbarcodegenerator/_index.md new file mode 100644 index 000000000..ad0a24b22 --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/complexbarcodegenerator/_index.md @@ -0,0 +1,27 @@ +--- +title: "ComplexBarcodeGenerator" +linktitle: "ComplexBarcodeGenerator" +articleTitle: "ComplexBarcodeGenerator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the ComplexBarcodeGenerator class." +type: docs +weight: 10 +url: /nodejs/complexbarcodegenerator/complexbarcodegenerator/ +--- +## ComplexBarcodeGenerator(object) {#constructor} + +Creates an instance of ComplexBarcodeGenerator. + +```javascript +public ComplexBarcodeGenerator(object complexCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| complexCodetext | object | Complex codetext | + +### See Also + +* class [ComplexBarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexbarcodegenerator/generatebarcodeimage/_index.md b/english/nodejs/complexbarcodegenerator/generatebarcodeimage/_index.md new file mode 100644 index 000000000..1d946483d --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/generatebarcodeimage/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexBarcodeGenerator.generateBarCodeImage" +linktitle: "generateBarCodeImage" +articleTitle: "generateBarCodeImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates complex barcode image under current settings." +type: docs +weight: 60 +url: /nodejs/complexbarcodegenerator/generatebarcodeimage/ +--- +## generateBarCodeImage(object) {#generatebarcodeimage} + +Generates complex barcode image under current settings. + +```javascript +generateBarCodeImage(format) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| format | object | | + +### Return Value + +Base64 + +presentation of image. + +### See Also + +* class [ComplexBarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexbarcodegenerator/getparameters/_index.md b/english/nodejs/complexbarcodegenerator/getparameters/_index.md new file mode 100644 index 000000000..d5f545530 --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/getparameters/_index.md @@ -0,0 +1,23 @@ +--- +title: "ComplexBarcodeGenerator.getParameters" +linktitle: "getParameters" +articleTitle: "getParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generation parameters." +type: docs +weight: 40 +url: /nodejs/complexbarcodegenerator/getparameters/ +--- +## getParameters() {#getparameters} + +Generation parameters. + +```javascript +getParameters() +``` + +### See Also + +* class [ComplexBarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexbarcodegenerator/init/_index.md b/english/nodejs/complexbarcodegenerator/init/_index.md new file mode 100644 index 000000000..3e3aa14ee --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "ComplexBarcodeGenerator.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/complexbarcodegenerator/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [ComplexBarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexbarcodegenerator/save/_index.md b/english/nodejs/complexbarcodegenerator/save/_index.md new file mode 100644 index 000000000..0732453b8 --- /dev/null +++ b/english/nodejs/complexbarcodegenerator/save/_index.md @@ -0,0 +1,28 @@ +--- +title: "ComplexBarcodeGenerator.save" +linktitle: "save" +articleTitle: "save" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates and saves complex barcode image under current settings." +type: docs +weight: 70 +url: /nodejs/complexbarcodegenerator/save/ +--- +## save(object, object) {#save} + +Generates and saves complex barcode image under current settings. + +```javascript +save(filePath, format) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| filePath | object | Path to save to. | +| format | object | BarCodeImageFormat(PNG, BMP, JPEG, GIF) | + +### See Also + +* class [ComplexBarcodeGenerator](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/_index.md b/english/nodejs/complexcodetextreader/_index.md new file mode 100644 index 000000000..9f959eed1 --- /dev/null +++ b/english/nodejs/complexcodetextreader/_index.md @@ -0,0 +1,50 @@ +--- +title: "ComplexCodetextReader Class" +linktitle: "ComplexCodetextReader" +articleTitle: "ComplexCodetextReader" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ComplexCodetextReader decodes codetext to specified complex barcode type." +type: docs +weight: 70 +url: /nodejs/complexcodetextreader/ +--- +## ComplexCodetextReader class + +ComplexCodetextReader decodes codetext to specified complex barcode type. + +```javascript +public class ComplexCodetextReader +``` + +## Methods + +| Name | Description | +| --- | --- | +| [tryDecodeHIBCLIC](./trydecodehibclic/)(*object*) | Decodes HIBC LIC codetext. | +| [tryDecodeHIBCPAS](./trydecodehibcpas/)(*object*) | Decodes HIBC PAS codetext. | +| [tryDecodeMailmark](./trydecodemailmark/)(*object*) | Decodes Mailmark Barcode C and L codetext. | +| [tryDecodeMailmark2D](./trydecodemailmark2d/)(*object*) | Decodes Royal Mail Mailmark 2D codetext. | +| [tryDecodeMaxiCode](./trydecodemaxicode/)(*object, object*) | Decodes MaxiCode codetext. | +| [tryDecodeSwissQR](./trydecodeswissqr/)(*object*) | Decodes SwissQR codetext. | +| [tryDecodeUSADriveId](./trydecodeusadriveid/)(*object*) | Decodes USADriveId codetext. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +## Examples + +This sample shows how to recognize and decode SwissQR image. + +```javascript +let cr = new BarCodeReader("SwissQRCodetext.png", null, DecodeType.QR); +cr.read(); +let result = ComplexCodetextReader.tryDecodeSwissQR(cr.getCodeText(false)); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/complexcodetextreader/trydecodehibclic/_index.md b/english/nodejs/complexcodetextreader/trydecodehibclic/_index.md new file mode 100644 index 000000000..0b893667c --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodehibclic/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeHIBCLIC" +linktitle: "tryDecodeHIBCLIC" +articleTitle: "tryDecodeHIBCLIC" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes HIBC LIC codetext." +type: docs +weight: 60 +url: /nodejs/complexcodetextreader/trydecodehibclic/ +--- +## tryDecodeHIBCLIC(object) {#trydecodehibclic} + +Decodes HIBC LIC codetext. + +```javascript +static tryDecodeHIBCLIC(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | encoded codetext | + +### Return Value + +decoded + +HIBC LIC Complex Codetext or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodehibcpas/_index.md b/english/nodejs/complexcodetextreader/trydecodehibcpas/_index.md new file mode 100644 index 000000000..a2071ede1 --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodehibcpas/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeHIBCPAS" +linktitle: "tryDecodeHIBCPAS" +articleTitle: "tryDecodeHIBCPAS" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes HIBC PAS codetext." +type: docs +weight: 70 +url: /nodejs/complexcodetextreader/trydecodehibcpas/ +--- +## tryDecodeHIBCPAS(object) {#trydecodehibcpas} + +Decodes HIBC PAS codetext. + +```javascript +static tryDecodeHIBCPAS(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | encoded codetext | + +### Return Value + +decoded + +HIBC PAS Complex Codetext or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodemailmark/_index.md b/english/nodejs/complexcodetextreader/trydecodemailmark/_index.md new file mode 100644 index 000000000..52a103fda --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodemailmark/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeMailmark" +linktitle: "tryDecodeMailmark" +articleTitle: "tryDecodeMailmark" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes Mailmark Barcode C and L codetext." +type: docs +weight: 40 +url: /nodejs/complexcodetextreader/trydecodemailmark/ +--- +## tryDecodeMailmark(object) {#trydecodemailmark} + +Decodes Mailmark Barcode C and L codetext. + +```javascript +static tryDecodeMailmark(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | encoded codetext
| + +### Return Value + +Decoded + +Mailmark Barcode C and L or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodemailmark2d/_index.md b/english/nodejs/complexcodetextreader/trydecodemailmark2d/_index.md new file mode 100644 index 000000000..4c74a8bc8 --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodemailmark2d/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeMailmark2D" +linktitle: "tryDecodeMailmark2D" +articleTitle: "tryDecodeMailmark2D" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes Royal Mail Mailmark 2D codetext." +type: docs +weight: 30 +url: /nodejs/complexcodetextreader/trydecodemailmark2d/ +--- +## tryDecodeMailmark2D(object) {#trydecodemailmark2d} + +Decodes Royal Mail Mailmark 2D codetext. + +```javascript +static tryDecodeMailmark2D(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | encoded codetext
| + +### Return Value + +decoded + +Royal Mail Mailmark 2D or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodemaxicode/_index.md b/english/nodejs/complexcodetextreader/trydecodemaxicode/_index.md new file mode 100644 index 000000000..220cbb582 --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodemaxicode/_index.md @@ -0,0 +1,34 @@ +--- +title: "ComplexCodetextReader.tryDecodeMaxiCode" +linktitle: "tryDecodeMaxiCode" +articleTitle: "tryDecodeMaxiCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes MaxiCode codetext." +type: docs +weight: 50 +url: /nodejs/complexcodetextreader/trydecodemaxicode/ +--- +## tryDecodeMaxiCode(object, object) {#trydecodemaxicode} + +Decodes MaxiCode codetext. + +```javascript +static tryDecodeMaxiCode(maxiCodeMode, encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| maxiCodeMode | object | MaxiCode mode | +| encodedCodetext | object | encoded codetext | + +### Return Value + +Decoded + +MaxiCode codetext. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodeswissqr/_index.md b/english/nodejs/complexcodetextreader/trydecodeswissqr/_index.md new file mode 100644 index 000000000..4085c8f60 --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodeswissqr/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeSwissQR" +linktitle: "tryDecodeSwissQR" +articleTitle: "tryDecodeSwissQR" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes SwissQR codetext." +type: docs +weight: 20 +url: /nodejs/complexcodetextreader/trydecodeswissqr/ +--- +## tryDecodeSwissQR(object) {#trydecodeswissqr} + +Decodes SwissQR codetext. + +```javascript +static tryDecodeSwissQR(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | encoded codetext | + +### Return Value + +decoded + +SwissQRCodetext or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/complexcodetextreader/trydecodeusadriveid/_index.md b/english/nodejs/complexcodetextreader/trydecodeusadriveid/_index.md new file mode 100644 index 000000000..58b6e461c --- /dev/null +++ b/english/nodejs/complexcodetextreader/trydecodeusadriveid/_index.md @@ -0,0 +1,33 @@ +--- +title: "ComplexCodetextReader.tryDecodeUSADriveId" +linktitle: "tryDecodeUSADriveId" +articleTitle: "tryDecodeUSADriveId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Decodes USADriveId codetext." +type: docs +weight: 80 +url: /nodejs/complexcodetextreader/trydecodeusadriveid/ +--- +## tryDecodeUSADriveId(object) {#trydecodeusadriveid} + +Decodes USADriveId codetext. + +```javascript +static tryDecodeUSADriveId(encodedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodedCodetext | object | Encoded codetext | + +### Return Value + +Decoded + +USADriveId or null. + +### See Also + +* class [ComplexCodetextReader](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/couponparameters/_index.md b/english/nodejs/couponparameters/_index.md new file mode 100644 index 000000000..05d926cf0 --- /dev/null +++ b/english/nodejs/couponparameters/_index.md @@ -0,0 +1,43 @@ +--- +title: "CouponParameters Class" +linktitle: "CouponParameters" +articleTitle: "CouponParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon." +type: docs +weight: 680 +url: /nodejs/couponparameters/ +--- +## CouponParameters class + +Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon. + +```javascript +public class CouponParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [CouponParameters](./couponparameters/#constructor)(*object*) | Initializes a new instance of the CouponParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getSupplementSpace](./getsupplementspace/) | Space between main the BarCode and supplement BarCode in Unit value. | +| [init](./init/) | | +| [setSupplementSpace](./setsupplementspace/)(*object*) | Space between main the BarCode and supplement BarCode in Unit value. | +| [toString](./tostring/) | Returns a human-readable string representation of this CouponParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [_space](./_space/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/couponparameters/couponparameters/_index.md b/english/nodejs/couponparameters/couponparameters/_index.md new file mode 100644 index 000000000..007be3291 --- /dev/null +++ b/english/nodejs/couponparameters/couponparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "CouponParameters" +linktitle: "CouponParameters" +articleTitle: "CouponParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the CouponParameters class." +type: docs +weight: 10 +url: /nodejs/couponparameters/couponparameters/ +--- +## CouponParameters(object) {#constructor} + +Initializes a new instance of the CouponParameters class. + +```javascript +public CouponParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [CouponParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/couponparameters/getsupplementspace/_index.md b/english/nodejs/couponparameters/getsupplementspace/_index.md new file mode 100644 index 000000000..769394bcc --- /dev/null +++ b/english/nodejs/couponparameters/getsupplementspace/_index.md @@ -0,0 +1,29 @@ +--- +title: "CouponParameters.getSupplementSpace" +linktitle: "getSupplementSpace" +articleTitle: "getSupplementSpace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Space between main the BarCode and supplement BarCode in Unit value." +type: docs +weight: 40 +url: /nodejs/couponparameters/getsupplementspace/ +--- +## getSupplementSpace() {#getsupplementspace} + +Space between main the BarCode and supplement BarCode in Unit value. + +```javascript +getSupplementSpace() +``` + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException
| The Space parameter value is less than 0. | + +### See Also + +* class [CouponParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/couponparameters/init/_index.md b/english/nodejs/couponparameters/init/_index.md new file mode 100644 index 000000000..90c16f571 --- /dev/null +++ b/english/nodejs/couponparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "CouponParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/couponparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [CouponParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/couponparameters/setsupplementspace/_index.md b/english/nodejs/couponparameters/setsupplementspace/_index.md new file mode 100644 index 000000000..e111de928 --- /dev/null +++ b/english/nodejs/couponparameters/setsupplementspace/_index.md @@ -0,0 +1,33 @@ +--- +title: "CouponParameters.setSupplementSpace" +linktitle: "setSupplementSpace" +articleTitle: "setSupplementSpace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Space between main the BarCode and supplement BarCode in Unit value." +type: docs +weight: 50 +url: /nodejs/couponparameters/setsupplementspace/ +--- +## setSupplementSpace(object) {#setsupplementspace} + +Space between main the BarCode and supplement BarCode in Unit value. + +```javascript +setSupplementSpace(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException
| The Space parameter value is less than 0. | + +### See Also + +* class [CouponParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/couponparameters/tostring/_index.md b/english/nodejs/couponparameters/tostring/_index.md new file mode 100644 index 000000000..185764e53 --- /dev/null +++ b/english/nodejs/couponparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "CouponParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this CouponParameters." +type: docs +weight: 60 +url: /nodejs/couponparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this CouponParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this CouponParameters. + +### See Also + +* class [CouponParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/customerinformationinterpretingtype/_index.md b/english/nodejs/customerinformationinterpretingtype/_index.md new file mode 100644 index 000000000..4b9399e6b --- /dev/null +++ b/english/nodejs/customerinformationinterpretingtype/_index.md @@ -0,0 +1,78 @@ +--- +title: "CustomerInformationInterpretingType Enum" +linktitle: "CustomerInformationInterpretingType" +articleTitle: "CustomerInformationInterpretingType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Defines the interpreting type(C_TABLE or N_TABLE) of customer information for AustralianPost BarCode." +type: docs +weight: 1490 +url: /nodejs/customerinformationinterpretingtype/ +--- +## CustomerInformationInterpretingType enumeration + +Defines the interpreting type(C_TABLE or N_TABLE) of customer information for AustralianPost BarCode. + +```javascript +public enum CustomerInformationInterpretingType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| C_TABLE | `0` | Use C_TABLE to interpret the customer information. Allows A..Z, a..z, 1..9, space and # sing. let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "5912345678ABCde"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); let image = generator.generateBarcodeImage(BarcodeImageFormat.PNG); let reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); reader.setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C_TABLE); let results = reader.readBarCodes(); for(let i = 0; i < results.length; i++) { let result = results[i]; console.log("BarCode Type: " + result.getCodeType()); console.log("BarCode CodeText: " + result.getCodeText()); } | +| N_TABLE | `1` | Use N_TABLE to interpret the customer information. Allows digits. let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "59123456781234567"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.N_TABLE); let image = generator.generateBarcodeImage(BarcodeImageFormat.PNG); let reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); reader.setCustomerInformationInterpretingType(CustomerInformationInterpretingType.N_TABLE); let results = reader.readBarCodes(); for(let i = 0; i < results.length; i++) { let result = results[i]; console.log("BarCode Type: " + result.getCodeType()); console.log("BarCode CodeText: " + result.getCodeText()); } | +| OTHER | `2` | Do not interpret the customer information. Allows 0, 1, 2 or 3 symbol only. let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "59123456780123012301230123"); generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.OTHER); let image = generator.generateBarcodeImage(BarcodeImageFormat.PNG); let reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); reader.setCustomerInformationInterpretingType(CustomerInformationInterpretingType.OTHER)); let results = reader.readBarCodes(); for(let i = 0; i < results.length; i++) { let result = results[i]; console.log("BarCode Type: " + result.getCodeType()); console.log("BarCode CodeText: " + result.getCodeText()); } | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "5912345678ABCde"); +generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.C_TABLE); +image = generator.generateBarCodeImage(); +let reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); +reader.setCustomerInformationInterpretingType(CustomerInformationInterpretingType.C_TABLE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeType()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "59123456781234567"); + +```javascript +generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.N_TABLE); +image = generator.generateBarCodeImage(); +reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); +reader.setCustomerInformationInterpretingType(CustomerInformationInterpretingType.N_TABLE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeType()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.AUSTRALIA_POST, "59123456780123012301230123"); +generator.getParameters().getBarcode().getAustralianPost().setAustralianPostEncodingTable(CustomerInformationInterpretingType.OTHER); +image = generator.generateBarCodeImage(); +let reader = new BarCodeReader(image, DecodeType.AUSTRALIA_POST); +reader.CustomerInformationInterpretingType = CustomerInformationInterpretingType.OTHER); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeType()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/databarextendedparameters/_index.md b/english/nodejs/databarextendedparameters/_index.md new file mode 100644 index 000000000..591752150 --- /dev/null +++ b/english/nodejs/databarextendedparameters/_index.md @@ -0,0 +1,46 @@ +--- +title: "DataBarExtendedParameters Class" +linktitle: "DataBarExtendedParameters" +articleTitle: "DataBarExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a DataBar additional information of recognized barcode." +type: docs +weight: 1370 +url: /nodejs/databarextendedparameters/ +--- +## DataBarExtendedParameters class + +Stores a DataBar additional information of recognized barcode + +```javascript +public class DataBarExtendedParameters : joint.BaseJavaClass +``` + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified DataBarExtendedParameters value. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [is2DCompositeComponent](./is2dcompositecomponent/) | Gets the DataBar 2D composite component flag. Default value is false. | +| [toString](./tostring/) | Returns a human-readable string representation of this [`DataBarExtendedParameters`](..//databarextendedparameters/). | + +## Examples + +```javascript +let reader = new BarCodeReader("c:\\test.png", DecodeType.DATABAR_OMNI_DIRECTIONAL); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/databarextendedparameters/equals/_index.md b/english/nodejs/databarextendedparameters/equals/_index.md new file mode 100644 index 000000000..3fd2fea21 --- /dev/null +++ b/english/nodejs/databarextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "DataBarExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified DataBarExtendedParameters value." +type: docs +weight: 30 +url: /nodejs/databarextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified DataBarExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | DataBarExtendedParameters value to compare to this instance.
| + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [DataBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarextendedparameters/hashcode/_index.md b/english/nodejs/databarextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..1fe39fe21 --- /dev/null +++ b/english/nodejs/databarextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataBarExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 40 +url: /nodejs/databarextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [DataBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarextendedparameters/init/_index.md b/english/nodejs/databarextendedparameters/init/_index.md new file mode 100644 index 000000000..8c6769fbc --- /dev/null +++ b/english/nodejs/databarextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/databarextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarextendedparameters/is2dcompositecomponent/_index.md b/english/nodejs/databarextendedparameters/is2dcompositecomponent/_index.md new file mode 100644 index 000000000..7b4e76c80 --- /dev/null +++ b/english/nodejs/databarextendedparameters/is2dcompositecomponent/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataBarExtendedParameters.is2DCompositeComponent" +linktitle: "is2DCompositeComponent" +articleTitle: "is2DCompositeComponent" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the DataBar 2D composite component flag. Default value is false." +type: docs +weight: 20 +url: /nodejs/databarextendedparameters/is2dcompositecomponent/ +--- +## is2DCompositeComponent() {#is2dcompositecomponent} + +Gets the DataBar 2D composite component flag. Default value is false. + +```javascript +is2DCompositeComponent() +``` + +### Return Value + +The + +DataBar 2D composite component flag. + +### See Also + +* class [DataBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarextendedparameters/tostring/_index.md b/english/nodejs/databarextendedparameters/tostring/_index.md new file mode 100644 index 000000000..69f7d0b4a --- /dev/null +++ b/english/nodejs/databarextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataBarExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this ." +type: docs +weight: 50 +url: /nodejs/databarextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this [`DataBarExtendedParameters`](../..//databarextendedparameters/). + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this [`DataBarExtendedParameters`](../..//databarextendedparameters/). + +### See Also + +* class [DataBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/_index.md b/english/nodejs/databarparameters/_index.md new file mode 100644 index 000000000..43cd97c72 --- /dev/null +++ b/english/nodejs/databarparameters/_index.md @@ -0,0 +1,45 @@ +--- +title: "DataBarParameters Class" +linktitle: "DataBarParameters" +articleTitle: "DataBarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Databar parameters." +type: docs +weight: 550 +url: /nodejs/databarparameters/ +--- +## DataBarParameters class + +Databar parameters. + +```javascript +public class DataBarParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DataBarParameters](./databarparameters/#constructor)(*object*) | Initializes a new instance of the DataBarParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. Used for DataBar stacked. | +| [getColumns](./getcolumns/) | Columns count. | +| [getRows](./getrows/) | Rows count. | +| [init](./init/) | | +| [is2DCompositeComponent](./is2dcompositecomponent/) | Enables flag of 2D composite component with DataBar barcode. | +| [isAllowOnlyGS1Encoding](./isallowonlygs1encoding/) | If this flag is set, it allows only GS1 encoding standard for Databar barcode types. | +| [set2DCompositeComponent](./set2dcompositecomponent/)(*object*) | Enables flag of 2D composite component with DataBar barcode. | +| [setAllowOnlyGS1Encoding](./setallowonlygs1encoding/)(*object*) | If this flag is set, it allows only GS1 encoding standard for Databar barcode types. | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. Used for DataBar stacked. | +| [setColumns](./setcolumns/)(*object*) | Columns count. | +| [setRows](./setrows/)(*object*) | Rows count. | +| [toString](./tostring/) | Returns a human-readable string representation of this DataBarParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/databarparameters/databarparameters/_index.md b/english/nodejs/databarparameters/databarparameters/_index.md new file mode 100644 index 000000000..74a77b616 --- /dev/null +++ b/english/nodejs/databarparameters/databarparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters" +linktitle: "DataBarParameters" +articleTitle: "DataBarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DataBarParameters class." +type: docs +weight: 10 +url: /nodejs/databarparameters/databarparameters/ +--- +## DataBarParameters(object) {#constructor} + +Initializes a new instance of the DataBarParameters class. + +```javascript +public DataBarParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/getaspectratio/_index.md b/english/nodejs/databarparameters/getaspectratio/_index.md new file mode 100644 index 000000000..57098bd02 --- /dev/null +++ b/english/nodejs/databarparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module. Used for DataBar stacked." +type: docs +weight: 110 +url: /nodejs/databarparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. Used for DataBar stacked. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/getcolumns/_index.md b/english/nodejs/databarparameters/getcolumns/_index.md new file mode 100644 index 000000000..3c83c0616 --- /dev/null +++ b/english/nodejs/databarparameters/getcolumns/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.getColumns" +linktitle: "getColumns" +articleTitle: "getColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 70 +url: /nodejs/databarparameters/getcolumns/ +--- +## getColumns() {#getcolumns} + +Columns count. + +```javascript +getColumns() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/getrows/_index.md b/english/nodejs/databarparameters/getrows/_index.md new file mode 100644 index 000000000..6d021273f --- /dev/null +++ b/english/nodejs/databarparameters/getrows/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.getRows" +linktitle: "getRows" +articleTitle: "getRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 90 +url: /nodejs/databarparameters/getrows/ +--- +## getRows() {#getrows} + +Rows count. + +```javascript +getRows() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/init/_index.md b/english/nodejs/databarparameters/init/_index.md new file mode 100644 index 000000000..f999693ce --- /dev/null +++ b/english/nodejs/databarparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/databarparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/is2dcompositecomponent/_index.md b/english/nodejs/databarparameters/is2dcompositecomponent/_index.md new file mode 100644 index 000000000..544085490 --- /dev/null +++ b/english/nodejs/databarparameters/is2dcompositecomponent/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.is2DCompositeComponent" +linktitle: "is2DCompositeComponent" +articleTitle: "is2DCompositeComponent" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enables flag of 2D composite component with DataBar barcode." +type: docs +weight: 30 +url: /nodejs/databarparameters/is2dcompositecomponent/ +--- +## is2DCompositeComponent() {#is2dcompositecomponent} + +Enables flag of 2D composite component with DataBar barcode + +```javascript +is2DCompositeComponent() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/isallowonlygs1encoding/_index.md b/english/nodejs/databarparameters/isallowonlygs1encoding/_index.md new file mode 100644 index 000000000..044479b42 --- /dev/null +++ b/english/nodejs/databarparameters/isallowonlygs1encoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataBarParameters.isAllowOnlyGS1Encoding" +linktitle: "isAllowOnlyGS1Encoding" +articleTitle: "isAllowOnlyGS1Encoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "If this flag is set, it allows only GS1 encoding standard for Databar barcode types." +type: docs +weight: 50 +url: /nodejs/databarparameters/isallowonlygs1encoding/ +--- +## isAllowOnlyGS1Encoding() {#isallowonlygs1encoding} + +If this flag is set, it allows only GS1 encoding standard for Databar barcode types + +```javascript +isAllowOnlyGS1Encoding() +``` + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/set2dcompositecomponent/_index.md b/english/nodejs/databarparameters/set2dcompositecomponent/_index.md new file mode 100644 index 000000000..5a4c055f2 --- /dev/null +++ b/english/nodejs/databarparameters/set2dcompositecomponent/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters.set2DCompositeComponent" +linktitle: "set2DCompositeComponent" +articleTitle: "set2DCompositeComponent" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enables flag of 2D composite component with DataBar barcode." +type: docs +weight: 40 +url: /nodejs/databarparameters/set2dcompositecomponent/ +--- +## set2DCompositeComponent(object) {#set2dcompositecomponent} + +Enables flag of 2D composite component with DataBar barcode + +```javascript +set2DCompositeComponent(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/setallowonlygs1encoding/_index.md b/english/nodejs/databarparameters/setallowonlygs1encoding/_index.md new file mode 100644 index 000000000..60287ce82 --- /dev/null +++ b/english/nodejs/databarparameters/setallowonlygs1encoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters.setAllowOnlyGS1Encoding" +linktitle: "setAllowOnlyGS1Encoding" +articleTitle: "setAllowOnlyGS1Encoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "If this flag is set, it allows only GS1 encoding standard for Databar barcode types." +type: docs +weight: 60 +url: /nodejs/databarparameters/setallowonlygs1encoding/ +--- +## setAllowOnlyGS1Encoding(object) {#setallowonlygs1encoding} + +If this flag is set, it allows only GS1 encoding standard for Databar barcode types + +```javascript +setAllowOnlyGS1Encoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/setaspectratio/_index.md b/english/nodejs/databarparameters/setaspectratio/_index.md new file mode 100644 index 000000000..91915f2cb --- /dev/null +++ b/english/nodejs/databarparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module. Used for DataBar stacked." +type: docs +weight: 120 +url: /nodejs/databarparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. Used for DataBar stacked. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/setcolumns/_index.md b/english/nodejs/databarparameters/setcolumns/_index.md new file mode 100644 index 000000000..8059f4e82 --- /dev/null +++ b/english/nodejs/databarparameters/setcolumns/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters.setColumns" +linktitle: "setColumns" +articleTitle: "setColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 80 +url: /nodejs/databarparameters/setcolumns/ +--- +## setColumns(object) {#setcolumns} + +Columns count. + +```javascript +setColumns(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/setrows/_index.md b/english/nodejs/databarparameters/setrows/_index.md new file mode 100644 index 000000000..478831e7d --- /dev/null +++ b/english/nodejs/databarparameters/setrows/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataBarParameters.setRows" +linktitle: "setRows" +articleTitle: "setRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 100 +url: /nodejs/databarparameters/setrows/ +--- +## setRows(object) {#setrows} + +Rows count. + +```javascript +setRows(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/databarparameters/tostring/_index.md b/english/nodejs/databarparameters/tostring/_index.md new file mode 100644 index 000000000..1a99ba79d --- /dev/null +++ b/english/nodejs/databarparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataBarParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DataBarParameters." +type: docs +weight: 130 +url: /nodejs/databarparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this DataBarParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this DataBarParameters. + +### See Also + +* class [DataBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/_index.md b/english/nodejs/dataelement/_index.md new file mode 100644 index 000000000..7058ab656 --- /dev/null +++ b/english/nodejs/dataelement/_index.md @@ -0,0 +1,38 @@ +--- +title: "DataElement Class" +linktitle: "DataElement" +articleTitle: "DataElement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Represents a jurisdiction-specific data field used in documents, for example ElementID = \"ZVA\" with Value = \"01\"." +type: docs +weight: 380 +url: /nodejs/dataelement/ +--- +## DataElement class + +Represents a jurisdiction-specific data field used in documents, for example ElementID = "ZVA" with Value = "01". + +```javascript +public class DataElement : BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DataElement](./dataelement/#constructor)(*object*) | Initializes a new instance of the DataElement class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getElementID](./getelementid/) | A 3-character code that identifies the jurisdiction-specific field, e.g., "ZVA". | +| [getValue](./getvalue/) | The text value associated with the field, typically defined by jurisdiction rules. | +| [init](./init/) | | +| [setElementID](./setelementid/)(*object*) | A 3-character code that identifies the jurisdiction-specific field, e.g., "ZVA". | +| [setValue](./setvalue/)(*object*) | The text value associated with the field, typically defined by jurisdiction rules. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dataelement/dataelement/_index.md b/english/nodejs/dataelement/dataelement/_index.md new file mode 100644 index 000000000..3927e7c51 --- /dev/null +++ b/english/nodejs/dataelement/dataelement/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataElement" +linktitle: "DataElement" +articleTitle: "DataElement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DataElement class." +type: docs +weight: 10 +url: /nodejs/dataelement/dataelement/ +--- +## DataElement(object) {#constructor} + +Initializes a new instance of the DataElement class. + +```javascript +public DataElement(object nativeObject) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| nativeObject | object | | + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/getelementid/_index.md b/english/nodejs/dataelement/getelementid/_index.md new file mode 100644 index 000000000..299c29fa6 --- /dev/null +++ b/english/nodejs/dataelement/getelementid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataElement.getElementID" +linktitle: "getElementID" +articleTitle: "getElementID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "A 3-character code that identifies the jurisdiction-specific field, e.g., \"ZVA\"." +type: docs +weight: 30 +url: /nodejs/dataelement/getelementid/ +--- +## getElementID() {#getelementid} + +A 3-character code that identifies the jurisdiction-specific field, e.g., "ZVA". + +```javascript +getElementID() +``` + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/getvalue/_index.md b/english/nodejs/dataelement/getvalue/_index.md new file mode 100644 index 000000000..a897f4552 --- /dev/null +++ b/english/nodejs/dataelement/getvalue/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataElement.getValue" +linktitle: "getValue" +articleTitle: "getValue" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The text value associated with the field, typically defined by jurisdiction rules." +type: docs +weight: 50 +url: /nodejs/dataelement/getvalue/ +--- +## getValue() {#getvalue} + +The text value associated with the field, typically defined by jurisdiction rules. + +```javascript +getValue() +``` + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/init/_index.md b/english/nodejs/dataelement/init/_index.md new file mode 100644 index 000000000..737085fac --- /dev/null +++ b/english/nodejs/dataelement/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataElement.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/dataelement/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/setelementid/_index.md b/english/nodejs/dataelement/setelementid/_index.md new file mode 100644 index 000000000..f0d483b7c --- /dev/null +++ b/english/nodejs/dataelement/setelementid/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataElement.setElementID" +linktitle: "setElementID" +articleTitle: "setElementID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "A 3-character code that identifies the jurisdiction-specific field, e.g., \"ZVA\"." +type: docs +weight: 40 +url: /nodejs/dataelement/setelementid/ +--- +## setElementID(object) {#setelementid} + +A 3-character code that identifies the jurisdiction-specific field, e.g., "ZVA". + +```javascript +setElementID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dataelement/setvalue/_index.md b/english/nodejs/dataelement/setvalue/_index.md new file mode 100644 index 000000000..2c3e0e51c --- /dev/null +++ b/english/nodejs/dataelement/setvalue/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataElement.setValue" +linktitle: "setValue" +articleTitle: "setValue" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The text value associated with the field, typically defined by jurisdiction rules." +type: docs +weight: 60 +url: /nodejs/dataelement/setvalue/ +--- +## setValue(object) {#setvalue} + +The text value associated with the field, typically defined by jurisdiction rules. + +```javascript +setValue(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataElement](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixecctype/_index.md b/english/nodejs/datamatrixecctype/_index.md new file mode 100644 index 000000000..5ad3580e7 --- /dev/null +++ b/english/nodejs/datamatrixecctype/_index.md @@ -0,0 +1,34 @@ +--- +title: "DataMatrixEccType Enum" +linktitle: "DataMatrixEccType" +articleTitle: "DataMatrixEccType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the type of the ECC to encode." +type: docs +weight: 910 +url: /nodejs/datamatrixecctype/ +--- +## DataMatrixEccType enumeration + +Specify the type of the ECC to encode. + +```javascript +public enum DataMatrixEccType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| ECC_AUTO | `0` | Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200. | +| ECC_000 | `1` | Specifies that encoded Ecc type is defined ECC 000. | +| ECC_050 | `2` | Specifies that encoded Ecc type is defined ECC 050. | +| ECC_080 | `3` | Specifies that encoded Ecc type is defined ECC 080. | +| ECC_100 | `4` | Specifies that encoded Ecc type is defined ECC 100. | +| ECC_140 | `5` | Specifies that encoded Ecc type is defined ECC 140. | +| ECC_200 | `6` | Specifies that encoded Ecc type is defined ECC 200. Recommended to use. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/datamatrixencodemode/_index.md b/english/nodejs/datamatrixencodemode/_index.md new file mode 100644 index 000000000..c37a47c89 --- /dev/null +++ b/english/nodejs/datamatrixencodemode/_index.md @@ -0,0 +1,39 @@ +--- +title: "DataMatrixEncodeMode Enum" +linktitle: "DataMatrixEncodeMode" +articleTitle: "DataMatrixEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DataMatrix encoder's encoding mode, default to Auto." +type: docs +weight: 870 +url: /nodejs/datamatrixencodemode/ +--- +## DataMatrixEncodeMode enumeration + +DataMatrix encoder's encoding mode, default to Auto + +```javascript +public enum DataMatrixEncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. | +| ASCII | `1` | Encodes one alphanumeric or two numeric characters per byte | +| BYTES | `6` | Encode 8 bit values | +| C40 | `8` | Uses C40 encoding. Encodes Upper-case alphanumeric, Lower case and special characters | +| TEXT | `9` | Uses Text encoding. Encodes Lower-case alphanumeric, Upper case and special characters | +| EDIFACT | `10` | Uses EDIFACT encoding. Uses six bits per character, encodes digits, upper-case letters, and many punctuation marks, but has no support for lower-case letters. | +| ANSIX12 | `11` | Uses ANSI X12 encoding. | +| EXTENDED_CODETEXT | `12` | ExtendedCodetext mode allows to manually switch encodation schemes and ECI encodings in codetext. It is better to use DataMatrixExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. Encodation schemes are set in the next format : "\Encodation_scheme_name:text\Encodation_scheme_name:text". Allowed encodation schemes are: EDIFACT, ANSIX12, ASCII, C40, Text, Auto. All backslashes (\) must be doubled in text. | +| EXTENDED | `13` | ExtendedCodetext mode allows to manually switch encodation schemes and ECI encodings in codetext. It is better to use DataMatrixExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. Encodation schemes are set in the next format : "\Encodation_scheme_name:text\Encodation_scheme_name:text". Allowed encodation schemes are: EDIFACT, ANSIX12, ASCII, C40, Text, Auto. All backslashes (\) must be doubled in text. | +| BASE_256 | `14` | Encode 8 bit values | +| BINARY | `15` | In Binary mode, the CodeText is encoded with maximum data compactness. If a Unicode character is found, an exception is thrown. | +| ECI | `16` | In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/_index.md b/english/nodejs/datamatrixextcodetextbuilder/_index.md new file mode 100644 index 000000000..5bb279307 --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/_index.md @@ -0,0 +1,47 @@ +--- +title: "DataMatrixExtCodetextBuilder Class" +linktitle: "DataMatrixExtCodetextBuilder" +articleTitle: "DataMatrixExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 770 +url: /nodejs/datamatrixextcodetextbuilder/ +--- +## DataMatrixExtCodetextBuilder class + +//Extended codetext mode //create codetext let textBuilder = new DataMatrixExtCodetextBuilder(); codetextBuilder.addECICodetextWithEncodeMode(ECIEncodings.Win1251, DataMatrixEncodeMode.BYTES, "World"); codetextBuilder.addPlainCodetext("Will"); codetextBuilder.addECICodetext(ECIEncodings.UTF_8, "犬Right狗"); codetextBuilder.addCodetextWithEncodeMode(DataMatrixEncodeMode.C_40, "ABCDE"); //generate codetext let codetext = textBuilder.getExtendedCodetext(); //generate let generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, null, codetext); generator.getParameters().getBarcode().getDataMatrix().setDataMatrixEncodeMode(DataMatrixEncodeMode.EXTENDED_CODETEXT); generator.save("test.bmp", BarcodeImageFormat.BMP); + +```javascript +public class DataMatrixExtCodetextBuilder : ExtCodetextBuilder +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DataMatrixExtCodetextBuilder](./datamatrixextcodetextbuilder/#constructor) | Initializes a new instance of the DataMatrixExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addCodetextWithEncodeMode](./addcodetextwithencodemode/)(*object, object*) | Adds codetext with defined encode mode to the extended codetext items. | +| [addECICodetext](../extcodetextbuilder/addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. *(Inherited from ExtCodetextBuilder)* | +| [addECICodetextWithEncodeMode](./addecicodetextwithencodemode/)(*object, object, object*) | Adds codetext with Extended Channel Identifier with defined encode mode. | +| [addPlainCodetext](../extcodetextbuilder/addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [clear](../extcodetextbuilder/clear/) | Clears extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [construct](./construct/)(*object*) | | +| [getExtendedCodetext](./getextendedcodetext/) | Generates Extended codetext from the extended codetext list. | +| [init](./init/) | | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/addcodetextwithencodemode/_index.md b/english/nodejs/datamatrixextcodetextbuilder/addcodetextwithencodemode/_index.md new file mode 100644 index 000000000..5c17c8bfb --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/addcodetextwithencodemode/_index.md @@ -0,0 +1,28 @@ +--- +title: "DataMatrixExtCodetextBuilder.addCodetextWithEncodeMode" +linktitle: "addCodetextWithEncodeMode" +articleTitle: "addCodetextWithEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext with defined encode mode to the extended codetext items." +type: docs +weight: 60 +url: /nodejs/datamatrixextcodetextbuilder/addcodetextwithencodemode/ +--- +## addCodetextWithEncodeMode(object, object) {#addcodetextwithencodemode} + +Adds codetext with defined encode mode to the extended codetext items + +```javascript +addCodetextWithEncodeMode(encodeMode, codetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| encodeMode | object | Encode mode value | +| codetext | object | Codetext in unicode to add as extended codetext item | + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/addecicodetextwithencodemode/_index.md b/english/nodejs/datamatrixextcodetextbuilder/addecicodetextwithencodemode/_index.md new file mode 100644 index 000000000..08d8ad323 --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/addecicodetextwithencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixExtCodetextBuilder.addECICodetextWithEncodeMode" +linktitle: "addECICodetextWithEncodeMode" +articleTitle: "addECICodetextWithEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext with Extended Channel Identifier with defined encode mode." +type: docs +weight: 50 +url: /nodejs/datamatrixextcodetextbuilder/addecicodetextwithencodemode/ +--- +## addECICodetextWithEncodeMode(object, object, object) {#addecicodetextwithencodemode} + +Adds codetext with Extended Channel Identifier with defined encode mode + +```javascript +addECICodetextWithEncodeMode(ECIEncoding, encodeMode, codetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ECIEncoding | object | Extended Channel Identifier | +| encodeMode | object | Encode mode value | +| codetext | object | Codetext in unicode to add as extended codetext item with Extended Channel Identifier with defined encode mode | + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/construct/_index.md b/english/nodejs/datamatrixextcodetextbuilder/construct/_index.md new file mode 100644 index 000000000..655a42a51 --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixExtCodetextBuilder.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/datamatrixextcodetextbuilder/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/datamatrixextcodetextbuilder/_index.md b/english/nodejs/datamatrixextcodetextbuilder/datamatrixextcodetextbuilder/_index.md new file mode 100644 index 000000000..62bd4f118 --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/datamatrixextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtCodetextBuilder" +linktitle: "DataMatrixExtCodetextBuilder" +articleTitle: "DataMatrixExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DataMatrixExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/datamatrixextcodetextbuilder/datamatrixextcodetextbuilder/ +--- +## DataMatrixExtCodetextBuilder() {#constructor} + +Initializes a new instance of the DataMatrixExtCodetextBuilder class. + +```javascript +public DataMatrixExtCodetextBuilder() +``` + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/datamatrixextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..465dcb4be --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates Extended codetext from the extended codetext list." +type: docs +weight: 70 +url: /nodejs/datamatrixextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generates Extended codetext from the extended codetext list. + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Extended + +codetext as string + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextcodetextbuilder/init/_index.md b/english/nodejs/datamatrixextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..78781cf29 --- /dev/null +++ b/english/nodejs/datamatrixextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/datamatrixextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataMatrixExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/_index.md b/english/nodejs/datamatrixextendedparameters/_index.md new file mode 100644 index 000000000..b77454673 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "DataMatrixExtendedParameters Class" +linktitle: "DataMatrixExtendedParameters" +articleTitle: "DataMatrixExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of DataMatrix recognized barcode." +type: docs +weight: 1430 +url: /nodejs/datamatrixextendedparameters/ +--- +## DataMatrixExtendedParameters class + +Stores special data of DataMatrix recognized barcode + +```javascript +public class DataMatrixExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DataMatrixExtendedParameters](./datamatrixextendedparameters/#constructor)(*object*) | Initializes a new instance of the DataMatrixExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified DataMatrixExtendedParameters value. | +| [getStructuredAppendBarcodeId](./getstructuredappendbarcodeid/) | | +| [getStructuredAppendBarcodesCount](./getstructuredappendbarcodescount/) | | +| [getStructuredAppendFileId](./getstructuredappendfileid/) | | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isReaderProgramming](./isreaderprogramming/) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. | +| [toString](./tostring/) | Returns a human-readable string representation of this DataMatrixExtendedParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/datamatrixextendedparameters/datamatrixextendedparameters/_index.md b/english/nodejs/datamatrixextendedparameters/datamatrixextendedparameters/_index.md new file mode 100644 index 000000000..16cd01b76 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/datamatrixextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixExtendedParameters" +linktitle: "DataMatrixExtendedParameters" +articleTitle: "DataMatrixExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DataMatrixExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/datamatrixextendedparameters/datamatrixextendedparameters/ +--- +## DataMatrixExtendedParameters(object) {#constructor} + +Initializes a new instance of the DataMatrixExtendedParameters class. + +```javascript +public DataMatrixExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/equals/_index.md b/english/nodejs/datamatrixextendedparameters/equals/_index.md new file mode 100644 index 000000000..3ad5553c3 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "DataMatrixExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified DataMatrixExtendedParameters value." +type: docs +weight: 70 +url: /nodejs/datamatrixextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `DataMatrixExtendedParameters` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodeid/_index.md b/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..8774db9e5 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtendedParameters.getStructuredAppendBarcodeId" +linktitle: "getStructuredAppendBarcodeId" +articleTitle: "getStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/datamatrixextendedparameters/getstructuredappendbarcodeid/ +--- +## getStructuredAppendBarcodeId() {#getstructuredappendbarcodeid} + + + +```javascript +getStructuredAppendBarcodeId() +``` + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodescount/_index.md b/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..206799dcb --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/getstructuredappendbarcodescount/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtendedParameters.getStructuredAppendBarcodesCount" +linktitle: "getStructuredAppendBarcodesCount" +articleTitle: "getStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/datamatrixextendedparameters/getstructuredappendbarcodescount/ +--- +## getStructuredAppendBarcodesCount() {#getstructuredappendbarcodescount} + + + +```javascript +getStructuredAppendBarcodesCount() +``` + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/getstructuredappendfileid/_index.md b/english/nodejs/datamatrixextendedparameters/getstructuredappendfileid/_index.md new file mode 100644 index 000000000..253405301 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/getstructuredappendfileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtendedParameters.getStructuredAppendFileId" +linktitle: "getStructuredAppendFileId" +articleTitle: "getStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/datamatrixextendedparameters/getstructuredappendfileid/ +--- +## getStructuredAppendFileId() {#getstructuredappendfileid} + + + +```javascript +getStructuredAppendFileId() +``` + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/hashcode/_index.md b/english/nodejs/datamatrixextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..1b8886f26 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 80 +url: /nodejs/datamatrixextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/init/_index.md b/english/nodejs/datamatrixextendedparameters/init/_index.md new file mode 100644 index 000000000..c2e642668 --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/datamatrixextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/isreaderprogramming/_index.md b/english/nodejs/datamatrixextendedparameters/isreaderprogramming/_index.md new file mode 100644 index 000000000..3a92e650f --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/isreaderprogramming/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixExtendedParameters.isReaderProgramming" +linktitle: "isReaderProgramming" +articleTitle: "isReaderProgramming" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader..." +type: docs +weight: 60 +url: /nodejs/datamatrixextendedparameters/isreaderprogramming/ +--- +## isReaderProgramming() {#isreaderprogramming} + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. + +```javascript +isReaderProgramming() +``` + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixextendedparameters/tostring/_index.md b/english/nodejs/datamatrixextendedparameters/tostring/_index.md new file mode 100644 index 000000000..fcf89649d --- /dev/null +++ b/english/nodejs/datamatrixextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DataMatrixExtendedParameters." +type: docs +weight: 90 +url: /nodejs/datamatrixextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `DataMatrixExtendedParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [DataMatrixExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/_index.md b/english/nodejs/datamatrixparameters/_index.md new file mode 100644 index 000000000..176fa0786 --- /dev/null +++ b/english/nodejs/datamatrixparameters/_index.md @@ -0,0 +1,65 @@ +--- +title: "DataMatrixParameters Class" +linktitle: "DataMatrixParameters" +articleTitle: "DataMatrixParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DataMatrix parameters." +type: docs +weight: 560 +url: /nodejs/datamatrixparameters/ +--- +## DataMatrixParameters class + +DataMatrix parameters. + +```javascript +public class DataMatrixParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DataMatrixParameters](./datamatrixparameters/#constructor)(*object*) | Initializes a new instance of the DataMatrixParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getColumns](./getcolumns/) | Columns count. | +| [getDataMatrixEcc](./getdatamatrixecc/) | Gets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200. | +| [getDataMatrixEncodeMode](./getdatamatrixencodemode/) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. | +| [getDataMatrixVersion](./getdatamatrixversion/) | Gets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. | +| [getECIEncoding](./geteciencoding/) | Gets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1. | +| [getEccType](./getecctype/) | Gets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. | +| [getEncodeMode](./getencodemode/) | Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. | +| [getMacroCharacters](./getmacrocharacters/) | ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC_200 or DataMatrixEccType.ECC_AUTO. Cannot be used... | +| [getRows](./getrows/) | Rows count. | +| [getStructuredAppendBarcodeId](./getstructuredappendbarcodeid/) | Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [getStructuredAppendBarcodesCount](./getstructuredappendbarcodescount/) | Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [getStructuredAppendFileId](./getstructuredappendfileid/) | File ID for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [getVersion](./getversion/) | Gets a Datamatrix symbol size. Default value: Version.Auto. | +| [init](./init/) | | +| [isReaderProgramming](./isreaderprogramming/) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false. | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setColumns](./setcolumns/)(*object*) | Columns count. | +| [setDataMatrixEcc](./setdatamatrixecc/)(*object*) | Sets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200. | +| [setDataMatrixEncodeMode](./setdatamatrixencodemode/)(*object*) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. | +| [setDataMatrixVersion](./setdatamatrixversion/)(*object*) | Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. | +| [setECIEncoding](./seteciencoding/)(*object*) | Sets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1. | +| [setEccType](./setecctype/)(*object*) | Sets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. | +| [setEncodeMode](./setencodemode/)(*object*) | Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. | +| [setMacroCharacters](./setmacrocharacters/)(*object*) | ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC_200 or DataMatrixEccType.ECC_AUTO. Cannot be used... | +| [setReaderProgramming](./setreaderprogramming/)(*object*) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false. | +| [setRows](./setrows/)(*object*) | Rows count. | +| [setStructuredAppendBarcodeId](./setstructuredappendbarcodeid/)(*object*) | Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [setStructuredAppendBarcodesCount](./setstructuredappendbarcodescount/)(*object*) | Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [setStructuredAppendFileId](./setstructuredappendfileid/)(*object*) | File ID for Structured Append mode of Datamatrix barcode. Default value: 0. | +| [setVersion](./setversion/)(*object*) | Sets a Datamatrix symbol size. Default value: Version.Auto. | +| [toString](./tostring/) | Returns a human-readable string representation of this DataMatrixParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/datamatrixparameters/datamatrixparameters/_index.md b/english/nodejs/datamatrixparameters/datamatrixparameters/_index.md new file mode 100644 index 000000000..da47e92fe --- /dev/null +++ b/english/nodejs/datamatrixparameters/datamatrixparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters" +linktitle: "DataMatrixParameters" +articleTitle: "DataMatrixParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DataMatrixParameters class." +type: docs +weight: 10 +url: /nodejs/datamatrixparameters/datamatrixparameters/ +--- +## DataMatrixParameters(object) {#constructor} + +Initializes a new instance of the DataMatrixParameters class. + +```javascript +public DataMatrixParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getaspectratio/_index.md b/english/nodejs/datamatrixparameters/getaspectratio/_index.md new file mode 100644 index 000000000..09c273765 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 290 +url: /nodejs/datamatrixparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getcolumns/_index.md b/english/nodejs/datamatrixparameters/getcolumns/_index.md new file mode 100644 index 000000000..dad56ca53 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getcolumns/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getColumns" +linktitle: "getColumns" +articleTitle: "getColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 250 +url: /nodejs/datamatrixparameters/getcolumns/ +--- +## getColumns() {#getcolumns} + +Columns count. + +```javascript +getColumns() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getdatamatrixecc/_index.md b/english/nodejs/datamatrixparameters/getdatamatrixecc/_index.md new file mode 100644 index 000000000..5e63b8998 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getdatamatrixecc/_index.md @@ -0,0 +1,25 @@ +--- +title: "DataMatrixParameters.getDataMatrixEcc" +linktitle: "getDataMatrixEcc" +articleTitle: "getDataMatrixEcc" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200." +type: docs +weight: 90 +url: /nodejs/datamatrixparameters/getdatamatrixecc/ +--- +## getDataMatrixEcc() {#getdatamatrixecc} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEccType(). + +Gets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200. + +```javascript +getDataMatrixEcc() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getdatamatrixencodemode/_index.md b/english/nodejs/datamatrixparameters/getdatamatrixencodemode/_index.md new file mode 100644 index 000000000..175906291 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getdatamatrixencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "DataMatrixParameters.getDataMatrixEncodeMode" +linktitle: "getDataMatrixEncodeMode" +articleTitle: "getDataMatrixEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO." +type: docs +weight: 130 +url: /nodejs/datamatrixparameters/getdatamatrixencodemode/ +--- +## getDataMatrixEncodeMode() {#getdatamatrixencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. + +```javascript +getDataMatrixEncodeMode() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getdatamatrixversion/_index.md b/english/nodejs/datamatrixparameters/getdatamatrixversion/_index.md new file mode 100644 index 000000000..318fcfe4a --- /dev/null +++ b/english/nodejs/datamatrixparameters/getdatamatrixversion/_index.md @@ -0,0 +1,25 @@ +--- +title: "DataMatrixParameters.getDataMatrixVersion" +linktitle: "getDataMatrixVersion" +articleTitle: "getDataMatrixVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto." +type: docs +weight: 50 +url: /nodejs/datamatrixparameters/getdatamatrixversion/ +--- +## getDataMatrixVersion() {#getdatamatrixversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getVersion(). + +Gets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. + +```javascript +getDataMatrixVersion() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getecctype/_index.md b/english/nodejs/datamatrixparameters/getecctype/_index.md new file mode 100644 index 000000000..fed0167fb --- /dev/null +++ b/english/nodejs/datamatrixparameters/getecctype/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.getEccType" +linktitle: "getEccType" +articleTitle: "getEccType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200." +type: docs +weight: 70 +url: /nodejs/datamatrixparameters/getecctype/ +--- +## getEccType() {#getecctype} + +Gets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. + +```javascript +getEccType() +``` + +### Return Value + +a + +Datamatrix ECC type. + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/geteciencoding/_index.md b/english/nodejs/datamatrixparameters/geteciencoding/_index.md new file mode 100644 index 000000000..2bf21242c --- /dev/null +++ b/english/nodejs/datamatrixparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1." +type: docs +weight: 310 +url: /nodejs/datamatrixparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Gets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1 + +```javascript +getECIEncoding() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getencodemode/_index.md b/english/nodejs/datamatrixparameters/getencodemode/_index.md new file mode 100644 index 000000000..4b92be0b6 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto." +type: docs +weight: 110 +url: /nodejs/datamatrixparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. + +```javascript +getEncodeMode() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getmacrocharacters/_index.md b/english/nodejs/datamatrixparameters/getmacrocharacters/_index.md new file mode 100644 index 000000000..b4b092057 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getmacrocharacters/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getMacroCharacters" +linktitle: "getMacroCharacters" +articleTitle: "getMacroCharacters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to ..." +type: docs +weight: 230 +url: /nodejs/datamatrixparameters/getmacrocharacters/ +--- +## getMacroCharacters() {#getmacrocharacters} + +ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC_200 or DataMatrixEccType.ECC_AUTO. Cannot be used with EncodeTypes.GS_1_DATA_MATRIX Default value: MacroCharacter.NONE. + +```javascript +getMacroCharacters() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getrows/_index.md b/english/nodejs/datamatrixparameters/getrows/_index.md new file mode 100644 index 000000000..4d265e5c2 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getrows/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getRows" +linktitle: "getRows" +articleTitle: "getRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 270 +url: /nodejs/datamatrixparameters/getrows/ +--- +## getRows() {#getrows} + +Rows count. + +```javascript +getRows() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getstructuredappendbarcodeid/_index.md b/english/nodejs/datamatrixparameters/getstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..4b742fb85 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getstructuredappendbarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getStructuredAppendBarcodeId" +linktitle: "getStructuredAppendBarcodeId" +articleTitle: "getStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 150 +url: /nodejs/datamatrixparameters/getstructuredappendbarcodeid/ +--- +## getStructuredAppendBarcodeId() {#getstructuredappendbarcodeid} + +Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +getStructuredAppendBarcodeId() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getstructuredappendbarcodescount/_index.md b/english/nodejs/datamatrixparameters/getstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..cce506d82 --- /dev/null +++ b/english/nodejs/datamatrixparameters/getstructuredappendbarcodescount/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getStructuredAppendBarcodesCount" +linktitle: "getStructuredAppendBarcodesCount" +articleTitle: "getStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 170 +url: /nodejs/datamatrixparameters/getstructuredappendbarcodescount/ +--- +## getStructuredAppendBarcodesCount() {#getstructuredappendbarcodescount} + +Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +getStructuredAppendBarcodesCount() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getstructuredappendfileid/_index.md b/english/nodejs/datamatrixparameters/getstructuredappendfileid/_index.md new file mode 100644 index 000000000..3adcb91ec --- /dev/null +++ b/english/nodejs/datamatrixparameters/getstructuredappendfileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.getStructuredAppendFileId" +linktitle: "getStructuredAppendFileId" +articleTitle: "getStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "File ID for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 190 +url: /nodejs/datamatrixparameters/getstructuredappendfileid/ +--- +## getStructuredAppendFileId() {#getstructuredappendfileid} + +File ID for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +getStructuredAppendFileId() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/getversion/_index.md b/english/nodejs/datamatrixparameters/getversion/_index.md new file mode 100644 index 000000000..e2334bf0b --- /dev/null +++ b/english/nodejs/datamatrixparameters/getversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.getVersion" +linktitle: "getVersion" +articleTitle: "getVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a Datamatrix symbol size. Default value: Version.Auto." +type: docs +weight: 30 +url: /nodejs/datamatrixparameters/getversion/ +--- +## getVersion() {#getversion} + +Gets a Datamatrix symbol size. Default value: Version.Auto. + +```javascript +getVersion() +``` + +### Return Value + +a + +Datamatrix symbol size. + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/init/_index.md b/english/nodejs/datamatrixparameters/init/_index.md new file mode 100644 index 000000000..cf6526fc1 --- /dev/null +++ b/english/nodejs/datamatrixparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/datamatrixparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/isreaderprogramming/_index.md b/english/nodejs/datamatrixparameters/isreaderprogramming/_index.md new file mode 100644 index 000000000..900f51722 --- /dev/null +++ b/english/nodejs/datamatrixparameters/isreaderprogramming/_index.md @@ -0,0 +1,23 @@ +--- +title: "DataMatrixParameters.isReaderProgramming" +linktitle: "isReaderProgramming" +articleTitle: "isReaderProgramming" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false." +type: docs +weight: 210 +url: /nodejs/datamatrixparameters/isreaderprogramming/ +--- +## isReaderProgramming() {#isreaderprogramming} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false + +```javascript +isReaderProgramming() +``` + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setaspectratio/_index.md b/english/nodejs/datamatrixparameters/setaspectratio/_index.md new file mode 100644 index 000000000..080ffdbab --- /dev/null +++ b/english/nodejs/datamatrixparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 300 +url: /nodejs/datamatrixparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setcolumns/_index.md b/english/nodejs/datamatrixparameters/setcolumns/_index.md new file mode 100644 index 000000000..63cc5bf74 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setcolumns/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setColumns" +linktitle: "setColumns" +articleTitle: "setColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 260 +url: /nodejs/datamatrixparameters/setcolumns/ +--- +## setColumns(object) {#setcolumns} + +Columns count. + +```javascript +setColumns(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setdatamatrixecc/_index.md b/english/nodejs/datamatrixparameters/setdatamatrixecc/_index.md new file mode 100644 index 000000000..2d6bf46ea --- /dev/null +++ b/english/nodejs/datamatrixparameters/setdatamatrixecc/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.setDataMatrixEcc" +linktitle: "setDataMatrixEcc" +articleTitle: "setDataMatrixEcc" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200." +type: docs +weight: 100 +url: /nodejs/datamatrixparameters/setdatamatrixecc/ +--- +## setDataMatrixEcc(object) {#setdatamatrixecc} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEccType(). + +Sets a Datamatrix ECC type. Default value: DataMatrixEccType.ECC_200. + +```javascript +setDataMatrixEcc(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setdatamatrixencodemode/_index.md b/english/nodejs/datamatrixparameters/setdatamatrixencodemode/_index.md new file mode 100644 index 000000000..2554b3949 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setdatamatrixencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.setDataMatrixEncodeMode" +linktitle: "setDataMatrixEncodeMode" +articleTitle: "setDataMatrixEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO." +type: docs +weight: 140 +url: /nodejs/datamatrixparameters/setdatamatrixencodemode/ +--- +## setDataMatrixEncodeMode(object) {#setdatamatrixencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.AUTO. + +```javascript +setDataMatrixEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setdatamatrixversion/_index.md b/english/nodejs/datamatrixparameters/setdatamatrixversion/_index.md new file mode 100644 index 000000000..f1c0ae28f --- /dev/null +++ b/english/nodejs/datamatrixparameters/setdatamatrixversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.setDataMatrixVersion" +linktitle: "setDataMatrixVersion" +articleTitle: "setDataMatrixVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto." +type: docs +weight: 60 +url: /nodejs/datamatrixparameters/setdatamatrixversion/ +--- +## setDataMatrixVersion(object) {#setdatamatrixversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setVersion(). + +Sets a Datamatrix symbol size. Default value: DataMatrixVersion.Auto. + +```javascript +setDataMatrixVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setecctype/_index.md b/english/nodejs/datamatrixparameters/setecctype/_index.md new file mode 100644 index 000000000..bb6679abb --- /dev/null +++ b/english/nodejs/datamatrixparameters/setecctype/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setEccType" +linktitle: "setEccType" +articleTitle: "setEccType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200." +type: docs +weight: 80 +url: /nodejs/datamatrixparameters/setecctype/ +--- +## setEccType(object) {#setecctype} + +Sets a Datamatrix ECC type. Default value: DataMatrixEccType.Ecc200. + +```javascript +setEccType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Datamatrix ECC type. | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/seteciencoding/_index.md b/english/nodejs/datamatrixparameters/seteciencoding/_index.md new file mode 100644 index 000000000..b3bbedd53 --- /dev/null +++ b/english/nodejs/datamatrixparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1." +type: docs +weight: 320 +url: /nodejs/datamatrixparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Sets ECI encoding. Used when DataMatrixEncodeMode is Auto. Default value: ISO-8859-1 + +```javascript +setECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setencodemode/_index.md b/english/nodejs/datamatrixparameters/setencodemode/_index.md new file mode 100644 index 000000000..9bbaf1813 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto." +type: docs +weight: 120 +url: /nodejs/datamatrixparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Encode mode of Datamatrix barcode. Default value: EncodeMode.Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setmacrocharacters/_index.md b/english/nodejs/datamatrixparameters/setmacrocharacters/_index.md new file mode 100644 index 000000000..1f5d883b2 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setmacrocharacters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setMacroCharacters" +linktitle: "setMacroCharacters" +articleTitle: "setMacroCharacters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to ..." +type: docs +weight: 240 +url: /nodejs/datamatrixparameters/setmacrocharacters/ +--- +## setMacroCharacters(object) {#setmacrocharacters} + +ISO/IEC 16022 5.2.4.7 Macro characters 11.3 Protocol for Macro characters in the first position (ECC 200 only) Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with DataMatrixEccType.ECC_200 or DataMatrixEccType.ECC_AUTO. Cannot be used with EncodeTypes.GS_1_DATA_MATRIX Default value: MacroCharacter.NONE. + +```javascript +setMacroCharacters(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setreaderprogramming/_index.md b/english/nodejs/datamatrixparameters/setreaderprogramming/_index.md new file mode 100644 index 000000000..7c87a45f9 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setreaderprogramming/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setReaderProgramming" +linktitle: "setReaderProgramming" +articleTitle: "setReaderProgramming" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false." +type: docs +weight: 220 +url: /nodejs/datamatrixparameters/setreaderprogramming/ +--- +## setReaderProgramming(object) {#setreaderprogramming} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. Default value: false + +```javascript +setReaderProgramming(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setrows/_index.md b/english/nodejs/datamatrixparameters/setrows/_index.md new file mode 100644 index 000000000..7e608263b --- /dev/null +++ b/english/nodejs/datamatrixparameters/setrows/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setRows" +linktitle: "setRows" +articleTitle: "setRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 280 +url: /nodejs/datamatrixparameters/setrows/ +--- +## setRows(object) {#setrows} + +Rows count. + +```javascript +setRows(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setstructuredappendbarcodeid/_index.md b/english/nodejs/datamatrixparameters/setstructuredappendbarcodeid/_index.md new file mode 100644 index 000000000..4784f4e3f --- /dev/null +++ b/english/nodejs/datamatrixparameters/setstructuredappendbarcodeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setStructuredAppendBarcodeId" +linktitle: "setStructuredAppendBarcodeId" +articleTitle: "setStructuredAppendBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 160 +url: /nodejs/datamatrixparameters/setstructuredappendbarcodeid/ +--- +## setStructuredAppendBarcodeId(object) {#setstructuredappendbarcodeid} + +Barcode ID for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +setStructuredAppendBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setstructuredappendbarcodescount/_index.md b/english/nodejs/datamatrixparameters/setstructuredappendbarcodescount/_index.md new file mode 100644 index 000000000..db2f25624 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setstructuredappendbarcodescount/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setStructuredAppendBarcodesCount" +linktitle: "setStructuredAppendBarcodesCount" +articleTitle: "setStructuredAppendBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 180 +url: /nodejs/datamatrixparameters/setstructuredappendbarcodescount/ +--- +## setStructuredAppendBarcodesCount(object) {#setstructuredappendbarcodescount} + +Barcodes count for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +setStructuredAppendBarcodesCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setstructuredappendfileid/_index.md b/english/nodejs/datamatrixparameters/setstructuredappendfileid/_index.md new file mode 100644 index 000000000..7ceda3088 --- /dev/null +++ b/english/nodejs/datamatrixparameters/setstructuredappendfileid/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setStructuredAppendFileId" +linktitle: "setStructuredAppendFileId" +articleTitle: "setStructuredAppendFileId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "File ID for Structured Append mode of Datamatrix barcode. Default value: 0." +type: docs +weight: 200 +url: /nodejs/datamatrixparameters/setstructuredappendfileid/ +--- +## setStructuredAppendFileId(object) {#setstructuredappendfileid} + +File ID for Structured Append mode of Datamatrix barcode. Default value: 0 + +```javascript +setStructuredAppendFileId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/setversion/_index.md b/english/nodejs/datamatrixparameters/setversion/_index.md new file mode 100644 index 000000000..5a3314f0c --- /dev/null +++ b/english/nodejs/datamatrixparameters/setversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "DataMatrixParameters.setVersion" +linktitle: "setVersion" +articleTitle: "setVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a Datamatrix symbol size. Default value: Version.Auto." +type: docs +weight: 40 +url: /nodejs/datamatrixparameters/setversion/ +--- +## setVersion(object) {#setversion} + +Sets a Datamatrix symbol size. Default value: Version.Auto. + +```javascript +setVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a Datamatrix symbol size. | + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixparameters/tostring/_index.md b/english/nodejs/datamatrixparameters/tostring/_index.md new file mode 100644 index 000000000..00c76c1b7 --- /dev/null +++ b/english/nodejs/datamatrixparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DataMatrixParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DataMatrixParameters." +type: docs +weight: 330 +url: /nodejs/datamatrixparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this DataMatrixParameters. + +```javascript +toString() +``` + +### Return Value + +presentation + +of this DataMatrixParameters. + +### See Also + +* class [DataMatrixParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/datamatrixversion/_index.md b/english/nodejs/datamatrixversion/_index.md new file mode 100644 index 000000000..0e63add9d --- /dev/null +++ b/english/nodejs/datamatrixversion/_index.md @@ -0,0 +1,98 @@ +--- +title: "DataMatrixVersion Enum" +linktitle: "DataMatrixVersion" +articleTitle: "DataMatrixVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the type of the ECC to encode." +type: docs +weight: 1210 +url: /nodejs/datamatrixversion/ +--- +## DataMatrixVersion enumeration + +Specify the type of the ECC to encode. + +```javascript +public enum DataMatrixVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the smallest size for DataMatrix. This is default value. | +| ROWS_COLUMNS | `1` | Instructs to get symbol sizes from Rows And Columns parameters. Note that DataMatrix does not support custom rows and columns numbers. This option is not recommended to use. | +| ECC000_9x9 | `2` | Specifies size of 9 x 9 modules for ECC000 type. | +| ECC000_050_11x11 | `3` | Specifies size of 11 x 11 modules for ECC000-ECC050 types. | +| ECC000_100_13x13 | `4` | Specifies size of 13 x 13 modules for ECC000-ECC100 types. | +| ECC000_100_15x15 | `5` | Specifies size of 15 x 15 modules for ECC000-ECC100 types. | +| ECC000_140_17x17 | `6` | Specifies size of 17 x 17 modules for ECC000-ECC140 types. | +| ECC000_140_19x19 | `7` | Specifies size of 19 x 19 modules for ECC000-ECC140 types. | +| ECC000_140_21x21 | `8` | Specifies size of 21 x 21 modules for ECC000-ECC140 types. | +| ECC000_140_23x23 | `9` | Specifies size of 23 x 23 modules for ECC000-ECC140 types. | +| ECC000_140_25x25 | `10` | Specifies size of 25 x 25 modules for ECC000-ECC140 types. | +| ECC000_140_27x27 | `11` | Specifies size of 27 x 27 modules for ECC000-ECC140 types. | +| ECC000_140_29x29 | `12` | Specifies size of 29 x 29 modules for ECC000-ECC140 types. | +| ECC000_140_31x31 | `13` | Specifies size of 31 x 31 modules for ECC000-ECC140 types. | +| ECC000_140_33x33 | `14` | Specifies size of 33 x 33 modules for ECC000-ECC140 types. | +| ECC000_140_35x35 | `15` | Specifies size of 35 x 35 modules for ECC000-ECC140 types. | +| ECC000_140_37x37 | `16` | Specifies size of 37 x 37 modules for ECC000-ECC140 types. | +| ECC000_140_39x39 | `17` | Specifies size of 39 x 39 modules for ECC000-ECC140 types. | +| ECC000_140_41x41 | `18` | Specifies size of 41 x 41 modules for ECC000-ECC140 types. | +| ECC000_140_43x43 | `19` | Specifies size of 43 x 43 modules for ECC000-ECC140 types. | +| ECC000_140_45x45 | `20` | Specifies size of 45 x 45 modules for ECC000-ECC140 types. | +| ECC000_140_47x47 | `21` | Specifies size of 47 x 47 modules for ECC000-ECC140 types. | +| ECC000_140_49x49 | `22` | Specifies size of 49 x 49 modules for ECC000-ECC140 types. | +| ECC200_10x10 | `23` | Specifies size of 10 x 10 modules for ECC200 type. | +| ECC200_12x12 | `24` | Specifies size of 12 x 12 modules for ECC200 type. | +| ECC200_14x14 | `25` | Specifies size of 14 x 14 modules for ECC200 type. | +| ECC200_16x16 | `26` | Specifies size of 16 x 16 modules for ECC200 type. | +| ECC200_18x18 | `27` | Specifies size of 18 x 18 modules for ECC200 type. | +| ECC200_20x20 | `28` | Specifies size of 20 x 20 modules for ECC200 type. | +| ECC200_22x22 | `29` | Specifies size of 22 x 22 modules for ECC200 type. | +| ECC200_24x24 | `30` | Specifies size of 24 x 24 modules for ECC200 type. | +| ECC200_26x26 | `31` | Specifies size of 26 x 26 modules for ECC200 type. | +| ECC200_32x32 | `32` | Specifies size of 32 x 32 modules for ECC200 type. | +| ECC200_36x36 | `33` | Specifies size of 36 x 36 modules for ECC200 type. | +| ECC200_40x40 | `34` | Specifies size of 40 x 40 modules for ECC200 type. | +| ECC200_44x44 | `35` | Specifies size of 44 x 44 modules for ECC200 type. | +| ECC200_48x48 | `36` | Specifies size of 48 x 48 modules for ECC200 type. | +| ECC200_52x52 | `37` | Specifies size of 52 x 52 modules for ECC200 type. | +| ECC200_64x64 | `38` | Specifies size of 64 x 64 modules for ECC200 type. | +| ECC200_72x72 | `39` | Specifies size of 72 x 72 modules for ECC200 type. | +| ECC200_80x80 | `40` | Specifies size of 80 x 80 modules for ECC200 type. | +| ECC200_88x88 | `41` | Specifies size of 88 x 88 modules for ECC200 type. | +| ECC200_96x96 | `42` | Specifies size of 96 x 96 modules for ECC200 type. | +| ECC200_104x104 | `43` | Specifies size of 104 x 104 modules for ECC200 type. | +| ECC200_120x120 | `44` | Specifies size of 120 x 120 modules for ECC200 type. | +| ECC200_132x132 | `45` | Specifies size of 132 x 132 modules for ECC200 type. | +| ECC200_144x144 | `46` | Specifies size of 144 x 144 modules for ECC200 type. | +| ECC200_8x18 | `47` | Specifies size of 8 x 18 modules for ECC200 type. | +| ECC200_8x32 | `48` | Specifies size of 8 x 32 modules for ECC200 type. | +| ECC200_12x26 | `49` | Specifies size of 12 x 26 modules for ECC200 type. | +| ECC200_12x36 | `50` | Specifies size of 12 x 36 modules for ECC200 type. | +| ECC200_16x36 | `51` | Specifies size of 16 x 36 modules for ECC200 type. | +| ECC200_16x48 | `52` | Specifies size of 16 x 48 modules for ECC200 type. | +| DMRE_8x48 | `53` | Specifies size of 8 x 48 modules for DMRE barcodes. | +| DMRE_8x64 | `54` | Specifies size of 8 x 64 modules for DMRE barcodes. | +| DMRE_8x80 | `55` | Specifies size of 8 x 80 modules for DMRE barcodes. | +| DMRE_8x96 | `56` | Specifies size of 8 x 96 modules for DMRE barcodes. | +| DMRE_8x120 | `57` | Specifies size of 8 x 120 modules for DMRE barcodes. | +| DMRE_8x144 | `58` | Specifies size of 8 x 144 modules for DMRE barcodes. | +| DMRE_12x64 | `59` | Specifies size of 12 x 64 modules for DMRE barcodes. | +| DMRE_12x88 | `60` | Specifies size of 12 x 88 modules for DMRE barcodes. | +| DMRE_16x64 | `61` | Specifies size of 16 x 64 modules for DMRE barcodes. | +| DMRE_20x36 | `62` | Specifies size of 20 x 36 modules for DMRE barcodes. | +| DMRE_20x44 | `63` | Specifies size of 20 x 44 modules for DMRE barcodes. | +| DMRE_20x64 | `64` | Specifies size of 20 x 64 modules for DMRE barcodes. | +| DMRE_22x48 | `65` | Specifies size of 22 x 48 modules for DMRE barcodes. | +| DMRE_24x48 | `66` | Specifies size of 24 x 48 modules for DMRE barcodes. | +| DMRE_24x64 | `67` | Specifies size of 24 x 64 modules for DMRE barcodes. | +| DMRE_26x40 | `68` | Specifies size of 26 x 40 modules for DMRE barcodes. | +| DMRE_26x48 | `69` | Specifies size of 26 x 48 modules for DMRE barcodes. | +| DMRE_26x64 | `70` | Specifies size of 26 x 64 modules for DMRE barcodes. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/decodetype/_index.md b/english/nodejs/decodetype/_index.md new file mode 100644 index 000000000..f1b21d197 --- /dev/null +++ b/english/nodejs/decodetype/_index.md @@ -0,0 +1,130 @@ +--- +title: "DecodeType Enum" +linktitle: "DecodeType" +articleTitle: "DecodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specify the type of barcode to read." +type: docs +weight: 1470 +url: /nodejs/decodetype/ +--- +## DecodeType enumeration + +Specify the type of barcode to read. + +```javascript +public enum DecodeType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `-1` | Unspecified decode type. | +| CODABAR | `0` | Specifies that the data should be decoded with {@code CODABAR} barcode specification | +| CODE_11 | `1` | Specifies that the data should be decoded with {@code CODE 11} barcode specification | +| CODE_39 | `2` | Specifies that the data should be decoded with {@code Code 39} basic charset barcode specification: ISO/IEC 16388 | +| CODE_39_FULL_ASCII | `3` | Specifies that the data should be decoded with {@code Code 39} full ASCII charset barcode specification: ISO/IEC 16388 | +| CODE_93 | `5` | Specifies that the data should be decoded with {@code CODE 93} barcode specification | +| CODE_128 | `6` | Specifies that the data should be decoded with {@code CODE 128} barcode specification | +| GS_1_CODE_128 | `7` | Specifies that the data should be decoded with {@code GS1 CODE 128} barcode specification | +| EAN_8 | `8` | Specifies that the data should be decoded with {@code EAN-8} barcode specification | +| EAN_13 | `9` | Specifies that the data should be decoded with {@code EAN-13} barcode specification | +| EAN_14 | `10` | Specifies that the data should be decoded with {@code EAN14} barcode specification | +| SCC_14 | `11` | Specifies that the data should be decoded with {@code SCC14} barcode specification | +| SSCC_18 | `12` | Specifies that the data should be decoded with {@code SSCC18} barcode specification | +| UPCA | `13` | Specifies that the data should be decoded with {@code UPC-A} barcode specification | +| UPCE | `14` | Specifies that the data should be decoded with {@code UPC-E} barcode specification | +| ISBN | `15` | Specifies that the data should be decoded with {@code ISBN} barcode specification | +| STANDARD_2_OF_5 | `16` | Specifies that the data should be decoded with {@code Standard 2 of 5} barcode specification | +| INTERLEAVED_2_OF_5 | `17` | Specifies that the data should be decoded with {@code INTERLEAVED 2 of 5} barcode specification | +| MATRIX_2_OF_5 | `18` | Specifies that the data should be decoded with {@code Matrix 2 of 5} barcode specification | +| ITALIAN_POST_25 | `19` | Specifies that the data should be decoded with {@code Italian Post 25} barcode specification | +| IATA_2_OF_5 | `20` | Specifies that the data should be decoded with {@code IATA 2 of 5} barcode specification. IATA (International Air Transport Association) uses this barcode for the management of air cargo. | +| ITF_14 | `21` | Specifies that the data should be decoded with {@code ITF14} barcode specification | +| ITF_6 | `22` | Specifies that the data should be decoded with {@code ITF6} barcode specification | +| MSI | `23` | Specifies that the data should be decoded with {@code MSI Plessey} barcode specification | +| VIN | `24` | Specifies that the data should be decoded with {@code VIN} (Vehicle Identification Number) barcode specification | +| DEUTSCHE_POST_IDENTCODE | `25` | Specifies that the data should be decoded with {@code DeutschePost Ident code} barcode specification | +| DEUTSCHE_POST_LEITCODE | `26` | Specifies that the data should be decoded with {@code DeutschePost Leit code} barcode specification | +| OPC | `27` | Specifies that the data should be decoded with {@code OPC} barcode specification | +| PZN | `28` | Specifies that the data should be decoded with {@code PZN} barcode specification. This symbology is also known as Pharma Zentral Nummer | +| PHARMACODE | `29` | Specifies that the data should be decoded with {@code Pharmacode} barcode. This symbology is also known as Pharmaceutical BINARY Code | +| DATA_MATRIX | `30` | Specifies that the data should be decoded with {@code DataMatrix} barcode symbology | +| GS_1_DATA_MATRIX | `31` | Specifies that the data should be decoded with {@code GS1DataMatrix} barcode symbology | +| QR | `32` | Specifies that the data should be decoded with {@code QR Code} barcode specification | +| AZTEC | `33` | Specifies that the data should be decoded with {@code Aztec} barcode specification | +| GS_1_AZTEC | `81` | Specifies that the data should be decoded with {@code GS1 Aztec} barcode specification | +| PDF_417 | `34` | Specifies that the data should be decoded with {@code Pdf417} barcode symbology | +| MACRO_PDF_417 | `35` | Specifies that the data should be decoded with {@code MacroPdf417} barcode specification | +| MICRO_PDF_417 | `36` | Specifies that the data should be decoded with {@code MicroPdf417} barcode specification | +| GS_1_MICRO_PDF_417 | `82` | Specifies that the data should be decoded with MicroPdf417 barcode specification | +| CODABLOCK_F | `65` | Specifies that the data should be decoded with {@code CodablockF} barcode specification | +| MAILMARK | `66` | Specifies that the data should be decoded with Royal Mail Mailmark barcode specification. | +| AUSTRALIA_POST | `37` | Specifies that the data should be decoded with {@code Australia Post} barcode specification | +| POSTNET | `38` | Specifies that the data should be decoded with {@code Postnet} barcode specification | +| PLANET | `39` | Specifies that the data should be decoded with {@code Planet} barcode specification | +| ONE_CODE | `40` | Specifies that the data should be decoded with USPS {@code OneCode} barcode specification | +| RM_4_SCC | `41` | Specifies that the data should be decoded with {@code RM4SCC} barcode specification. RM4SCC (Royal Mail 4-state Customer Code) is used for automated mail sort process in UK. | +| DATABAR_OMNI_DIRECTIONAL | `42` | Specifies that the data should be decoded with {@code GS1 DATABAR omni-directional} barcode specification | +| DATABAR_TRUNCATED | `43` | Specifies that the data should be decoded with {@code GS1 DATABAR truncated} barcode specification | +| DATABAR_LIMITED | `44` | Specifies that the data should be decoded with {@code GS1 DATABAR limited} barcode specification | +| DATABAR_EXPANDED | `45` | Specifies that the data should be decoded with {@code GS1 DATABAR expanded} barcode specification | +| DATABAR_STACKED_OMNI_DIRECTIONAL | `53` | Specifies that the data should be decoded with {@code GS1 DATABAR stacked omni-directional} barcode specification | +| DATABAR_STACKED | `54` | Specifies that the data should be decoded with {@code GS1 DATABAR stacked} barcode specification | +| DATABAR_EXPANDED_STACKED | `55` | Specifies that the data should be decoded with {@code GS1 DATABAR expanded stacked} barcode specification | +| PATCH_CODE | `46` | Specifies that the data should be decoded with {@code Patch code} barcode specification. Barcode symbology is used for automated scanning | +| ISSN | `47` | Specifies that the data should be decoded with {@code ISSN} barcode specification | +| ISMN | `48` | Specifies that the data should be decoded with {@code ISMN} barcode specification | +| SUPPLEMENT | `49` | Specifies that the data should be decoded with {@code Supplement(EAN2, EAN5)} barcode specification | +| AUSTRALIAN_POSTE_PARCEL | `50` | Specifies that the data should be decoded with {@code Australian Post Domestic eParcel Barcode} barcode specification | +| SWISS_POST_PARCEL | `51` | Specifies that the data should be decoded with {@code Swiss Post Parcel Barcode} barcode specification | +| CODE_16_K | `52` | Specifies that the data should be decoded with {@code SCode16K} barcode specification | +| MICRO_QR | `56` | Specifies that the data should be decoded with {@code MicroQR Code} barcode specification | +| RECT_MICRO_QR | `83` | Specifies that the data should be decoded with RectMicroQR (rMQR) Code barcode specification | +| COMPACT_PDF_417 | `57` | Specifies that the data should be decoded with {@code CompactPdf417} (Pdf417Truncated) barcode specification | +| GS_1_QR | `58` | Specifies that the data should be decoded with {@code GS1 QR} barcode specification | +| MAXI_CODE | `59` | Specifies that the data should be decoded with {@code MaxiCode} barcode specification | +| MICR_E_13_B | `60` | Specifies that the data should be decoded with {@code MICR E-13B} blank specification | +| CODE_32 | `61` | Specifies that the data should be decoded with {@code Code32} blank specification | +| DATA_LOGIC_2_OF_5 | `62` | Specifies that the data should be decoded with {@code DataLogic 2 of 5} blank specification | +| DOT_CODE | `63` | Specifies that the data should be decoded with {@code DotCode} blank specification | +| GS_1_DOT_CODE | `77` | Specifies that the data should be decoded with {@code GS1 DotCode} blank specification | +| DUTCH_KIX | `64` | Specifies that the data should be decoded with {@code DotCode} blank specification | +| HIBC_CODE_39_LIC | `67` | Specifies that the data should be decoded with {@code HIBC LIC Code39} blank specification | +| HIBC_CODE_128_LIC | `68` | Specifies that the data should be decoded with {@code HIBC LIC Code128} blank specification | +| HIBC_AZTEC_LIC | `69` | Specifies that the data should be decoded with {@code HIBC LIC Aztec} blank specification | +| HIBC_DATA_MATRIX_LIC | `70` | Specifies that the data should be decoded with {@code HIBC LIC DataMatrix} blank specification | +| HIBCQRLIC | `71` | Specifies that the data should be decoded with {@code HIBC LIC QR} blank specification | +| HIBC_CODE_39_PAS | `72` | Specifies that the data should be decoded with {@code HIBC PAS Code39} blank specification | +| HIBC_CODE_128_PAS | `73` | Specifies that the data should be decoded with {@code HIBC PAS Code128} blank specification | +| HIBC_AZTEC_PAS | `74` | Specifies that the data should be decoded with {@code HIBC PAS Aztec} blank specification | +| HIBC_DATA_MATRIX_PAS | `75` | Specifies that the data should be decoded with {@code HIBC PAS DataMatrix} blank specification | +| HIBCQRPAS | `76` | Specifies that the data should be decoded with {@code HIBC PAS QR} blank specification | +| HAN_XIN | `78` | Specifies that the data should be decoded with Han Xin Code blank specification | +| GS_1_HAN_XIN | `79` | Specifies that the data should be decoded with Han Xin Code blank specification | +| GS_1_COMPOSITE_BAR | `80` | Specifies that the data should be decoded with {@code GS1 Composite Bar} barcode specification | +| TYPES_1D | `97` | Specifies that data will be checked with all of 1D barcode symbologies | +| POSTAL_TYPES | `95` | Specifies that data will be checked with all of 1.5D POSTAL barcode symbologies, like Planet, Postnet, AustraliaPost, OneCode, RM4SCC, DutchKIX | +| MOST_COMMON_TYPES | `96` | Specifies that data will be checked with most commonly used symbologies | +| TYPES_2D | `98` | Specifies that data will be checked with all of 2D barcode symbologies | +| ALL_SUPPORTED_TYPES | `99` | Specifies that data will be checked with all available symbologies | + +## Examples + +```javascript +//This sample shows how to detect Code39 and Code128 barcodes. +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/deconvolutionmode/_index.md b/english/nodejs/deconvolutionmode/_index.md new file mode 100644 index 000000000..350ff5d37 --- /dev/null +++ b/english/nodejs/deconvolutionmode/_index.md @@ -0,0 +1,30 @@ +--- +title: "DeconvolutionMode Enum" +linktitle: "DeconvolutionMode" +articleTitle: "DeconvolutionMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (co..." +type: docs +weight: 1520 +url: /nodejs/deconvolutionmode/ +--- +## DeconvolutionMode enumeration + +Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the image, we have to check most well know functions like sharp or mathematical morphology. + +```javascript +public enum DeconvolutionMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| FAST | `0` | Enables fast deconvolution methods for high quality images. | +| NORMAL | `1` | Enables normal deconvolution methods for common images. | +| SLOW | `2` | Enables slow deconvolution methods for low quality images. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dotcodeencodemode/_index.md b/english/nodejs/dotcodeencodemode/_index.md new file mode 100644 index 000000000..b748672f7 --- /dev/null +++ b/english/nodejs/dotcodeencodemode/_index.md @@ -0,0 +1,88 @@ +--- +title: "DotCodeEncodeMode Enum" +linktitle: "DotCodeEncodeMode" +articleTitle: "DotCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for DotCode barcodes." +type: docs +weight: 1150 +url: /nodejs/dotcodeencodemode/ +--- +## DotCodeEncodeMode enumeration + +Encoding mode for DotCode barcodes. + +```javascript +public enum DotCodeEncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. | +| BYTES | `1` | Encode codetext as plain bytes. If it detects any Unicode character, the character will be encoded as two bytes, lower byte first. | +| EXTENDED_CODETEXT | `2` | Extended mode which supports multi ECI modes. It is better to use DotCodeExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | +| BINARY | `3` | In Binary mode, the CodeText is encoded with maximum data compactness. If a Unicode character is found, an exception is thrown. | +| ECI | `4` | In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. | +| EXTENDED | `5` | Extended mode which supports multi ECI modes. It is better to use DotCodeExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | + +## Examples + +```javascript +//Auto mode with macros +let codetext = ""[)>\u001E05\u001DCodetextWithMacros05\u001E\u0004""; +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +generator.save("test.bmp", BarCodeImageFormat.BMP); +``` + +```javascript +//Auto mode +let codetext = "犬Right狗"; +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +generator.getParameters().getBarcode().getDotCode().setECIEncoding(ECIEncodings.UTF8); +generator.save("test.bmp", BarCodeImageFormat.BMP); +``` + +```javascript +//Bytes mode +let encodedArr = array( 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 ); +//encode array to string +let codetext = ""; +for(let i = 0; i < encodedArr.length; i++) +{ +let bval = encodedArr[i]; +codetext += bval; +}; +``` + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.BYTES); +generator.save("test.bmp", BarCodeImageFormat.BMP); +``` + +```javascript +//Extended codetext mode +//create codetext +let textBuilder = new DotCodeExtCodetextBuilder(); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addFNC3SymbolSeparator(); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +//generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.EXTENDED_CODETEXT); +generator.save("test.bmp", BarCodeImageFormat.BMP); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/_index.md b/english/nodejs/dotcodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..7492730ab --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/_index.md @@ -0,0 +1,72 @@ +--- +title: "DotCodeExtCodetextBuilder Class" +linktitle: "DotCodeExtCodetextBuilder" +articleTitle: "DotCodeExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended codetext generator for 2D DotCode barcodes for ExtendedCodetext Mode of DotCodeEncodeMode." +type: docs +weight: 740 +url: /nodejs/dotcodeextcodetextbuilder/ +--- +## DotCodeExtCodetextBuilder class + +Extended codetext generator for 2D DotCode barcodes for ExtendedCodetext Mode of DotCodeEncodeMode + +```javascript +public class DotCodeExtCodetextBuilder : ExtCodetextBuilder +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DotCodeExtCodetextBuilder](./dotcodeextcodetextbuilder/#constructor) | Initializes a new instance of the DotCodeExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addECICodetext](../extcodetextbuilder/addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. *(Inherited from ExtCodetextBuilder)* | +| [addFNC1FormatIdentifier](./addfnc1formatidentifier/) | Adds FNC1 format identifier to the extended codetext items. | +| [addFNC3ReaderInitialization](./addfnc3readerinitialization/) | Adds FNC3 reader initialization to the extended codetext items. | +| [addFNC3SymbolSeparator](./addfnc3symbolseparator/) | Adds FNC3 symbol separator to the extended codetext items. | +| [addPlainCodetext](../extcodetextbuilder/addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [addStructuredAppendMode](./addstructuredappendmode/)(*object, object*) | Adds structured append mode to the extended codetext items. | +| [clear](../extcodetextbuilder/clear/) | Clears extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [getExtendedCodetext](./getextendedcodetext/) | Generates Extended codetext from the extended codetext list. | +| [init](./init/) | | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +## Examples + +```javascript +//Extended codetext mode +//create codetext +let textBuilder = new DotCodeExtCodetextBuilder(); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addFNC1FormatIdentifier(); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +textBuilder.addFNC3SymbolSeparator(); +textBuilder.addFNC3ReaderInitialization(); +textBuilder.addPlainCodetext("Reader initialization info"); +//generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, codetext); +generator.getParameters().getBarcode().getDotCode().setDotCodeEncodeMode(DotCodeEncodeMode.EXTENDED_CODETEXT); +generator.save("test.bmp", BarCodeImageFormat.BMP); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/addfnc1formatidentifier/_index.md b/english/nodejs/dotcodeextcodetextbuilder/addfnc1formatidentifier/_index.md new file mode 100644 index 000000000..df5ad1175 --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/addfnc1formatidentifier/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtCodetextBuilder.addFNC1FormatIdentifier" +linktitle: "addFNC1FormatIdentifier" +articleTitle: "addFNC1FormatIdentifier" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds FNC1 format identifier to the extended codetext items." +type: docs +weight: 40 +url: /nodejs/dotcodeextcodetextbuilder/addfnc1formatidentifier/ +--- +## addFNC1FormatIdentifier() {#addfnc1formatidentifier} + +Adds FNC1 format identifier to the extended codetext items + +```javascript +addFNC1FormatIdentifier() +``` + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/addfnc3readerinitialization/_index.md b/english/nodejs/dotcodeextcodetextbuilder/addfnc3readerinitialization/_index.md new file mode 100644 index 000000000..cc2e98f45 --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/addfnc3readerinitialization/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtCodetextBuilder.addFNC3ReaderInitialization" +linktitle: "addFNC3ReaderInitialization" +articleTitle: "addFNC3ReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds FNC3 reader initialization to the extended codetext items." +type: docs +weight: 60 +url: /nodejs/dotcodeextcodetextbuilder/addfnc3readerinitialization/ +--- +## addFNC3ReaderInitialization() {#addfnc3readerinitialization} + +Adds FNC3 reader initialization to the extended codetext items + +```javascript +addFNC3ReaderInitialization() +``` + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/addfnc3symbolseparator/_index.md b/english/nodejs/dotcodeextcodetextbuilder/addfnc3symbolseparator/_index.md new file mode 100644 index 000000000..553a3388d --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/addfnc3symbolseparator/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtCodetextBuilder.addFNC3SymbolSeparator" +linktitle: "addFNC3SymbolSeparator" +articleTitle: "addFNC3SymbolSeparator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds FNC3 symbol separator to the extended codetext items." +type: docs +weight: 50 +url: /nodejs/dotcodeextcodetextbuilder/addfnc3symbolseparator/ +--- +## addFNC3SymbolSeparator() {#addfnc3symbolseparator} + +Adds FNC3 symbol separator to the extended codetext items + +```javascript +addFNC3SymbolSeparator() +``` + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/addstructuredappendmode/_index.md b/english/nodejs/dotcodeextcodetextbuilder/addstructuredappendmode/_index.md new file mode 100644 index 000000000..5b11c9416 --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/addstructuredappendmode/_index.md @@ -0,0 +1,28 @@ +--- +title: "DotCodeExtCodetextBuilder.addStructuredAppendMode" +linktitle: "addStructuredAppendMode" +articleTitle: "addStructuredAppendMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds structured append mode to the extended codetext items." +type: docs +weight: 70 +url: /nodejs/dotcodeextcodetextbuilder/addstructuredappendmode/ +--- +## addStructuredAppendMode(object, object) {#addstructuredappendmode} + +Adds structured append mode to the extended codetext items + +```javascript +addStructuredAppendMode(barcodeId, barcodesCount) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| barcodeId | object | ID of barcode | +| barcodesCount | object | Barcodes count | + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/dotcodeextcodetextbuilder/_index.md b/english/nodejs/dotcodeextcodetextbuilder/dotcodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..d018f31ea --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/dotcodeextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtCodetextBuilder" +linktitle: "DotCodeExtCodetextBuilder" +articleTitle: "DotCodeExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DotCodeExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/dotcodeextcodetextbuilder/dotcodeextcodetextbuilder/ +--- +## DotCodeExtCodetextBuilder() {#constructor} + +Initializes a new instance of the DotCodeExtCodetextBuilder class. + +```javascript +public DotCodeExtCodetextBuilder() +``` + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/dotcodeextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..57bf09b7e --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates Extended codetext from the extended codetext list." +type: docs +weight: 80 +url: /nodejs/dotcodeextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generates Extended codetext from the extended codetext list. + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Extended + +codetext as string + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextcodetextbuilder/init/_index.md b/english/nodejs/dotcodeextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..2fe6da3fa --- /dev/null +++ b/english/nodejs/dotcodeextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/dotcodeextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DotCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/_index.md b/english/nodejs/dotcodeextendedparameters/_index.md new file mode 100644 index 000000000..047d6f9c6 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/_index.md @@ -0,0 +1,60 @@ +--- +title: "DotCodeExtendedParameters Class" +linktitle: "DotCodeExtendedParameters" +articleTitle: "DotCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of DotCode recognized barcode." +type: docs +weight: 1420 +url: /nodejs/dotcodeextendedparameters/ +--- +## DotCodeExtendedParameters class + +Stores special data of DotCode recognized barcode + +```javascript +public class DotCodeExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DotCodeExtendedParameters](./dotcodeextendedparameters/#constructor)(*object*) | Initializes a new instance of the DotCodeExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified DotCodeExtendedParameters value. | +| [getDotCodeIsReaderInitialization](./getdotcodeisreaderinitialization/) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. | +| [getDotCodeStructuredAppendModeBarcodeId](./getdotcodestructuredappendmodebarcodeid/) | | +| [getDotCodeStructuredAppendModeBarcodesCount](./getdotcodestructuredappendmodebarcodescount/) | | +| [getStructuredAppendModeBarcodeId](./getstructuredappendmodebarcodeid/) | Value: The ID of the DotCode structured append mode barcode. | +| [getStructuredAppendModeBarcodesCount](./getstructuredappendmodebarcodescount/) | Value: The count of the DotCode structured append mode barcode. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isReaderInitialization](./isreaderinitialization/) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. | +| [toString](./tostring/) | Returns a human-readable string representation of this DotCodeExtendedParameters. | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.DOT_CODE, "12345"); +generator.save("c:\\test.png", BarCodeImageFormat.PNG); +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.DOT_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +print("BarCode type: " + result.getCodeTypeName()); +print("BarCode codetext: " + result.getCodeText()); +print("DotCode barcode ID: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodeId()); +print("DotCode barcodes count: " + result.getExtended().getDotCode().getDotCodeStructuredAppendModeBarcodesCount()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dotcodeextendedparameters/dotcodeextendedparameters/_index.md b/english/nodejs/dotcodeextendedparameters/dotcodeextendedparameters/_index.md new file mode 100644 index 000000000..c7c419394 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/dotcodeextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeExtendedParameters" +linktitle: "DotCodeExtendedParameters" +articleTitle: "DotCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DotCodeExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/dotcodeextendedparameters/dotcodeextendedparameters/ +--- +## DotCodeExtendedParameters(object) {#constructor} + +Initializes a new instance of the DotCodeExtendedParameters class. + +```javascript +public DotCodeExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/equals/_index.md b/english/nodejs/dotcodeextendedparameters/equals/_index.md new file mode 100644 index 000000000..4bb460a58 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "DotCodeExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified DotCodeExtendedParameters value." +type: docs +weight: 80 +url: /nodejs/dotcodeextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `DotCodeExtendedParameters` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/getdotcodeisreaderinitialization/_index.md b/english/nodejs/dotcodeextendedparameters/getdotcodeisreaderinitialization/_index.md new file mode 100644 index 000000000..a0f332a48 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/getdotcodeisreaderinitialization/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeExtendedParameters.getDotCodeIsReaderInitialization" +linktitle: "getDotCodeIsReaderInitialization" +articleTitle: "getDotCodeIsReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader..." +type: docs +weight: 70 +url: /nodejs/dotcodeextendedparameters/getdotcodeisreaderinitialization/ +--- +## getDotCodeIsReaderInitialization() {#getdotcodeisreaderinitialization} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the isReaderInitialization(). + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. + +```javascript +getDotCodeIsReaderInitialization() +``` + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..448cf06d0 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeExtendedParameters.getDotCodeStructuredAppendModeBarcodeId" +linktitle: "getDotCodeStructuredAppendModeBarcodeId" +articleTitle: "getDotCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodeid/ +--- +## getDotCodeStructuredAppendModeBarcodeId() {#getdotcodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId(). + + + +```javascript +getDotCodeStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..a8169aae3 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeExtendedParameters.getDotCodeStructuredAppendModeBarcodesCount" +linktitle: "getDotCodeStructuredAppendModeBarcodesCount" +articleTitle: "getDotCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/dotcodeextendedparameters/getdotcodestructuredappendmodebarcodescount/ +--- +## getDotCodeStructuredAppendModeBarcodesCount() {#getdotcodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount(). + + + +```javascript +getDotCodeStructuredAppendModeBarcodesCount() +``` + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..3f6ab975b --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeExtendedParameters.getStructuredAppendModeBarcodeId" +linktitle: "getStructuredAppendModeBarcodeId" +articleTitle: "getStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Value: The ID of the DotCode structured append mode barcode." +type: docs +weight: 40 +url: /nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodeid/ +--- +## getStructuredAppendModeBarcodeId() {#getstructuredappendmodebarcodeid} + +Value: The ID of the DotCode structured append mode barcode. + +```javascript +getStructuredAppendModeBarcodeId() +``` + +### Return Value + +the + +ID of the DotCode structured append mode barcode. + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..3d3341b14 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeExtendedParameters.getStructuredAppendModeBarcodesCount" +linktitle: "getStructuredAppendModeBarcodesCount" +articleTitle: "getStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Value: The count of the DotCode structured append mode barcode." +type: docs +weight: 20 +url: /nodejs/dotcodeextendedparameters/getstructuredappendmodebarcodescount/ +--- +## getStructuredAppendModeBarcodesCount() {#getstructuredappendmodebarcodescount} + +Value: The count of the DotCode structured append mode barcode. + +```javascript +getStructuredAppendModeBarcodesCount() +``` + +### Return Value + +the + +DotCode structured append mode barcodes count. + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/hashcode/_index.md b/english/nodejs/dotcodeextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..a73e78fe7 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 90 +url: /nodejs/dotcodeextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/init/_index.md b/english/nodejs/dotcodeextendedparameters/init/_index.md new file mode 100644 index 000000000..c680522ff --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 110 +url: /nodejs/dotcodeextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/isreaderinitialization/_index.md b/english/nodejs/dotcodeextendedparameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..b5566ce32 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/isreaderinitialization/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeExtendedParameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader..." +type: docs +weight: 60 +url: /nodejs/dotcodeextendedparameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. Default value is false. + +```javascript +isReaderInitialization() +``` + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeextendedparameters/tostring/_index.md b/english/nodejs/dotcodeextendedparameters/tostring/_index.md new file mode 100644 index 000000000..6d48c2d22 --- /dev/null +++ b/english/nodejs/dotcodeextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DotCodeExtendedParameters." +type: docs +weight: 100 +url: /nodejs/dotcodeextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `DotCodeExtendedParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [DotCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/_index.md b/english/nodejs/dotcodeparameters/_index.md new file mode 100644 index 000000000..b64201912 --- /dev/null +++ b/english/nodejs/dotcodeparameters/_index.md @@ -0,0 +1,57 @@ +--- +title: "DotCodeParameters Class" +linktitle: "DotCodeParameters" +articleTitle: "DotCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DotCode parameters." +type: docs +weight: 590 +url: /nodejs/dotcodeparameters/ +--- +## DotCodeParameters class + +DotCode parameters. + +```javascript +public class DotCodeParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [DotCodeParameters](./dotcodeparameters/#constructor)(*object*) | Initializes a new instance of the DotCodeParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getColumns](./getcolumns/) | Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5. | +| [getDotCodeEncodeMode](./getdotcodeencodemode/) | Identifies DotCode encode mode. Default value: Auto. | +| [getDotCodeStructuredAppendModeBarcodeId](./getdotcodestructuredappendmodebarcodeid/) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [getDotCodeStructuredAppendModeBarcodesCount](./getdotcodestructuredappendmodebarcodescount/) | Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. | +| [getECIEncoding](./geteciencoding/) | Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO. | +| [getEncodeMode](./getencodemode/) | Identifies DotCode encode mode. Default value: Auto. | +| [getRows](./getrows/) | Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. | +| [getStructuredAppendModeBarcodeId](./getstructuredappendmodebarcodeid/) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [getStructuredAppendModeBarcodesCount](./getstructuredappendmodebarcodescount/) | Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. | +| [init](./init/) | | +| [isReaderInitialization](./isreaderinitialization/) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setColumns](./setcolumns/)(*object*) | Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5. | +| [setDotCodeEncodeMode](./setdotcodeencodemode/)(*object*) | Identifies DotCode encode mode. | +| [setDotCodeStructuredAppendModeBarcodeId](./setdotcodestructuredappendmodebarcodeid/)(*object*) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [setDotCodeStructuredAppendModeBarcodesCount](./setdotcodestructuredappendmodebarcodescount/)(*object*) | Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. | +| [setECIEncoding](./seteciencoding/)(*object*) | Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO. Default value: ISO-8859-1. | +| [setEncodeMode](./setencodemode/)(*object*) | Identifies DotCode encode mode. Default value: Auto. | +| [setReaderInitialization](./setreaderinitialization/)(*object*) | Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. | +| [setRows](./setrows/)(*object*) | Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. | +| [setStructuredAppendModeBarcodeId](./setstructuredappendmodebarcodeid/)(*object*) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [setStructuredAppendModeBarcodesCount](./setstructuredappendmodebarcodescount/)(*object*) | Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. | +| [toString](./tostring/) | Returns a human-readable string representation of this DotCodeParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/dotcodeparameters/dotcodeparameters/_index.md b/english/nodejs/dotcodeparameters/dotcodeparameters/_index.md new file mode 100644 index 000000000..473b308d4 --- /dev/null +++ b/english/nodejs/dotcodeparameters/dotcodeparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters" +linktitle: "DotCodeParameters" +articleTitle: "DotCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the DotCodeParameters class." +type: docs +weight: 10 +url: /nodejs/dotcodeparameters/dotcodeparameters/ +--- +## DotCodeParameters(object) {#constructor} + +Initializes a new instance of the DotCodeParameters class. + +```javascript +public DotCodeParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getaspectratio/_index.md b/english/nodejs/dotcodeparameters/getaspectratio/_index.md new file mode 100644 index 000000000..994fc072f --- /dev/null +++ b/english/nodejs/dotcodeparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 230 +url: /nodejs/dotcodeparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getcolumns/_index.md b/english/nodejs/dotcodeparameters/getcolumns/_index.md new file mode 100644 index 000000000..a3eea3ae6 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getcolumns/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getColumns" +linktitle: "getColumns" +articleTitle: "getColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5." +type: docs +weight: 210 +url: /nodejs/dotcodeparameters/getcolumns/ +--- +## getColumns() {#getcolumns} + +Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5. + +```javascript +getColumns() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getdotcodeencodemode/_index.md b/english/nodejs/dotcodeparameters/getdotcodeencodemode/_index.md new file mode 100644 index 000000000..2aa68e677 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getdotcodeencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeParameters.getDotCodeEncodeMode" +linktitle: "getDotCodeEncodeMode" +articleTitle: "getDotCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode encode mode. Default value: Auto." +type: docs +weight: 30 +url: /nodejs/dotcodeparameters/getdotcodeencodemode/ +--- +## getDotCodeEncodeMode() {#getdotcodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Identifies DotCode encode mode. Default value: Auto. + +```javascript +getDotCodeEncodeMode() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..9958fd168 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeParameters.getDotCodeStructuredAppendModeBarcodeId" +linktitle: "getDotCodeStructuredAppendModeBarcodeId" +articleTitle: "getDotCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 110 +url: /nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodeid/ +--- +## getDotCodeStructuredAppendModeBarcodeId() {#getdotcodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId(). + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +getDotCodeStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..f3c585ec0 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,25 @@ +--- +title: "DotCodeParameters.getDotCodeStructuredAppendModeBarcodesCount" +linktitle: "getDotCodeStructuredAppendModeBarcodesCount" +articleTitle: "getDotCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35." +type: docs +weight: 150 +url: /nodejs/dotcodeparameters/getdotcodestructuredappendmodebarcodescount/ +--- +## getDotCodeStructuredAppendModeBarcodesCount() {#getdotcodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount(). + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +```javascript +getDotCodeStructuredAppendModeBarcodesCount() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/geteciencoding/_index.md b/english/nodejs/dotcodeparameters/geteciencoding/_index.md new file mode 100644 index 000000000..9b9976587 --- /dev/null +++ b/english/nodejs/dotcodeparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO." +type: docs +weight: 170 +url: /nodejs/dotcodeparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO. + +```javascript +getECIEncoding() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getencodemode/_index.md b/english/nodejs/dotcodeparameters/getencodemode/_index.md new file mode 100644 index 000000000..b7b99f4f3 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode encode mode. Default value: Auto." +type: docs +weight: 50 +url: /nodejs/dotcodeparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Identifies DotCode encode mode. Default value: Auto. + +```javascript +getEncodeMode() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getrows/_index.md b/english/nodejs/dotcodeparameters/getrows/_index.md new file mode 100644 index 000000000..ff1b095a4 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getrows/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getRows" +linktitle: "getRows" +articleTitle: "getRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5." +type: docs +weight: 190 +url: /nodejs/dotcodeparameters/getrows/ +--- +## getRows() {#getrows} + +Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. + +```javascript +getRows() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..4fd569582 --- /dev/null +++ b/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getStructuredAppendModeBarcodeId" +linktitle: "getStructuredAppendModeBarcodeId" +articleTitle: "getStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 90 +url: /nodejs/dotcodeparameters/getstructuredappendmodebarcodeid/ +--- +## getStructuredAppendModeBarcodeId() {#getstructuredappendmodebarcodeid} + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +getStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..2a74474dd --- /dev/null +++ b/english/nodejs/dotcodeparameters/getstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.getStructuredAppendModeBarcodesCount" +linktitle: "getStructuredAppendModeBarcodesCount" +articleTitle: "getStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35." +type: docs +weight: 130 +url: /nodejs/dotcodeparameters/getstructuredappendmodebarcodescount/ +--- +## getStructuredAppendModeBarcodesCount() {#getstructuredappendmodebarcodescount} + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +```javascript +getStructuredAppendModeBarcodesCount() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/init/_index.md b/english/nodejs/dotcodeparameters/init/_index.md new file mode 100644 index 000000000..e29d1c4cb --- /dev/null +++ b/english/nodejs/dotcodeparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/dotcodeparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/isreaderinitialization/_index.md b/english/nodejs/dotcodeparameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..57e4823d5 --- /dev/null +++ b/english/nodejs/dotcodeparameters/isreaderinitialization/_index.md @@ -0,0 +1,23 @@ +--- +title: "DotCodeParameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader." +type: docs +weight: 70 +url: /nodejs/dotcodeparameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. + +```javascript +isReaderInitialization() +``` + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setaspectratio/_index.md b/english/nodejs/dotcodeparameters/setaspectratio/_index.md new file mode 100644 index 000000000..59042999e --- /dev/null +++ b/english/nodejs/dotcodeparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 240 +url: /nodejs/dotcodeparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setcolumns/_index.md b/english/nodejs/dotcodeparameters/setcolumns/_index.md new file mode 100644 index 000000000..3bebe0a07 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setcolumns/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setColumns" +linktitle: "setColumns" +articleTitle: "setColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5." +type: docs +weight: 220 +url: /nodejs/dotcodeparameters/setcolumns/ +--- +## setColumns(object) {#setcolumns} + +Identifies columns count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of columns must be at least 5. + +```javascript +setColumns(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setdotcodeencodemode/_index.md b/english/nodejs/dotcodeparameters/setdotcodeencodemode/_index.md new file mode 100644 index 000000000..a4d7cad81 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setdotcodeencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeParameters.setDotCodeEncodeMode" +linktitle: "setDotCodeEncodeMode" +articleTitle: "setDotCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode encode mode." +type: docs +weight: 40 +url: /nodejs/dotcodeparameters/setdotcodeencodemode/ +--- +## setDotCodeEncodeMode(object) {#setdotcodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Identifies DotCode encode mode. + +```javascript +setDotCodeEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..c44bb12e6 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeParameters.setDotCodeStructuredAppendModeBarcodeId" +linktitle: "setDotCodeStructuredAppendModeBarcodeId" +articleTitle: "setDotCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 120 +url: /nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodeid/ +--- +## setDotCodeStructuredAppendModeBarcodeId(object) {#setdotcodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodeId(). + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +setDotCodeStructuredAppendModeBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..9f2a97fca --- /dev/null +++ b/english/nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeParameters.setDotCodeStructuredAppendModeBarcodesCount" +linktitle: "setDotCodeStructuredAppendModeBarcodesCount" +articleTitle: "setDotCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35." +type: docs +weight: 160 +url: /nodejs/dotcodeparameters/setdotcodestructuredappendmodebarcodescount/ +--- +## setDotCodeStructuredAppendModeBarcodesCount(object) {#setdotcodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodesCount(). + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +```javascript +setDotCodeStructuredAppendModeBarcodesCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/seteciencoding/_index.md b/english/nodejs/dotcodeparameters/seteciencoding/_index.md new file mode 100644 index 000000000..e409f7c19 --- /dev/null +++ b/english/nodejs/dotcodeparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO. Default value: ISO-8859-1." +type: docs +weight: 180 +url: /nodejs/dotcodeparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Identifies ECI encoding. Used when DotCodeEncodeMode is AUTO. Default value: ISO-8859-1 + +```javascript +setECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setencodemode/_index.md b/english/nodejs/dotcodeparameters/setencodemode/_index.md new file mode 100644 index 000000000..7d8dcbdfc --- /dev/null +++ b/english/nodejs/dotcodeparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode encode mode. Default value: Auto." +type: docs +weight: 60 +url: /nodejs/dotcodeparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Identifies DotCode encode mode. Default value: Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setreaderinitialization/_index.md b/english/nodejs/dotcodeparameters/setreaderinitialization/_index.md new file mode 100644 index 000000000..52c0ff6b1 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setreaderinitialization/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setReaderInitialization" +linktitle: "setReaderInitialization" +articleTitle: "setReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader." +type: docs +weight: 80 +url: /nodejs/dotcodeparameters/setreaderinitialization/ +--- +## setReaderInitialization(object) {#setreaderinitialization} + +Indicates whether code is used for instruct reader to interpret the following data as instructions for initialization or reprogramming of the bar code reader. + +```javascript +setReaderInitialization(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setrows/_index.md b/english/nodejs/dotcodeparameters/setrows/_index.md new file mode 100644 index 000000000..4d2c08d62 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setrows/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setRows" +linktitle: "setRows" +articleTitle: "setRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5." +type: docs +weight: 200 +url: /nodejs/dotcodeparameters/setrows/ +--- +## setRows(object) {#setrows} + +Identifies rows count. Sum of the number of rows plus the number of columns of a DotCode symbol must be odd. Number of rows must be at least 5. + +```javascript +setRows(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodeid/_index.md b/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..d5634ea62 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setStructuredAppendModeBarcodeId" +linktitle: "setStructuredAppendModeBarcodeId" +articleTitle: "setStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 100 +url: /nodejs/dotcodeparameters/setstructuredappendmodebarcodeid/ +--- +## setStructuredAppendModeBarcodeId(object) {#setstructuredappendmodebarcodeid} + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +setStructuredAppendModeBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodescount/_index.md b/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..36dd9ce49 --- /dev/null +++ b/english/nodejs/dotcodeparameters/setstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,27 @@ +--- +title: "DotCodeParameters.setStructuredAppendModeBarcodesCount" +linktitle: "setStructuredAppendModeBarcodesCount" +articleTitle: "setStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35." +type: docs +weight: 140 +url: /nodejs/dotcodeparameters/setstructuredappendmodebarcodescount/ +--- +## setStructuredAppendModeBarcodesCount(object) {#setstructuredappendmodebarcodescount} + +Identifies DotCode structured append mode barcodes count. Default value is -1. Count must be a value from 1 to 35. + +```javascript +setStructuredAppendModeBarcodesCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/dotcodeparameters/tostring/_index.md b/english/nodejs/dotcodeparameters/tostring/_index.md new file mode 100644 index 000000000..219cb3d35 --- /dev/null +++ b/english/nodejs/dotcodeparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "DotCodeParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DotCodeParameters." +type: docs +weight: 250 +url: /nodejs/dotcodeparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this DotCodeParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this DotCodeParameters. + +### See Also + +* class [DotCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/eciencodings/_index.md b/english/nodejs/eciencodings/_index.md new file mode 100644 index 000000000..1b4422589 --- /dev/null +++ b/english/nodejs/eciencodings/_index.md @@ -0,0 +1,66 @@ +--- +title: "ECIEncodings Enum" +linktitle: "ECIEncodings" +articleTitle: "ECIEncodings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 1080 +url: /nodejs/eciencodings/ +--- +## ECIEncodings enumeration + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Currently, it is used only for QR 2D barcode. + +```javascript +public enum ECIEncodings +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| ISO_8859_1 | `3` | ISO/IEC 8859-1 Latin alphabet No. 1 encoding. ECI Id:"\000003" | +| ISO_8859_2 | `4` | ISO/IEC 8859-2 Latin alphabet No. 2 encoding. ECI Id:"\000004" | +| ISO_8859_3 | `5` | ISO/IEC 8859-3 Latin alphabet No. 3 encoding. ECI Id:"\000005" | +| ISO_8859_4 | `6` | ISO/IEC 8859-4 Latin alphabet No. 4 encoding. ECI Id:"\000006" | +| ISO_8859_5 | `7` | ISO/IEC 8859-5 Latin/Cyrillic alphabet encoding. ECI Id:"\000007" | +| ISO_8859_6 | `8` | ISO/IEC 8859-6 Latin/Arabic alphabet encoding. ECI Id:"\000008" | +| ISO_8859_7 | `9` | ISO/IEC 8859-7 Latin/Greek alphabet encoding. ECI Id:"\000009" | +| ISO_8859_8 | `10` | ISO/IEC 8859-8 Latin/Hebrew alphabet encoding. ECI Id:"\000010" | +| ISO_8859_9 | `11` | ISO/IEC 8859-9 Latin alphabet No. 5 encoding. ECI Id:"\000011" | +| ISO_8859_10 | `12` | ISO/IEC 8859-10 Latin alphabet No. 6 encoding. ECI Id:"\000012" | +| ISO_8859_11 | `13` | ISO/IEC 8859-11 Latin/Thai alphabet encoding. ECI Id:"\000013" | +| ISO_8859_13 | `15` | ISO/IEC 8859-13 Latin alphabet No. 7 (Baltic Rim) encoding. ECI Id:"\000015" | +| ISO_8859_14 | `16` | ISO/IEC 8859-14 Latin alphabet No. 8 (Celtic) encoding. ECI Id:"\000016" | +| ISO_8859_15 | `17` | ISO/IEC 8859-15 Latin alphabet No. 9 encoding. ECI Id:"\000017" | +| ISO_8859_16 | `18` | ISO/IEC 8859-16 Latin alphabet No. 10 encoding. ECI Id:"\000018" | +| UTF16BE | `25` | Shift JIS (JIS X 0208 Annex 1 + JIS X 0201) encoding. ECI Id:"\000020" / Shift_JIS: 20, // /** Windows 1250 Latin 2 (Central Europe) encoding. ECI Id:"\000021" / Win1250: 21, /** Windows 1251 Cyrillic encoding. ECI Id:"\000022" / Win1251: 22, /** Windows 1252 Latin 1 encoding. ECI Id:"\000023" / Win1252: 23, /** Windows 1256 Arabic encoding. ECI Id:"\000024" / Win1256: 24, // /** ISO/IEC 10646 UCS-2 (High order byte first) encoding. ECI Id:"\000025" | +| UTF8 | `26` | ISO/IEC 10646 UTF-8 encoding. ECI Id:"\000026" | +| US_ASCII | `27` | ISO/IEC 646:1991 International Reference Version of ISO 7-bit coded character set encoding. ECI Id:"\000027" | +| GB2312 | `29` | Big 5 (Taiwan) Chinese Character Set encoding. ECI Id:"\000028" / Big5: 28, /** GB (PRC) Chinese Character Set encoding. ECI Id:"\000029" | +| EUC_KR | `30` | Korean Character Set encoding. ECI Id:"\000030" | +| GBK | `31` | GBK (extension of GB2312 for Simplified Chinese) encoding. ECI Id:"\000031" | +| GB18030 | `32` | GGB18030 Chinese Character Set encoding. ECI Id:"\000032" | +| UTF16LE | `33` | ISO/IEC 10646 UTF-16LE encoding. ECI Id:"\000033" | +| UTF32BE | `34` | ISO/IEC 10646 UTF-32BE encoding. ECI Id:"\000034" | +| UTF32LE | `35` | ISO/IEC 10646 UTF-32LE encoding. ECI Id:"\000035" | +| INVARIANT | `170` | ISO/IEC 646: ISO 7-bit coded character set - Invariant Characters set encoding. ECI Id:"\000170" | +| BINARY | `899` | 8-bit binary data. ECI Id:"\000899" | +| NONE | `0` | No Extended Channel Interpretation | + +## Examples + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.QR); +generator.setCodeText("12345TEXT"); +generator.getParameters().getBarcode().getQR().setQrEncodeMode(QREncodeMode.ECI_ENCODING); +generator.getParameters().getBarcode().getQR().setQrEncodeType(QREncodeType.FORCE_QR); +generator.getParameters().getBarcode().getQR().setQrECIEncoding(ECIEncodings.UTF_8); +generator.save("test.png", BarCodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/enablechecksum/_index.md b/english/nodejs/enablechecksum/_index.md new file mode 100644 index 000000000..cca5f8f90 --- /dev/null +++ b/english/nodejs/enablechecksum/_index.md @@ -0,0 +1,30 @@ +--- +title: "EnableChecksum Enum" +linktitle: "EnableChecksum" +articleTitle: "EnableChecksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 1090 +url: /nodejs/enablechecksum/ +--- +## EnableChecksum enumeration + + + +```javascript +public enum EnableChecksum +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| DEFAULT | `0` | If checksum is required by the specification - it will be attached. | +| YES | `1` | Always use checksum if possible. | +| NO | `2` | Do not use checksum. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/encodetypes/_index.md b/english/nodejs/encodetypes/_index.md new file mode 100644 index 000000000..4b708e39e --- /dev/null +++ b/english/nodejs/encodetypes/_index.md @@ -0,0 +1,112 @@ +--- +title: "EncodeTypes Enum" +linktitle: "EncodeTypes" +articleTitle: "EncodeTypes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the type of barcode to encode." +type: docs +weight: 1040 +url: /nodejs/encodetypes/ +--- +## EncodeTypes enumeration + +Specifies the type of barcode to encode. + +```javascript +public enum EncodeTypes +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `-1` | Unspecified encode type. | +| CODABAR | `0` | Specifies that the data should be encoded with CODABAR barcode specification | +| CODE_11 | `1` | Specifies that the data should be encoded with CODE 11 barcode specification | +| CODE_39 | `2` | Specifies that the data should be encoded with {@code Code 39} basic charset barcode specification: ISO/IEC 16388 | +| CODE_39_FULL_ASCII | `3` | Specifies that the data should be encoded with {@code Code 39} full ASCII charset barcode specification: ISO/IEC 16388 | +| CODE_93 | `5` | Specifies that the data should be encoded with {@code CODE 93} barcode specification | +| CODE_128 | `6` | Specifies that the data should be encoded with CODE 128 barcode specification | +| GS_1_CODE_128 | `7` | Specifies that the data should be encoded with GS1 Code 128 barcode specification. The codetext must contains parentheses for AI. | +| EAN_8 | `8` | Specifies that the data should be encoded with EAN-8 barcode specification | +| EAN_13 | `9` | Specifies that the data should be encoded with EAN-13 barcode specification | +| EAN_14 | `10` | Specifies that the data should be encoded with EAN14 barcode specification | +| SCC_14 | `11` | Specifies that the data should be encoded with SCC14 barcode specification | +| SSCC_18 | `12` | Specifies that the data should be encoded with SSCC18 barcode specification | +| UPCA | `13` | Specifies that the data should be encoded with UPC-A barcode specification | +| UPCE | `14` | Specifies that the data should be encoded with UPC-E barcode specification | +| ISBN | `15` | Specifies that the data should be encoded with isBN barcode specification | +| ISSN | `16` | Specifies that the data should be encoded with ISSN barcode specification | +| ISMN | `17` | Specifies that the data should be encoded with ISMN barcode specification | +| STANDARD_2_OF_5 | `18` | Specifies that the data should be encoded with Standard 2 of 5 barcode specification | +| INTERLEAVED_2_OF_5 | `19` | Specifies that the data should be encoded with INTERLEAVED 2 of 5 barcode specification | +| MATRIX_2_OF_5 | `20` | Represents Matrix 2 of 5 BarCode | +| ITALIAN_POST_25 | `21` | Represents Italian Post 25 barcode. | +| IATA_2_OF_5 | `22` | Represents IATA 2 of 5 barcode.IATA (International Air Transport Assosiation) uses this barcode for the management of air cargo. | +| ITF_14 | `23` | Specifies that the data should be encoded with ITF14 barcode specification | +| ITF_6 | `24` | Represents ITF-6 Barcode. | +| MSI | `25` | Specifies that the data should be encoded with MSI Plessey barcode specification | +| VIN | `26` | Represents VIN (Vehicle Identification Number) Barcode. | +| DEUTSCHE_POST_IDENTCODE | `27` | Represents Deutsch Post barcode, This EncodeType is also known as Identcode,CodeIdentcode,German Postal 2 of 5 Identcode, Deutsch Post AG Identcode, Deutsch Frachtpost Identcode, Deutsch Post AG (DHL) | +| DEUTSCHE_POST_LEITCODE | `28` | Represents Deutsch Post Leitcode Barcode,also known as German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsch Post AG (DHL). | +| OPC | `29` | Represents OPC(Optical Product Code) Barcode,also known as , VCA Barcode VCA OPC, Vision Council of America OPC Barcode. | +| PZN | `30` | Represents PZN barcode.This EncodeType is also known as Pharmacy central number, Pharmazentralnummer | +| CODE_16_K | `31` | Represents Code 16K barcode. | +| PHARMACODE | `32` | Represents Pharmacode barcode. | +| DATA_MATRIX | `33` | 2D barcode symbology DataMatrix | +| QR | `34` | Specifies that the data should be encoded with QR Code barcode specification | +| AZTEC | `35` | Specifies that the data should be encoded with Aztec barcode specification | +| GS_1_AZTEC | `81` | Specifies that the data should be encoded with {@code GS1 Aztec} barcode specification. The codetext must contains parentheses for AI. | +| PDF_417 | `36` | Specifies that the data should be encoded with Pdf417 barcode specification | +| MACRO_PDF_417 | `37` | Specifies that the data should be encoded with MacroPdf417 barcode specification | +| GS_1_DATA_MATRIX | `48` | 2D barcode symbology DataMatrix with GS1 string format | +| MICRO_PDF_417 | `55` | Specifies that the data should be encoded with MicroPdf417 barcode specification | +| GS_1_MICRO_PDF_417 | `82` | Specifies that the data should be encoded with GS1MicroPdf417 barcode specification | +| GS_1_QR | `56` | 2D barcode symbology QR with GS1 string format | +| MAXI_CODE | `57` | Specifies that the data should be encoded with MaxiCode barcode specification | +| DOT_CODE | `60` | Specifies that the data should be encoded with DotCode barcode specification | +| AUSTRALIA_POST | `38` | Represents Australia Post Customer BarCode | +| POSTNET | `39` | Specifies that the data should be encoded with Postnet barcode specification | +| PLANET | `40` | Specifies that the data should be encoded with Planet barcode specification | +| ONE_CODE | `41` | Specifies that the data should be encoded with USPS OneCode barcode specification | +| RM_4_SCC | `42` | Represents RM4SCC barcode. RM4SCC (Royal Mail 4-state Customer Code) is used for automated mail sort process in UK. | +| MAILMARK | `66` | Represents Royal Mail Mailmark barcode. | +| DATABAR_OMNI_DIRECTIONAL | `43` | Specifies that the data should be encoded with GS1 Databar omni-directional barcode specification. | +| DATABAR_TRUNCATED | `44` | Specifies that the data should be encoded with GS1 Databar truncated barcode specification. | +| DATABAR_LIMITED | `45` | Represents GS1 DATABAR limited barcode. | +| DATABAR_EXPANDED | `46` | Represents GS1 Databar expanded barcode. | +| DATABAR_EXPANDED_STACKED | `52` | Represents GS1 Databar expanded stacked barcode. | +| DATABAR_STACKED | `53` | Represents GS1 Databar stacked barcode. | +| DATABAR_STACKED_OMNI_DIRECTIONAL | `54` | Represents GS1 Databar stacked omni-directional barcode. | +| SINGAPORE_POST | `47` | Specifies that the data should be encoded with Singapore Post Barcode barcode specification | +| AUSTRALIAN_POSTE_PARCEL | `49` | Specifies that the data should be encoded with Australian Post Domestic eParcel Barcode barcode specification | +| SWISS_POST_PARCEL | `50` | Specifies that the data should be encoded with Swiss Post Parcel Barcode barcode specification. Supported types: Domestic Mail, International Mail, Additional Services (new) | +| PATCH_CODE | `51` | Represents Patch code barcode | +| CODE_32 | `58` | Specifies that the data should be encoded with Code32 barcode specification | +| DATA_LOGIC_2_OF_5 | `59` | Specifies that the data should be encoded with DataLogic 2 of 5 barcode specification | +| DUTCH_KIX | `61` | Specifies that the data should be encoded with Dutch KIX barcode specification | +| UPCA_GS_1_CODE_128_COUPON | `62` | Specifies that the data should be encoded with UPC coupon with GS1-128 Extended Code barcode specification. An example of the input string: BarCodeGenerator.setCodetext("514141100906(8102)03"), where UPCA part is "514141100906", GS1Code128 part is (8102)03. | +| UPCA_GS_1_DATABAR_COUPON | `63` | Specifies that the data should be encoded with UPC coupon with GS1 DataBar addition barcode specification. An example of the input string: BarCodeGenerator.setCodetext("514141100906(8110)106141416543213500110000310123196000"), where UPCA part is "514141100906, DATABAR part is "(8110)106141416543213500110000310123196000". To change the caption, use barCodeBuilder.getCaptionAbove().setText("company prefix + offer code")", | +| CODABLOCK_F | `64` | Specifies that the data should be encoded with Codablock-F barcode specification. | +| GS_1_CODABLOCK_F | `65` | Specifies that the data should be encoded with GS1 Codablock-F barcode specification. The codetext must contains parentheses for AI. | +| GS_1_COMPOSITE_BAR | `67` | Specifies that the data should be encoded with GS1 Composite Bar barcode specification. The codetext must contains parentheses for AI. 1D codetext and 2D codetext must be separated with symbol '/' | +| HIBC_CODE_39_LIC | `68` | Specifies that the data should be encoded with {@code HIBC LIC Code39Standart} barcode specification. | +| HIBC_CODE_128_LIC | `69` | Specifies that the data should be encoded with {@code HIBC LIC Code128} barcode specification. | +| HIBC_AZTEC_LIC | `70` | Specifies that the data should be encoded with {@code HIBC LIC Aztec} barcode specification. | +| HIBC_DATA_MATRIX_LIC | `71` | Specifies that the data should be encoded with {@code HIBC LIC DataMatrix} barcode specification. | +| HIBCQRLIC | `72` | Specifies that the data should be encoded with {@code HIBC LIC QR} barcode specification. | +| HIBC_CODE_39_PAS | `73` | Specifies that the data should be encoded with {@code HIBC PAS Code39Standart} barcode specification. | +| HIBC_CODE_128_PAS | `74` | Specifies that the data should be encoded with {@code HIBC PAS Code128} barcode specification. | +| HIBC_AZTEC_PAS | `75` | Specifies that the data should be encoded with {@code HIBC PAS Aztec} barcode specification. | +| HIBC_DATA_MATRIX_PAS | `76` | Specifies that the data should be encoded with {@code HIBC PAS DataMatrix} barcode specification. | +| HIBCQRPAS | `77` | Specifies that the data should be encoded with {@code HIBC PAS QR} barcode specification. | +| GS_1_DOT_CODE | `78` | Specifies that the data should be encoded with {@code GS1 DotCode} barcode specification. The codetext must contains parentheses for AI. | +| HAN_XIN | `79` | Specifies that the data should be encoded with Han Xin barcode specification | +| GS_1_HAN_XIN | `80` | 2D barcode symbology QR with GS1 string format | +| MICRO_QR | `83` | Specifies that the data should be encoded with MicroQR Code barcode specification | +| RECT_MICRO_QR | `84` | Specifies that the data should be encoded with RectMicroQR (rMQR) Code barcode specification | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/extcodetextbuilder/_index.md b/english/nodejs/extcodetextbuilder/_index.md new file mode 100644 index 000000000..cf93bd7de --- /dev/null +++ b/english/nodejs/extcodetextbuilder/_index.md @@ -0,0 +1,37 @@ +--- +title: "ExtCodetextBuilder Class" +linktitle: "ExtCodetextBuilder" +articleTitle: "ExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Helper class for automatic codetext generation of the Extended Codetext Mode." +type: docs +weight: 700 +url: /nodejs/extcodetextbuilder/ +--- +## ExtCodetextBuilder class + +Helper class for automatic codetext generation of the Extended Codetext Mode + +```javascript +public class ExtCodetextBuilder : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [ExtCodetextBuilder](./extcodetextbuilder/#constructor)(*object*) | Initializes a new instance of the ExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addECICodetext](./addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. | +| [addPlainCodetext](./addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. | +| [clear](./clear/) | Clears extended codetext items. | +| [getExtendedCodetext](./getextendedcodetext/) | Generate extended codetext from generation items list. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/extcodetextbuilder/addecicodetext/_index.md b/english/nodejs/extcodetextbuilder/addecicodetext/_index.md new file mode 100644 index 000000000..b7cf852ae --- /dev/null +++ b/english/nodejs/extcodetextbuilder/addecicodetext/_index.md @@ -0,0 +1,28 @@ +--- +title: "ExtCodetextBuilder.addECICodetext" +linktitle: "addECICodetext" +articleTitle: "addECICodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext with Extended Channel Identifier." +type: docs +weight: 40 +url: /nodejs/extcodetextbuilder/addecicodetext/ +--- +## addECICodetext(object, object) {#addecicodetext} + +Adds codetext with Extended Channel Identifier + +```javascript +addECICodetext(ECIEncoding, codetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ECIEncoding | object | Extended Channel Identifier | +| codetext | object | Codetext in unicode to add as extended codetext item with Extended Channel Identifier | + +### See Also + +* class [ExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/extcodetextbuilder/addplaincodetext/_index.md b/english/nodejs/extcodetextbuilder/addplaincodetext/_index.md new file mode 100644 index 000000000..4fba3ff1d --- /dev/null +++ b/english/nodejs/extcodetextbuilder/addplaincodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "ExtCodetextBuilder.addPlainCodetext" +linktitle: "addPlainCodetext" +articleTitle: "addPlainCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds plain codetext to the extended codetext items." +type: docs +weight: 30 +url: /nodejs/extcodetextbuilder/addplaincodetext/ +--- +## addPlainCodetext(object) {#addplaincodetext} + +Adds plain codetext to the extended codetext items + +```javascript +addPlainCodetext(codetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| codetext | object | Codetext in unicode to add as extended codetext item | + +### See Also + +* class [ExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/extcodetextbuilder/clear/_index.md b/english/nodejs/extcodetextbuilder/clear/_index.md new file mode 100644 index 000000000..91f594c0a --- /dev/null +++ b/english/nodejs/extcodetextbuilder/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: "ExtCodetextBuilder.clear" +linktitle: "clear" +articleTitle: "clear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Clears extended codetext items." +type: docs +weight: 20 +url: /nodejs/extcodetextbuilder/clear/ +--- +## clear() {#clear} + +Clears extended codetext items + +```javascript +clear() +``` + +### See Also + +* class [ExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/extcodetextbuilder/extcodetextbuilder/_index.md b/english/nodejs/extcodetextbuilder/extcodetextbuilder/_index.md new file mode 100644 index 000000000..7590b0090 --- /dev/null +++ b/english/nodejs/extcodetextbuilder/extcodetextbuilder/_index.md @@ -0,0 +1,27 @@ +--- +title: "ExtCodetextBuilder" +linktitle: "ExtCodetextBuilder" +articleTitle: "ExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the ExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/extcodetextbuilder/extcodetextbuilder/ +--- +## ExtCodetextBuilder(object) {#constructor} + +Initializes a new instance of the ExtCodetextBuilder class. + +```javascript +public ExtCodetextBuilder(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [ExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/extcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/extcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..2f726392c --- /dev/null +++ b/english/nodejs/extcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "ExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generate extended codetext from generation items list." +type: docs +weight: 50 +url: /nodejs/extcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generate extended codetext from generation items list + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Return + +string of extended codetext + +### See Also + +* class [ExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontmode/_index.md b/english/nodejs/fontmode/_index.md new file mode 100644 index 000000000..e74da84ea --- /dev/null +++ b/english/nodejs/fontmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "FontMode Enum" +linktitle: "FontMode" +articleTitle: "FontMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Font size mode." +type: docs +weight: 1000 +url: /nodejs/fontmode/ +--- +## FontMode enumeration + +Font size mode. + +```javascript +public enum FontMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Automatically calculate Font size based on barcode size. | +| MANUAL | `1` | Use Font sized defined by user. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/fontstyle/_index.md b/english/nodejs/fontstyle/_index.md new file mode 100644 index 000000000..6f2ebb028 --- /dev/null +++ b/english/nodejs/fontstyle/_index.md @@ -0,0 +1,32 @@ +--- +title: "FontStyle Enum" +linktitle: "FontStyle" +articleTitle: "FontStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "FontStyle classification." +type: docs +weight: 850 +url: /nodejs/fontstyle/ +--- +## FontStyle enumeration + +FontStyle classification + +```javascript +public enum FontStyle +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| BOLD | `1` | Bold text | +| ITALIC | `2` | Italic text | +| REGULAR | `0` | Normal text | +| STRIKEOUT | `8` | Text with a line through the middle. | +| UNDERLINE | `4` | Underlined text. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/fontunit/_index.md b/english/nodejs/fontunit/_index.md new file mode 100644 index 000000000..968527e66 --- /dev/null +++ b/english/nodejs/fontunit/_index.md @@ -0,0 +1,58 @@ +--- +title: "FontUnit Class" +linktitle: "FontUnit" +articleTitle: "FontUnit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Defines a particular format for text, including font face, size, and style attributes where size in Unit value property." +type: docs +weight: 690 +url: /nodejs/fontunit/ +--- +## FontUnit class + +Defines a particular format for text, including font face, size, and style attributes where size in Unit value property. + +```javascript +public class FontUnit : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [FontUnit](./fontunit/#constructor)(*object*) | Initializes a new instance of the FontUnit class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getFamilyName](./getfamilyname/) | Gets the face name of this Font. | +| [getSize](./getsize/) | Gets size of this FontUnit in Unit value. | +| [getStyle](./getstyle/) | Gets style information for this FontUnit. | +| [init](./init/) | | +| [initFontUnit](./initfontunit/)(*object*) | | +| [setFamilyName](./setfamilyname/)(*object*) | Sets the face name of this Font. | +| [setStyle](./setstyle/)(*object*) | Sets style information for this FontUnit. | + +## Fields + +| Name | Description | +| --- | --- | +| [_size](./_size/) | | + +## Examples + +This sample shows how to create and save a BarCode image. + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.CODE_128); +generator.getParameters().getCaptionAbove().setText("CAPTION ABOOVE"); +generator.getParameters().getCaptionAbove().setVisible(true); +generator.getParameters().getCaptionAbove().getFont().setStyle(FontStyle.ITALIC); +generator.getParameters().getCaptionAbove().getFont().getSize().setPoint(25); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/fontunit/fontunit/_index.md b/english/nodejs/fontunit/fontunit/_index.md new file mode 100644 index 000000000..2cf0d1692 --- /dev/null +++ b/english/nodejs/fontunit/fontunit/_index.md @@ -0,0 +1,27 @@ +--- +title: "FontUnit" +linktitle: "FontUnit" +articleTitle: "FontUnit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the FontUnit class." +type: docs +weight: 10 +url: /nodejs/fontunit/fontunit/ +--- +## FontUnit(object) {#constructor} + +Initializes a new instance of the FontUnit class. + +```javascript +public FontUnit(object source) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| source | object | | + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/getfamilyname/_index.md b/english/nodejs/fontunit/getfamilyname/_index.md new file mode 100644 index 000000000..411a0224d --- /dev/null +++ b/english/nodejs/fontunit/getfamilyname/_index.md @@ -0,0 +1,23 @@ +--- +title: "FontUnit.getFamilyName" +linktitle: "getFamilyName" +articleTitle: "getFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the face name of this Font." +type: docs +weight: 50 +url: /nodejs/fontunit/getfamilyname/ +--- +## getFamilyName() {#getfamilyname} + +Gets the face name of this Font. + +```javascript +getFamilyName() +``` + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/getsize/_index.md b/english/nodejs/fontunit/getsize/_index.md new file mode 100644 index 000000000..89bf1c7b7 --- /dev/null +++ b/english/nodejs/fontunit/getsize/_index.md @@ -0,0 +1,29 @@ +--- +title: "FontUnit.getSize" +linktitle: "getSize" +articleTitle: "getSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size of this FontUnit in Unit value." +type: docs +weight: 90 +url: /nodejs/fontunit/getsize/ +--- +## getSize() {#getsize} + +Gets size of this FontUnit in Unit value. + +```javascript +getSize() +``` + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException
| The Size parameter value is less than or equal to 0. | + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/getstyle/_index.md b/english/nodejs/fontunit/getstyle/_index.md new file mode 100644 index 000000000..9f9b4990c --- /dev/null +++ b/english/nodejs/fontunit/getstyle/_index.md @@ -0,0 +1,23 @@ +--- +title: "FontUnit.getStyle" +linktitle: "getStyle" +articleTitle: "getStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets style information for this FontUnit." +type: docs +weight: 70 +url: /nodejs/fontunit/getstyle/ +--- +## getStyle() {#getstyle} + +Gets style information for this FontUnit. + +```javascript +getStyle() +``` + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/init/_index.md b/english/nodejs/fontunit/init/_index.md new file mode 100644 index 000000000..6259269f5 --- /dev/null +++ b/english/nodejs/fontunit/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "FontUnit.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/fontunit/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/initfontunit/_index.md b/english/nodejs/fontunit/initfontunit/_index.md new file mode 100644 index 000000000..d16044f12 --- /dev/null +++ b/english/nodejs/fontunit/initfontunit/_index.md @@ -0,0 +1,27 @@ +--- +title: "FontUnit.initFontUnit" +linktitle: "initFontUnit" +articleTitle: "initFontUnit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/fontunit/initfontunit/ +--- +## initFontUnit(object) {#initfontunit} + + + +```javascript +static initFontUnit(source) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| source | object | | + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/setfamilyname/_index.md b/english/nodejs/fontunit/setfamilyname/_index.md new file mode 100644 index 000000000..f2ea6a6a1 --- /dev/null +++ b/english/nodejs/fontunit/setfamilyname/_index.md @@ -0,0 +1,27 @@ +--- +title: "FontUnit.setFamilyName" +linktitle: "setFamilyName" +articleTitle: "setFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the face name of this Font." +type: docs +weight: 60 +url: /nodejs/fontunit/setfamilyname/ +--- +## setFamilyName(object) {#setfamilyname} + +Sets the face name of this Font. + +```javascript +setFamilyName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/fontunit/setstyle/_index.md b/english/nodejs/fontunit/setstyle/_index.md new file mode 100644 index 000000000..4f0789395 --- /dev/null +++ b/english/nodejs/fontunit/setstyle/_index.md @@ -0,0 +1,27 @@ +--- +title: "FontUnit.setStyle" +linktitle: "setStyle" +articleTitle: "setStyle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets style information for this FontUnit." +type: docs +weight: 80 +url: /nodejs/fontunit/setstyle/ +--- +## setStyle(object) {#setstyle} + +Sets style information for this FontUnit. + +```javascript +setStyle(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [FontUnit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/graphicsunit/_index.md b/english/nodejs/graphicsunit/_index.md new file mode 100644 index 000000000..7a9699ccf --- /dev/null +++ b/english/nodejs/graphicsunit/_index.md @@ -0,0 +1,34 @@ +--- +title: "GraphicsUnit Enum" +linktitle: "GraphicsUnit" +articleTitle: "GraphicsUnit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the unit of measure for the given data." +type: docs +weight: 1030 +url: /nodejs/graphicsunit/ +--- +## GraphicsUnit enumeration + +Specifies the unit of measure for the given data. + +```javascript +public enum GraphicsUnit +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| WORLD | `0` | Specifies the world coordinate system unit as the unit of measure. | +| DISPLAY | `1` | Specifies the unit of measure of the display device. Typically pixels for video displays, and 1/100 inch for printers. | +| PIXEL | `2` | Specifies a device pixel as the unit of measure. | +| POINT | `3` | Specifies a printer's point = 1/72 inch) as the unit of measure. | +| INCH | `4` | Specifies the inch as the unit of measure. | +| DOCUMENT | `5` | Specifies the document unit = 1/300 inch) as the unit of measure. | +| MILLIMETER | `6` | Specifies the millimeter as the unit of measure. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/_index.md b/english/nodejs/gs1compositebarextendedparameters/_index.md new file mode 100644 index 000000000..9db9e8e42 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "GS1CompositeBarExtendedParameters Class" +linktitle: "GS1CompositeBarExtendedParameters" +articleTitle: "GS1CompositeBarExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of GS1 Composite Bar recognized barcode." +type: docs +weight: 1440 +url: /nodejs/gs1compositebarextendedparameters/ +--- +## GS1CompositeBarExtendedParameters class + +Stores special data of `GS1 Composite Bar` recognized barcode + +```javascript +public class GS1CompositeBarExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [GS1CompositeBarExtendedParameters](./gs1compositebarextendedparameters/#constructor)(*object*) | Initializes a new instance of the GS1CompositeBarExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified GS1CompositeBarExtendedParameters value. | +| [getOneDCodeText](./getonedcodetext/) | | +| [getOneDType](./getonedtype/) | | +| [getTwoDCodeText](./gettwodcodetext/) | | +| [getTwoDType](./gettwodtype/) | | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this GS1CompositeBarExtendedParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/equals/_index.md b/english/nodejs/gs1compositebarextendedparameters/equals/_index.md new file mode 100644 index 000000000..90d8e46dc --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "GS1CompositeBarExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified GS1CompositeBarExtendedParameters value." +type: docs +weight: 70 +url: /nodejs/gs1compositebarextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `GS1CompositeBarExtendedParameters` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/getonedcodetext/_index.md b/english/nodejs/gs1compositebarextendedparameters/getonedcodetext/_index.md new file mode 100644 index 000000000..5778943a5 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/getonedcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarExtendedParameters.getOneDCodeText" +linktitle: "getOneDCodeText" +articleTitle: "getOneDCodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/gs1compositebarextendedparameters/getonedcodetext/ +--- +## getOneDCodeText() {#getonedcodetext} + + + +```javascript +getOneDCodeText() +``` + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/getonedtype/_index.md b/english/nodejs/gs1compositebarextendedparameters/getonedtype/_index.md new file mode 100644 index 000000000..20b14a9e2 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/getonedtype/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarExtendedParameters.getOneDType" +linktitle: "getOneDType" +articleTitle: "getOneDType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/gs1compositebarextendedparameters/getonedtype/ +--- +## getOneDType() {#getonedtype} + + + +```javascript +getOneDType() +``` + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/gettwodcodetext/_index.md b/english/nodejs/gs1compositebarextendedparameters/gettwodcodetext/_index.md new file mode 100644 index 000000000..3d50c0c28 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/gettwodcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarExtendedParameters.getTwoDCodeText" +linktitle: "getTwoDCodeText" +articleTitle: "getTwoDCodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/gs1compositebarextendedparameters/gettwodcodetext/ +--- +## getTwoDCodeText() {#gettwodcodetext} + + + +```javascript +getTwoDCodeText() +``` + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/gettwodtype/_index.md b/english/nodejs/gs1compositebarextendedparameters/gettwodtype/_index.md new file mode 100644 index 000000000..748ed07af --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/gettwodtype/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarExtendedParameters.getTwoDType" +linktitle: "getTwoDType" +articleTitle: "getTwoDType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/gs1compositebarextendedparameters/gettwodtype/ +--- +## getTwoDType() {#gettwodtype} + + + +```javascript +getTwoDType() +``` + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/gs1compositebarextendedparameters/_index.md b/english/nodejs/gs1compositebarextendedparameters/gs1compositebarextendedparameters/_index.md new file mode 100644 index 000000000..fc2f401a1 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/gs1compositebarextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "GS1CompositeBarExtendedParameters" +linktitle: "GS1CompositeBarExtendedParameters" +articleTitle: "GS1CompositeBarExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the GS1CompositeBarExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/gs1compositebarextendedparameters/gs1compositebarextendedparameters/ +--- +## GS1CompositeBarExtendedParameters(object) {#constructor} + +Initializes a new instance of the GS1CompositeBarExtendedParameters class. + +```javascript +public GS1CompositeBarExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/hashcode/_index.md b/english/nodejs/gs1compositebarextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..eb0156fdd --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "GS1CompositeBarExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 80 +url: /nodejs/gs1compositebarextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/init/_index.md b/english/nodejs/gs1compositebarextendedparameters/init/_index.md new file mode 100644 index 000000000..795889da1 --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/gs1compositebarextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarextendedparameters/tostring/_index.md b/english/nodejs/gs1compositebarextendedparameters/tostring/_index.md new file mode 100644 index 000000000..578fea11c --- /dev/null +++ b/english/nodejs/gs1compositebarextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "GS1CompositeBarExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this GS1CompositeBarExtendedParameters." +type: docs +weight: 90 +url: /nodejs/gs1compositebarextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `GS1CompositeBarExtendedParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [GS1CompositeBarExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/_index.md b/english/nodejs/gs1compositebarparameters/_index.md new file mode 100644 index 000000000..bb7f5e0c2 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "GS1CompositeBarParameters Class" +linktitle: "GS1CompositeBarParameters" +articleTitle: "GS1CompositeBarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "GS1 Composite bar parameters." +type: docs +weight: 600 +url: /nodejs/gs1compositebarparameters/ +--- +## GS1CompositeBarParameters class + +GS1 Composite bar parameters. + +```javascript +public class GS1CompositeBarParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [GS1CompositeBarParameters](./gs1compositebarparameters/#constructor)(*object*) | Initializes a new instance of the GS1CompositeBarParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getLinearComponentType](./getlinearcomponenttype/) | Linear component type. | +| [getTwoDComponentType](./gettwodcomponenttype/) | 2D component type. | +| [init](./init/) | | +| [isAllowOnlyGS1Encoding](./isallowonlygs1encoding/) | If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component. | +| [setAllowOnlyGS1Encoding](./setallowonlygs1encoding/)(*object*) | If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component. | +| [setLinearComponentType](./setlinearcomponenttype/)(*object*) | Linear component type. | +| [setTwoDComponentType](./settwodcomponenttype/)(*object*) | 2D component type. | +| [toString](./tostring/) | Returns a human-readable string representation of this DataBarParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/gs1compositebarparameters/getlinearcomponenttype/_index.md b/english/nodejs/gs1compositebarparameters/getlinearcomponenttype/_index.md new file mode 100644 index 000000000..b4f831499 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/getlinearcomponenttype/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarParameters.getLinearComponentType" +linktitle: "getLinearComponentType" +articleTitle: "getLinearComponentType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Linear component type." +type: docs +weight: 30 +url: /nodejs/gs1compositebarparameters/getlinearcomponenttype/ +--- +## getLinearComponentType() {#getlinearcomponenttype} + +Linear component type + +```javascript +getLinearComponentType() +``` + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/gettwodcomponenttype/_index.md b/english/nodejs/gs1compositebarparameters/gettwodcomponenttype/_index.md new file mode 100644 index 000000000..93d4876cd --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/gettwodcomponenttype/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarParameters.getTwoDComponentType" +linktitle: "getTwoDComponentType" +articleTitle: "getTwoDComponentType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2D component type." +type: docs +weight: 50 +url: /nodejs/gs1compositebarparameters/gettwodcomponenttype/ +--- +## getTwoDComponentType() {#gettwodcomponenttype} + +2D component type + +```javascript +getTwoDComponentType() +``` + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/gs1compositebarparameters/_index.md b/english/nodejs/gs1compositebarparameters/gs1compositebarparameters/_index.md new file mode 100644 index 000000000..5fd02110e --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/gs1compositebarparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "GS1CompositeBarParameters" +linktitle: "GS1CompositeBarParameters" +articleTitle: "GS1CompositeBarParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the GS1CompositeBarParameters class." +type: docs +weight: 10 +url: /nodejs/gs1compositebarparameters/gs1compositebarparameters/ +--- +## GS1CompositeBarParameters(object) {#constructor} + +Initializes a new instance of the GS1CompositeBarParameters class. + +```javascript +public GS1CompositeBarParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/init/_index.md b/english/nodejs/gs1compositebarparameters/init/_index.md new file mode 100644 index 000000000..9705426ca --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/gs1compositebarparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/isallowonlygs1encoding/_index.md b/english/nodejs/gs1compositebarparameters/isallowonlygs1encoding/_index.md new file mode 100644 index 000000000..24df04f58 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/isallowonlygs1encoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "GS1CompositeBarParameters.isAllowOnlyGS1Encoding" +linktitle: "isAllowOnlyGS1Encoding" +articleTitle: "isAllowOnlyGS1Encoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component." +type: docs +weight: 70 +url: /nodejs/gs1compositebarparameters/isallowonlygs1encoding/ +--- +## isAllowOnlyGS1Encoding() {#isallowonlygs1encoding} + +If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component + +```javascript +isAllowOnlyGS1Encoding() +``` + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/setallowonlygs1encoding/_index.md b/english/nodejs/gs1compositebarparameters/setallowonlygs1encoding/_index.md new file mode 100644 index 000000000..8ef4fe295 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/setallowonlygs1encoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "GS1CompositeBarParameters.setAllowOnlyGS1Encoding" +linktitle: "setAllowOnlyGS1Encoding" +articleTitle: "setAllowOnlyGS1Encoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component." +type: docs +weight: 80 +url: /nodejs/gs1compositebarparameters/setallowonlygs1encoding/ +--- +## setAllowOnlyGS1Encoding(object) {#setallowonlygs1encoding} + +If this flag is set, it allows only GS1 encoding standard for GS1CompositeBar 2D Component + +```javascript +setAllowOnlyGS1Encoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/setlinearcomponenttype/_index.md b/english/nodejs/gs1compositebarparameters/setlinearcomponenttype/_index.md new file mode 100644 index 000000000..344249f1a --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/setlinearcomponenttype/_index.md @@ -0,0 +1,27 @@ +--- +title: "GS1CompositeBarParameters.setLinearComponentType" +linktitle: "setLinearComponentType" +articleTitle: "setLinearComponentType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Linear component type." +type: docs +weight: 40 +url: /nodejs/gs1compositebarparameters/setlinearcomponenttype/ +--- +## setLinearComponentType(object) {#setlinearcomponenttype} + +Linear component type + +```javascript +setLinearComponentType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/settwodcomponenttype/_index.md b/english/nodejs/gs1compositebarparameters/settwodcomponenttype/_index.md new file mode 100644 index 000000000..5fba6dd21 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/settwodcomponenttype/_index.md @@ -0,0 +1,27 @@ +--- +title: "GS1CompositeBarParameters.setTwoDComponentType" +linktitle: "setTwoDComponentType" +articleTitle: "setTwoDComponentType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2D component type." +type: docs +weight: 60 +url: /nodejs/gs1compositebarparameters/settwodcomponenttype/ +--- +## setTwoDComponentType(object) {#settwodcomponenttype} + +2D component type + +```javascript +setTwoDComponentType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/gs1compositebarparameters/tostring/_index.md b/english/nodejs/gs1compositebarparameters/tostring/_index.md new file mode 100644 index 000000000..a8f3b8092 --- /dev/null +++ b/english/nodejs/gs1compositebarparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "GS1CompositeBarParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this DataBarParameters." +type: docs +weight: 90 +url: /nodejs/gs1compositebarparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this DataBarParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this DataBarParameters + +### See Also + +* class [GS1CompositeBarParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinencodemode/_index.md b/english/nodejs/hanxinencodemode/_index.md new file mode 100644 index 000000000..0c4a868bb --- /dev/null +++ b/english/nodejs/hanxinencodemode/_index.md @@ -0,0 +1,77 @@ +--- +title: "HanXinEncodeMode Enum" +linktitle: "HanXinEncodeMode" +articleTitle: "HanXinEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese characters or Unicode for Unicode characters." +type: docs +weight: 1200 +url: /nodejs/hanxinencodemode/ +--- +## HanXinEncodeMode enumeration + +Han Xin Code encoding mode. It is recommended to use Auto with ASCII / Chinese characters or Unicode for Unicode characters. + +```javascript +public enum HanXinEncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Sequence of Numeric, Text, ECI, Binary Bytes and 4 GB18030 modes changing automatically. | +| BINARY | `1` | Binary byte mode encodes binary data in any form and encodes them in their binary byte. Every byte in Binary Byte mode is represented by 8 bits. | +| ECI | `2` | Extended Channel Interpretation (ECI) mode | +| UNICODE | `3` | Unicode mode designs a way to represent any text data reference to UTF8 encoding/charset in Han Xin Code. | +| URI | `4` | URI mode indicates the data represented in Han Xin Code is Uniform Resource Identifier (URI) reference to RFC 3986. | +| EXTENDED | `5` | Extended mode will allow more flexible combinations of other modes, this mode is currently not implemented. | + +## Examples + +```javascript +// Auto mode +let codetext = "1234567890ABCDEFGabcdefg,Han Xin Code"; +let generator = new BarcodeGenerator(EncodeTypes.HAN_XIN, codetext); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +```javascript +// Bytes mode +let encodedArr = [0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9]; +//encode array to string +let codetext = ""; +for (int i = 0; i +

+``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hanxinerrorlevel/_index.md b/english/nodejs/hanxinerrorlevel/_index.md new file mode 100644 index 000000000..61c6d70fc --- /dev/null +++ b/english/nodejs/hanxinerrorlevel/_index.md @@ -0,0 +1,31 @@ +--- +title: "HanXinErrorLevel Enum" +linktitle: "HanXinErrorLevel" +articleTitle: "HanXinErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction. From low to high: L1, L2, L3, L4." +type: docs +weight: 1190 +url: /nodejs/hanxinerrorlevel/ +--- +## HanXinErrorLevel enumeration + +Level of Reed-Solomon error correction. From low to high: L1, L2, L3, L4. + +```javascript +public enum HanXinErrorLevel +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| L1 | `0` | Allows recovery of 8% of the code text | +| L2 | `1` | Allows recovery of 15% of the code text | +| L3 | `2` | Allows recovery of 23% of the code text | +| L4 | `3` | Allows recovery of 30% of the code text | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/_index.md b/english/nodejs/hanxinextcodetextbuilder/_index.md new file mode 100644 index 000000000..24be72773 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/_index.md @@ -0,0 +1,53 @@ +--- +title: "HanXinExtCodetextBuilder Class" +linktitle: "HanXinExtCodetextBuilder" +articleTitle: "HanXinExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 780 +url: /nodejs/hanxinextcodetextbuilder/ +--- +## HanXinExtCodetextBuilder class + +//Extended codetext mode //create codetext let codeTextBuilder = new HanXinExtCodetextBuilder(); codeTextBuilder.addGB18030TwoByte("漄"); codeTextBuilder.addGB18030FourByte("㐁"); codeTextBuilder.addCommonChineseRegionOne("全"); codeTextBuilder.addCommonChineseRegionTwo("螅"); codeTextBuilder.addNumeric("123"); codeTextBuilder.addText("qwe"); codeTextBuilder.addUnicode("ıntəˈnæʃənəl"); codeTextBuilder.addECI("ΑΒΓΔΕ", 9); codeTextBuilder.addAuto("abc"); codeTextBuilder.addBinary("abc"); codeTextBuilder.addURI("backslashes_should_be_doubled\000555:test"); codeTextBuilder.addGS1("(01)03453120000011(17)191125(10)ABCD1234(21)10"); let expectedStr = "漄㐁全螅123qweıntəˈnæʃənəlΑΒΓΔΕabcabcbackslashes_should_be_doubled\000555:test(01)03453120000011(17)191125(10)ABCD1234(21)10"; //generate codetext let str = codeTextBuilder.getExtendedCodetext(); //generate let bg = new BarcodeGenerator(EncodeTypes.HAN_XIN, str); bg.getParameters().getBarcode().getHanXin().setHanXinEncodeMode(HanXinEncodeMode.EXTENDED); let img = bg.generateBarCodeImage(BarcodeImageFormat.PNG); let r = new BarCodeReader(img, null, DecodeType.HAN_XIN)) let found = r.readBarCodes(); assert.assertEquals(1, found.length); assert.assertEquals(expectedStr, found[0].getCodeText()); + +```javascript +public class HanXinExtCodetextBuilder : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HanXinExtCodetextBuilder](./hanxinextcodetextbuilder/#constructor) | Initializes a new instance of the HanXinExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addAuto](./addauto/)(*object*) | Adds codetext fragment in Auto mode. | +| [addBinary](./addbinary/)(*object*) | Adds codetext fragment in Binary mode. | +| [addCommonChineseRegionOne](./addcommonchineseregionone/)(*object*) | Adds codetext fragment in Common Chinese Region One mode. | +| [addCommonChineseRegionTwo](./addcommonchineseregiontwo/)(*object*) | Adds codetext fragment in Common Chinese Region Two mode. | +| [addECI](./addeci/)(*object, object*) | Adds codetext fragment in ECI mode. | +| [addGB18030FourByte](./addgb18030fourbyte/)(*object*) | Adds codetext fragment in GB18030 Four Byte mode. | +| [addGB18030TwoByte](./addgb18030twobyte/)(*object*) | Adds codetext fragment in GB18030 Two Byte mode. | +| [addGS1](./addgs1/)(*object*) | Adds codetext fragment in GS1 mode. | +| [addNumeric](./addnumeric/)(*object*) | Adds codetext fragment in Numeric mode. | +| [addText](./addtext/)(*object*) | Adds codetext fragment in Text mode. | +| [addURI](./adduri/)(*object*) | Adds codetext fragment in URI mode. | +| [addUnicode](./addunicode/)(*object*) | Adds codetext fragment in Unicode mode. | +| [getExtendedCodetext](./getextendedcodetext/) | Returns codetext from Extended mode codetext builder. | +| [init](./init/) | | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addauto/_index.md b/english/nodejs/hanxinextcodetextbuilder/addauto/_index.md new file mode 100644 index 000000000..0c4287828 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addauto/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addAuto" +linktitle: "addAuto" +articleTitle: "addAuto" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Auto mode." +type: docs +weight: 50 +url: /nodejs/hanxinextcodetextbuilder/addauto/ +--- +## addAuto(object) {#addauto} + +Adds codetext fragment in Auto mode + +```javascript +addAuto(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addbinary/_index.md b/english/nodejs/hanxinextcodetextbuilder/addbinary/_index.md new file mode 100644 index 000000000..f3f05fd89 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addbinary/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addBinary" +linktitle: "addBinary" +articleTitle: "addBinary" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Binary mode." +type: docs +weight: 60 +url: /nodejs/hanxinextcodetextbuilder/addbinary/ +--- +## addBinary(object) {#addbinary} + +Adds codetext fragment in Binary mode + +```javascript +addBinary(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregionone/_index.md b/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregionone/_index.md new file mode 100644 index 000000000..1ddaab495 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregionone/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addCommonChineseRegionOne" +linktitle: "addCommonChineseRegionOne" +articleTitle: "addCommonChineseRegionOne" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Common Chinese Region One mode." +type: docs +weight: 110 +url: /nodejs/hanxinextcodetextbuilder/addcommonchineseregionone/ +--- +## addCommonChineseRegionOne(object) {#addcommonchineseregionone} + +Adds codetext fragment in Common Chinese Region One mode + +```javascript +addCommonChineseRegionOne(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregiontwo/_index.md b/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregiontwo/_index.md new file mode 100644 index 000000000..06472a96e --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addcommonchineseregiontwo/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addCommonChineseRegionTwo" +linktitle: "addCommonChineseRegionTwo" +articleTitle: "addCommonChineseRegionTwo" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Common Chinese Region Two mode." +type: docs +weight: 120 +url: /nodejs/hanxinextcodetextbuilder/addcommonchineseregiontwo/ +--- +## addCommonChineseRegionTwo(object) {#addcommonchineseregiontwo} + +Adds codetext fragment in Common Chinese Region Two mode + +```javascript +addCommonChineseRegionTwo(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addeci/_index.md b/english/nodejs/hanxinextcodetextbuilder/addeci/_index.md new file mode 100644 index 000000000..008585513 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addeci/_index.md @@ -0,0 +1,28 @@ +--- +title: "HanXinExtCodetextBuilder.addECI" +linktitle: "addECI" +articleTitle: "addECI" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in ECI mode." +type: docs +weight: 40 +url: /nodejs/hanxinextcodetextbuilder/addeci/ +--- +## addECI(object, object) {#addeci} + +Adds codetext fragment in ECI mode + +```javascript +addECI(text, encoding) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | +| encoding | object | ECI encoding in number format | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addgb18030fourbyte/_index.md b/english/nodejs/hanxinextcodetextbuilder/addgb18030fourbyte/_index.md new file mode 100644 index 000000000..32915db2b --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addgb18030fourbyte/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addGB18030FourByte" +linktitle: "addGB18030FourByte" +articleTitle: "addGB18030FourByte" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in GB18030 Four Byte mode." +type: docs +weight: 140 +url: /nodejs/hanxinextcodetextbuilder/addgb18030fourbyte/ +--- +## addGB18030FourByte(object) {#addgb18030fourbyte} + +Adds codetext fragment in GB18030 Four Byte mode + +```javascript +addGB18030FourByte(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addgb18030twobyte/_index.md b/english/nodejs/hanxinextcodetextbuilder/addgb18030twobyte/_index.md new file mode 100644 index 000000000..5919ac025 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addgb18030twobyte/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addGB18030TwoByte" +linktitle: "addGB18030TwoByte" +articleTitle: "addGB18030TwoByte" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in GB18030 Two Byte mode." +type: docs +weight: 130 +url: /nodejs/hanxinextcodetextbuilder/addgb18030twobyte/ +--- +## addGB18030TwoByte(object) {#addgb18030twobyte} + +Adds codetext fragment in GB18030 Two Byte mode + +```javascript +addGB18030TwoByte(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addgs1/_index.md b/english/nodejs/hanxinextcodetextbuilder/addgs1/_index.md new file mode 100644 index 000000000..71948f0de --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addgs1/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addGS1" +linktitle: "addGS1" +articleTitle: "addGS1" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in GS1 mode." +type: docs +weight: 150 +url: /nodejs/hanxinextcodetextbuilder/addgs1/ +--- +## addGS1(object) {#addgs1} + +Adds codetext fragment in GS1 mode + +```javascript +addGS1(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addnumeric/_index.md b/english/nodejs/hanxinextcodetextbuilder/addnumeric/_index.md new file mode 100644 index 000000000..4f13a5a3d --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addnumeric/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addNumeric" +linktitle: "addNumeric" +articleTitle: "addNumeric" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Numeric mode." +type: docs +weight: 90 +url: /nodejs/hanxinextcodetextbuilder/addnumeric/ +--- +## addNumeric(object) {#addnumeric} + +Adds codetext fragment in Numeric mode + +```javascript +addNumeric(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addtext/_index.md b/english/nodejs/hanxinextcodetextbuilder/addtext/_index.md new file mode 100644 index 000000000..cdf7279f5 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addtext/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addText" +linktitle: "addText" +articleTitle: "addText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Text mode." +type: docs +weight: 80 +url: /nodejs/hanxinextcodetextbuilder/addtext/ +--- +## addText(object) {#addtext} + +Adds codetext fragment in Text mode + +```javascript +addText(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/addunicode/_index.md b/english/nodejs/hanxinextcodetextbuilder/addunicode/_index.md new file mode 100644 index 000000000..f6b92c217 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/addunicode/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addUnicode" +linktitle: "addUnicode" +articleTitle: "addUnicode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in Unicode mode." +type: docs +weight: 100 +url: /nodejs/hanxinextcodetextbuilder/addunicode/ +--- +## addUnicode(object) {#addunicode} + +Adds codetext fragment in Unicode mode + +```javascript +addUnicode(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/adduri/_index.md b/english/nodejs/hanxinextcodetextbuilder/adduri/_index.md new file mode 100644 index 000000000..023f44846 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/adduri/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinExtCodetextBuilder.addURI" +linktitle: "addURI" +articleTitle: "addURI" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds codetext fragment in URI mode." +type: docs +weight: 70 +url: /nodejs/hanxinextcodetextbuilder/adduri/ +--- +## addURI(object) {#adduri} + +Adds codetext fragment in URI mode + +```javascript +addURI(text) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| text | object | Codetext string | + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/hanxinextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..d2e54d841 --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns codetext from Extended mode codetext builder." +type: docs +weight: 160 +url: /nodejs/hanxinextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Returns codetext from Extended mode codetext builder + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Codetext + +in Extended mode + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/hanxinextcodetextbuilder/_index.md b/english/nodejs/hanxinextcodetextbuilder/hanxinextcodetextbuilder/_index.md new file mode 100644 index 000000000..448d7163a --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/hanxinextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinExtCodetextBuilder" +linktitle: "HanXinExtCodetextBuilder" +articleTitle: "HanXinExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HanXinExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/hanxinextcodetextbuilder/hanxinextcodetextbuilder/ +--- +## HanXinExtCodetextBuilder() {#constructor} + +Initializes a new instance of the HanXinExtCodetextBuilder class. + +```javascript +public HanXinExtCodetextBuilder() +``` + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinextcodetextbuilder/init/_index.md b/english/nodejs/hanxinextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..3aae20f3f --- /dev/null +++ b/english/nodejs/hanxinextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/hanxinextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HanXinExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/_index.md b/english/nodejs/hanxinparameters/_index.md new file mode 100644 index 000000000..44c6e48a7 --- /dev/null +++ b/english/nodejs/hanxinparameters/_index.md @@ -0,0 +1,51 @@ +--- +title: "HanXinParameters Class" +linktitle: "HanXinParameters" +articleTitle: "HanXinParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Han Xin parameters." +type: docs +weight: 760 +url: /nodejs/hanxinparameters/ +--- +## HanXinParameters class + +Han Xin parameters. + +```javascript +public class HanXinParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HanXinParameters](./hanxinparameters/#constructor)(*object*) | Initializes a new instance of the HanXinParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getECIEncoding](./geteciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. | +| [getEncodeMode](./getencodemode/) | HanXin encoding mode. Default value: EncodeMode.Mixed. | +| [getErrorLevel](./geterrorlevel/) | Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. | +| [getHanXinECIEncoding](./gethanxineciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [getHanXinEncodeMode](./gethanxinencodemode/) | HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. | +| [getHanXinErrorLevel](./gethanxinerrorlevel/) | Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. | +| [getHanXinVersion](./gethanxinversion/) | Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. | +| [getVersion](./getversion/) | Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. | +| [init](./init/) | | +| [setECIEncoding](./seteciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. | +| [setEncodeMode](./setencodemode/)(*object*) | HanXin encoding mode. Default value: EncodeMode.Mixed. | +| [setErrorLevel](./seterrorlevel/)(*object*) | Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. | +| [setHanXinECIEncoding](./sethanxineciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [setHanXinEncodeMode](./sethanxinencodemode/)(*object*) | HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. | +| [setHanXinErrorLevel](./sethanxinerrorlevel/)(*object*) | Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. | +| [setHanXinVersion](./sethanxinversion/)(*object*) | Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. | +| [setVersion](./setversion/)(*object*) | Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. | +| [toString](./tostring/) | Returns a human-readable string representation of this HanXinParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hanxinparameters/geteciencoding/_index.md b/english/nodejs/hanxinparameters/geteciencoding/_index.md new file mode 100644 index 000000000..cfa9713fa --- /dev/null +++ b/english/nodejs/hanxinparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 150 +url: /nodejs/hanxinparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. + +```javascript +getECIEncoding() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/getencodemode/_index.md b/english/nodejs/hanxinparameters/getencodemode/_index.md new file mode 100644 index 000000000..a6f9442c4 --- /dev/null +++ b/english/nodejs/hanxinparameters/getencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HanXin encoding mode. Default value: EncodeMode.Mixed." +type: docs +weight: 110 +url: /nodejs/hanxinparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +HanXin encoding mode. Default value: EncodeMode.Mixed. + +```javascript +getEncodeMode() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/geterrorlevel/_index.md b/english/nodejs/hanxinparameters/geterrorlevel/_index.md new file mode 100644 index 000000000..dbf472851 --- /dev/null +++ b/english/nodejs/hanxinparameters/geterrorlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinParameters.getErrorLevel" +linktitle: "getErrorLevel" +articleTitle: "getErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel." +type: docs +weight: 70 +url: /nodejs/hanxinparameters/geterrorlevel/ +--- +## getErrorLevel() {#geterrorlevel} + +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. + +```javascript +getErrorLevel() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/gethanxineciencoding/_index.md b/english/nodejs/hanxinparameters/gethanxineciencoding/_index.md new file mode 100644 index 000000000..9fa9dda3b --- /dev/null +++ b/english/nodejs/hanxinparameters/gethanxineciencoding/_index.md @@ -0,0 +1,25 @@ +--- +title: "HanXinParameters.getHanXinECIEncoding" +linktitle: "getHanXinECIEncoding" +articleTitle: "getHanXinECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 170 +url: /nodejs/hanxinparameters/gethanxineciencoding/ +--- +## getHanXinECIEncoding() {#gethanxineciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +getHanXinECIEncoding() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/gethanxinencodemode/_index.md b/english/nodejs/hanxinparameters/gethanxinencodemode/_index.md new file mode 100644 index 000000000..c4ee26031 --- /dev/null +++ b/english/nodejs/hanxinparameters/gethanxinencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "HanXinParameters.getHanXinEncodeMode" +linktitle: "getHanXinEncodeMode" +articleTitle: "getHanXinEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HanXin encoding mode. Default value: HanXinEncodeMode.Mixed." +type: docs +weight: 130 +url: /nodejs/hanxinparameters/gethanxinencodemode/ +--- +## getHanXinEncodeMode() {#gethanxinencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. + +```javascript +getHanXinEncodeMode() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/gethanxinerrorlevel/_index.md b/english/nodejs/hanxinparameters/gethanxinerrorlevel/_index.md new file mode 100644 index 000000000..85ea3ab88 --- /dev/null +++ b/english/nodejs/hanxinparameters/gethanxinerrorlevel/_index.md @@ -0,0 +1,25 @@ +--- +title: "HanXinParameters.getHanXinErrorLevel" +linktitle: "getHanXinErrorLevel" +articleTitle: "getHanXinErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel." +type: docs +weight: 90 +url: /nodejs/hanxinparameters/gethanxinerrorlevel/ +--- +## getHanXinErrorLevel() {#gethanxinerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel(). + +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. + +```javascript +getHanXinErrorLevel() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/gethanxinversion/_index.md b/english/nodejs/hanxinparameters/gethanxinversion/_index.md new file mode 100644 index 000000000..98996f7aa --- /dev/null +++ b/english/nodejs/hanxinparameters/gethanxinversion/_index.md @@ -0,0 +1,25 @@ +--- +title: "HanXinParameters.getHanXinVersion" +linktitle: "getHanXinVersion" +articleTitle: "getHanXinVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto." +type: docs +weight: 50 +url: /nodejs/hanxinparameters/gethanxinversion/ +--- +## getHanXinVersion() {#gethanxinversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getVersion(). + +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. + +```javascript +getHanXinVersion() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/getversion/_index.md b/english/nodejs/hanxinparameters/getversion/_index.md new file mode 100644 index 000000000..bffc5f371 --- /dev/null +++ b/english/nodejs/hanxinparameters/getversion/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinParameters.getVersion" +linktitle: "getVersion" +articleTitle: "getVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto." +type: docs +weight: 30 +url: /nodejs/hanxinparameters/getversion/ +--- +## getVersion() {#getversion} + +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. + +```javascript +getVersion() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/hanxinparameters/_index.md b/english/nodejs/hanxinparameters/hanxinparameters/_index.md new file mode 100644 index 000000000..a94446953 --- /dev/null +++ b/english/nodejs/hanxinparameters/hanxinparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinParameters" +linktitle: "HanXinParameters" +articleTitle: "HanXinParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HanXinParameters class." +type: docs +weight: 10 +url: /nodejs/hanxinparameters/hanxinparameters/ +--- +## HanXinParameters(object) {#constructor} + +Initializes a new instance of the HanXinParameters class. + +```javascript +public HanXinParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/init/_index.md b/english/nodejs/hanxinparameters/init/_index.md new file mode 100644 index 000000000..5069e2b4f --- /dev/null +++ b/english/nodejs/hanxinparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HanXinParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/hanxinparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/seteciencoding/_index.md b/english/nodejs/hanxinparameters/seteciencoding/_index.md new file mode 100644 index 000000000..5d9fb7ef2 --- /dev/null +++ b/english/nodejs/hanxinparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 160 +url: /nodejs/hanxinparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation contains all well known charset encodings. + +```javascript +setECIEncoding( value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/setencodemode/_index.md b/english/nodejs/hanxinparameters/setencodemode/_index.md new file mode 100644 index 000000000..7505c5376 --- /dev/null +++ b/english/nodejs/hanxinparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HanXin encoding mode. Default value: EncodeMode.Mixed." +type: docs +weight: 120 +url: /nodejs/hanxinparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +HanXin encoding mode. Default value: EncodeMode.Mixed. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/seterrorlevel/_index.md b/english/nodejs/hanxinparameters/seterrorlevel/_index.md new file mode 100644 index 000000000..725ac20eb --- /dev/null +++ b/english/nodejs/hanxinparameters/seterrorlevel/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinParameters.setErrorLevel" +linktitle: "setErrorLevel" +articleTitle: "setErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel." +type: docs +weight: 80 +url: /nodejs/hanxinparameters/seterrorlevel/ +--- +## setErrorLevel(object) {#seterrorlevel} + +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see ErrorLevel. + +```javascript +setErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/sethanxineciencoding/_index.md b/english/nodejs/hanxinparameters/sethanxineciencoding/_index.md new file mode 100644 index 000000000..f7dde24d8 --- /dev/null +++ b/english/nodejs/hanxinparameters/sethanxineciencoding/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinParameters.setHanXinECIEncoding" +linktitle: "setHanXinECIEncoding" +articleTitle: "setHanXinECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 180 +url: /nodejs/hanxinparameters/sethanxineciencoding/ +--- +## setHanXinECIEncoding(object) {#sethanxineciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +setHanXinECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/sethanxinencodemode/_index.md b/english/nodejs/hanxinparameters/sethanxinencodemode/_index.md new file mode 100644 index 000000000..581029ddc --- /dev/null +++ b/english/nodejs/hanxinparameters/sethanxinencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinParameters.setHanXinEncodeMode" +linktitle: "setHanXinEncodeMode" +articleTitle: "setHanXinEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HanXin encoding mode. Default value: HanXinEncodeMode.Mixed." +type: docs +weight: 140 +url: /nodejs/hanxinparameters/sethanxinencodemode/ +--- +## setHanXinEncodeMode(object) {#sethanxinencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +HanXin encoding mode. Default value: HanXinEncodeMode.Mixed. + +```javascript +setHanXinEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/sethanxinerrorlevel/_index.md b/english/nodejs/hanxinparameters/sethanxinerrorlevel/_index.md new file mode 100644 index 000000000..9c235678f --- /dev/null +++ b/english/nodejs/hanxinparameters/sethanxinerrorlevel/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinParameters.setHanXinErrorLevel" +linktitle: "setHanXinErrorLevel" +articleTitle: "setHanXinErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel." +type: docs +weight: 100 +url: /nodejs/hanxinparameters/sethanxinerrorlevel/ +--- +## setHanXinErrorLevel(object) {#sethanxinerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel(). + +Level of Reed-Solomon error correction for Han Xin barcode. From low to high: L1, L2, L3, L4. see HanXinErrorLevel. + +```javascript +setHanXinErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/sethanxinversion/_index.md b/english/nodejs/hanxinparameters/sethanxinversion/_index.md new file mode 100644 index 000000000..1e8a049e8 --- /dev/null +++ b/english/nodejs/hanxinparameters/sethanxinversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinParameters.setHanXinVersion" +linktitle: "setHanXinVersion" +articleTitle: "setHanXinVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto." +type: docs +weight: 60 +url: /nodejs/hanxinparameters/sethanxinversion/ +--- +## setHanXinVersion(object) {#sethanxinversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setVersion(). + +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is HanXinVersion.Auto. + +```javascript +setHanXinVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/setversion/_index.md b/english/nodejs/hanxinparameters/setversion/_index.md new file mode 100644 index 000000000..da5f7ddc0 --- /dev/null +++ b/english/nodejs/hanxinparameters/setversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "HanXinParameters.setVersion" +linktitle: "setVersion" +articleTitle: "setVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto." +type: docs +weight: 40 +url: /nodejs/hanxinparameters/setversion/ +--- +## setVersion(object) {#setversion} + +Version of HanXin Code. From Version01 to Version84 for Han Xin code. Default value is Version.Auto. + +```javascript +setVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinparameters/tostring/_index.md b/english/nodejs/hanxinparameters/tostring/_index.md new file mode 100644 index 000000000..dd77d0ce4 --- /dev/null +++ b/english/nodejs/hanxinparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "HanXinParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this HanXinParameters." +type: docs +weight: 190 +url: /nodejs/hanxinparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this `HanXinParameters`. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this { + +### See Also + +* class [HanXinParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hanxinversion/_index.md b/english/nodejs/hanxinversion/_index.md new file mode 100644 index 000000000..58e637335 --- /dev/null +++ b/english/nodejs/hanxinversion/_index.md @@ -0,0 +1,112 @@ +--- +title: "HanXinVersion Enum" +linktitle: "HanXinVersion" +articleTitle: "HanXinVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of Han Xin Code. From Version01 - 23 x 23 modules to Version84 - 189 x 189 modules, increasing in steps of 2 modules per side." +type: docs +weight: 1180 +url: /nodejs/hanxinversion/ +--- +## HanXinVersion enumeration + +Version of Han Xin Code. From Version01 - 23 x 23 modules to Version84 - 189 x 189 modules, increasing in steps of 2 modules per side. + +```javascript +public enum HanXinVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the best version. This is default value. | +| VERSION_01 | `1` | Specifies version 1 with 23 x 23 modules. | +| VERSION_02 | `2` | Specifies version 2 with 25 x 25 modules. | +| VERSION_03 | `3` | Specifies version 3 with 27 x 27 modules. | +| VERSION_04 | `4` | Specifies version 4 with 29 x 29 modules. | +| VERSION_05 | `5` | Specifies version 5 with 31 x 31 modules. | +| VERSION_06 | `6` | Specifies version 6 with 33 x 33 modules. | +| VERSION_07 | `7` | Specifies version 7 with 35 x 35 modules. | +| VERSION_08 | `8` | Specifies version 8 with 37 x 37 modules. | +| VERSION_09 | `9` | Specifies version 9 with 39 x 39 modules. | +| VERSION_10 | `10` | Specifies version 10 with 41 x 41 modules. | +| VERSION_11 | `11` | Specifies version 11 with 43 x 43 modules. | +| VERSION_12 | `12` | Specifies version 12 with 45 x 45 modules. | +| VERSION_13 | `13` | Specifies version 13 with 47 x 47 modules. | +| VERSION_14 | `14` | Specifies version 14 with 49 x 49 modules. | +| VERSION_15 | `15` | Specifies version 15 with 51 x 51 modules. | +| VERSION_16 | `16` | Specifies version 16 with 53 x 53 modules. | +| VERSION_17 | `17` | Specifies version 17 with 55 x 55 modules. | +| VERSION_18 | `18` | Specifies version 18 with 57 x 57 modules. | +| VERSION_19 | `19` | Specifies version 19 with 59 x 59 modules. | +| VERSION_20 | `20` | Specifies version 20 with 61 x 61 modules. | +| VERSION_21 | `21` | Specifies version 21 with 63 x 63 modules. | +| VERSION_22 | `22` | Specifies version 22 with 65 x 65 modules. | +| VERSION_23 | `23` | Specifies version 23 with 67 x 67 modules. | +| VERSION_24 | `24` | Specifies version 24 with 69 x 69 modules. | +| VERSION_25 | `25` | Specifies version 25 with 71 x 71 modules. | +| VERSION_26 | `26` | Specifies version 26 with 73 x 73 modules. | +| VERSION_27 | `27` | Specifies version 27 with 75 x 75 modules. | +| VERSION_28 | `28` | Specifies version 28 with 77 x 77 modules. | +| VERSION_29 | `29` | Specifies version 29 with 79 x 79 modules. | +| VERSION_30 | `30` | Specifies version 30 with 81 x 81 modules. | +| VERSION_31 | `31` | Specifies version 31 with 83 x 83 modules. | +| VERSION_32 | `32` | Specifies version 32 with 85 x 85 modules. | +| VERSION_33 | `33` | Specifies version 33 with 87 x 87 modules. | +| VERSION_34 | `34` | Specifies version 34 with 89 x 89 modules. | +| VERSION_35 | `35` | Specifies version 35 with 91 x 91 modules. | +| VERSION_36 | `36` | Specifies version 36 with 93 x 93 modules. | +| VERSION_37 | `37` | Specifies version 37 with 95 x 95 modules. | +| VERSION_38 | `38` | Specifies version 38 with 97 x 97 modules. | +| VERSION_39 | `39` | Specifies version 39 with 99 x 99 modules. | +| VERSION_40 | `40` | Specifies version 40 with 101 x 101 modules. | +| VERSION_41 | `41` | Specifies version 41 with 103 x 103 modules. | +| VERSION_42 | `42` | Specifies version 42 with 105 x 105 modules. | +| VERSION_43 | `43` | Specifies version 43 with 107 x 107 modules. | +| VERSION_44 | `44` | Specifies version 44 with 109 x 109 modules. | +| VERSION_45 | `45` | Specifies version 45 with 111 x 111 modules. | +| VERSION_46 | `46` | Specifies version 46 with 113 x 113 modules. | +| VERSION_47 | `47` | Specifies version 47 with 115 x 115 modules. | +| VERSION_48 | `48` | Specifies version 48 with 117 x 117 modules. | +| VERSION_49 | `49` | Specifies version 49 with 119 x 119 modules. | +| VERSION_50 | `50` | Specifies version 50 with 121 x 121 modules. | +| VERSION_51 | `51` | Specifies version 51 with 123 x 123 modules. | +| VERSION_52 | `52` | Specifies version 52 with 125 x 125 modules. | +| VERSION_53 | `53` | Specifies version 53 with 127 x 127 modules. | +| VERSION_54 | `54` | Specifies version 54 with 129 x 129 modules. | +| VERSION_55 | `55` | Specifies version 55 with 131 x 131 modules. | +| VERSION_56 | `56` | Specifies version 56 with 133 x 133 modules. | +| VERSION_57 | `57` | Specifies version 57 with 135 x 135 modules. | +| VERSION_58 | `58` | Specifies version 58 with 137 x 137 modules. | +| VERSION_59 | `59` | Specifies version 59 with 139 x 139 modules. | +| VERSION_60 | `60` | Specifies version 60 with 141 x 141 modules. | +| VERSION_61 | `61` | Specifies version 61 with 143 x 143 modules. | +| VERSION_62 | `62` | Specifies version 62 with 145 x 145 modules. | +| VERSION_63 | `63` | Specifies version 63 with 147 x 147 modules. | +| VERSION_64 | `64` | Specifies version 64 with 149 x 149 modules. | +| VERSION_65 | `65` | Specifies version 65 with 151 x 151 modules. | +| VERSION_66 | `66` | Specifies version 66 with 153 x 153 modules. | +| VERSION_67 | `67` | Specifies version 67 with 155 x 155 modules. | +| VERSION_68 | `68` | Specifies version 68 with 157 x 157 modules. | +| VERSION_69 | `69` | Specifies version 69 with 159 x 159 modules. | +| VERSION_70 | `70` | Specifies version 70 with 161 x 161 modules. | +| VERSION_71 | `71` | Specifies version 71 with 163 x 163 modules. | +| VERSION_72 | `72` | Specifies version 72 with 165 x 165 modules. | +| VERSION_73 | `73` | Specifies version 73 with 167 x 167 modules. | +| VERSION_74 | `74` | Specifies version 74 with 169 x 169 modules. | +| VERSION_75 | `75` | Specifies version 75 with 171 x 171 modules. | +| VERSION_76 | `76` | Specifies version 76 with 173 x 173 modules. | +| VERSION_77 | `77` | Specifies version 77 with 175 x 175 modules. | +| VERSION_78 | `78` | Specifies version 78 with 177 x 177 modules. | +| VERSION_79 | `79` | Specifies version 79 with 179 x 179 modules. | +| VERSION_80 | `80` | Specifies version 80 with 181 x 181 modules. | +| VERSION_81 | `81` | Specifies version 81 with 183 x 183 modules. | +| VERSION_82 | `82` | Specifies version 82 with 185 x 185 modules. | +| VERSION_83 | `83` | Specifies version 83 with 187 x 187 modules. | +| VERSION_84 | `84` | Specifies version 84 with 189 x 189 modules. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcliccombinedcodetext/_index.md b/english/nodejs/hibcliccombinedcodetext/_index.md new file mode 100644 index 000000000..cd4b42125 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/_index.md @@ -0,0 +1,85 @@ +--- +title: "HIBCLICCombinedCodetext Class" +linktitle: "HIBCLICCombinedCodetext" +articleTitle: "HIBCLICCombinedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary and secodary data." +type: docs +weight: 230 +url: /nodejs/hibcliccombinedcodetext/ +--- +## HIBCLICCombinedCodetext class + +Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary and secodary data. + +```javascript +public class HIBCLICCombinedCodetext : HIBCLICComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCLICCombinedCodetext](./hibcliccombinedcodetext/#constructor) | Initializes a new instance of the HIBCLICCombinedCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified HIBCLICCombinedCodetext value. | +| [getBarcodeType](../hibcliccomplexcodetext/getbarcodetype/) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getPrimaryData](./getprimarydata/) | Identifies primary data. | +| [getSecondaryAndAdditionalData](./getsecondaryandadditionaldata/) | Identifies secondary and additional supplemental data. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setBarcodeType](../hibcliccomplexcodetext/setbarcodetype/)(*object*) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [setPrimaryData](./setprimarydata/)(*object*) | Identifies primary data. | +| [setSecondaryAndAdditionalData](./setsecondaryandadditionaldata/)(*object*) | Identifies secondary and additional supplemental data. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [auto_PrimaryData](./auto_primarydata/) | | +| [auto_SecondaryAndAdditionalData](./auto_secondaryandadditionaldata/) | | + +## Examples + +```javascript +let combinedCodetext = new HIBCLICCombinedCodetext(); +combinedCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC); +combinedCodetext.setPrimaryData(new PrimaryData()); +combinedCodetext.getPrimaryData().setProductOrCatalogNumber("12345"); +combinedCodetext.getPrimaryData().setLabelerIdentificationCode("A999"); +combinedCodetext.getPrimaryData().setUnitOfMeasureID(1); +combinedCodetext.setSecondaryAndAdditionalData(new SecondaryAndAdditionalData()); +combinedCodetext.getSecondaryAndAdditionalData().setExpiryDate(new Date()); +combinedCodetext.getSecondaryAndAdditionalData().setExpiryDateFormat(HIBCLICDateFormat.MMDDYY); +combinedCodetext.getSecondaryAndAdditionalData().setQuantity(30); +combinedCodetext.getSecondaryAndAdditionalData().setLotNumber("LOT123"); +combinedCodetext.getSecondaryAndAdditionalData().setSerialNumber("SERIAL123"); +combinedCodetext.getSecondaryAndAdditionalData().setDateOfManufacture(new Date()); +ComplexBarcodeGenerator generator = new ComplexBarcodeGenerator(combinedCodetext); +let image = generator.generateBarCodeImage(BarCodeImageFormat.PNG); +let reader = new BarCodeReader(image, null, DecodeType.HIBCQRLIC); +reader.readBarCodes(); +let codetext = reader.getFoundBarCodes()[0].getCodeText(); +let result = ComplexCodetextReader.tryDecodeHIBCLIC(codetext) ; +print("Product or catalog number: " + result.getPrimaryData().getProductOrCatalogNumber()); +print("Labeler identification code: " + result.getPrimaryData().getLabelerIdentificationCode()); +print("Unit of measure ID: " + result.getPrimaryData().getUnitOfMeasureID()); +print("Expiry date: " + result.getSecondaryAndAdditionalData().getExpiryDate()); +print("Quantity: " + result.getSecondaryAndAdditionalData().getQuantity()); +print("Lot number: " + result.getSecondaryAndAdditionalData().getLotNumber()); +print("Serial number: " + result.getSecondaryAndAdditionalData().getSerialNumber()); +print("Date of manufacture: " + result.getSecondaryAndAdditionalData().getDateOfManufacture()); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcliccombinedcodetext/construct/_index.md b/english/nodejs/hibcliccombinedcodetext/construct/_index.md new file mode 100644 index 000000000..75c2dfec6 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICCombinedCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/hibcliccombinedcodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/equals/_index.md b/english/nodejs/hibcliccombinedcodetext/equals/_index.md new file mode 100644 index 000000000..902e1a25f --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCLICCombinedCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified HIBCLICCombinedCodetext value." +type: docs +weight: 130 +url: /nodejs/hibcliccombinedcodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `HIBCLICCombinedCodetext` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/getconstructedcodetext/_index.md b/english/nodejs/hibcliccombinedcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..7fdd8dfe1 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICCombinedCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 110 +url: /nodejs/hibcliccombinedcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/getprimarydata/_index.md b/english/nodejs/hibcliccombinedcodetext/getprimarydata/_index.md new file mode 100644 index 000000000..7980a1e80 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/getprimarydata/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICCombinedCodetext.getPrimaryData" +linktitle: "getPrimaryData" +articleTitle: "getPrimaryData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies primary data." +type: docs +weight: 50 +url: /nodejs/hibcliccombinedcodetext/getprimarydata/ +--- +## getPrimaryData() {#getprimarydata} + +Identifies primary data. + +```javascript +getPrimaryData() +``` + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/getsecondaryandadditionaldata/_index.md b/english/nodejs/hibcliccombinedcodetext/getsecondaryandadditionaldata/_index.md new file mode 100644 index 000000000..b3b694779 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/getsecondaryandadditionaldata/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICCombinedCodetext.getSecondaryAndAdditionalData" +linktitle: "getSecondaryAndAdditionalData" +articleTitle: "getSecondaryAndAdditionalData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies secondary and additional supplemental data." +type: docs +weight: 80 +url: /nodejs/hibcliccombinedcodetext/getsecondaryandadditionaldata/ +--- +## getSecondaryAndAdditionalData() {#getsecondaryandadditionaldata} + +Identifies secondary and additional supplemental data. + +```javascript +getSecondaryAndAdditionalData() +``` + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/hashcode/_index.md b/english/nodejs/hibcliccombinedcodetext/hashcode/_index.md new file mode 100644 index 000000000..b0bbf2fd6 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICCombinedCodetext.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 140 +url: /nodejs/hibcliccombinedcodetext/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/hibcliccombinedcodetext/_index.md b/english/nodejs/hibcliccombinedcodetext/hibcliccombinedcodetext/_index.md new file mode 100644 index 000000000..9c77cb29b --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/hibcliccombinedcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICCombinedCodetext" +linktitle: "HIBCLICCombinedCodetext" +articleTitle: "HIBCLICCombinedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCLICCombinedCodetext class." +type: docs +weight: 10 +url: /nodejs/hibcliccombinedcodetext/hibcliccombinedcodetext/ +--- +## HIBCLICCombinedCodetext() {#constructor} + +Initializes a new instance of the HIBCLICCombinedCodetext class. + +```javascript +public HIBCLICCombinedCodetext() +``` + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/init/_index.md b/english/nodejs/hibcliccombinedcodetext/init/_index.md new file mode 100644 index 000000000..d1c786450 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICCombinedCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/hibcliccombinedcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/initfromstring/_index.md b/english/nodejs/hibcliccombinedcodetext/initfromstring/_index.md new file mode 100644 index 000000000..c6ee5c2f2 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICCombinedCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 120 +url: /nodejs/hibcliccombinedcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/setprimarydata/_index.md b/english/nodejs/hibcliccombinedcodetext/setprimarydata/_index.md new file mode 100644 index 000000000..72ab77470 --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/setprimarydata/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICCombinedCodetext.setPrimaryData" +linktitle: "setPrimaryData" +articleTitle: "setPrimaryData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies primary data." +type: docs +weight: 60 +url: /nodejs/hibcliccombinedcodetext/setprimarydata/ +--- +## setPrimaryData(object) {#setprimarydata} + +Identifies primary data. + +```javascript +setPrimaryData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccombinedcodetext/setsecondaryandadditionaldata/_index.md b/english/nodejs/hibcliccombinedcodetext/setsecondaryandadditionaldata/_index.md new file mode 100644 index 000000000..65894cfaf --- /dev/null +++ b/english/nodejs/hibcliccombinedcodetext/setsecondaryandadditionaldata/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICCombinedCodetext.setSecondaryAndAdditionalData" +linktitle: "setSecondaryAndAdditionalData" +articleTitle: "setSecondaryAndAdditionalData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies secondary and additional supplemental data." +type: docs +weight: 90 +url: /nodejs/hibcliccombinedcodetext/setsecondaryandadditionaldata/ +--- +## setSecondaryAndAdditionalData(object) {#setsecondaryandadditionaldata} + +Identifies secondary and additional supplemental data. + +```javascript +setSecondaryAndAdditionalData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCLICCombinedCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccomplexcodetext/_index.md b/english/nodejs/hibcliccomplexcodetext/_index.md new file mode 100644 index 000000000..ec5361a21 --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/_index.md @@ -0,0 +1,51 @@ +--- +title: "HIBCLICComplexCodetext Class" +linktitle: "HIBCLICComplexCodetext" +articleTitle: "HIBCLICComplexCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Base class for encoding and decoding the text embedded in the HIBC LIC code." +type: docs +weight: 220 +url: /nodejs/hibcliccomplexcodetext/ +--- +## HIBCLICComplexCodetext class + +Base class for encoding and decoding the text embedded in the HIBC LIC code. + +```javascript +public class HIBCLICComplexCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCLICComplexCodetext](./hibcliccomplexcodetext/#constructor)(*object*) | Initializes a new instance of the HIBCLICComplexCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getBarcodeType](./getbarcodetype/) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setBarcodeType](./setbarcodetype/)(*object*) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. | + +## Examples + +```javascript +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.HIBC_AZTEC_LIC); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultHIBCLICComplexCodetext = ComplexCodetextReader.tryDecodeHIBCLIC(result.getCodeText()); +print("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType()); +print("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcliccomplexcodetext/getbarcodetype/_index.md b/english/nodejs/hibcliccomplexcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..03ef6e52a --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICComplexCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. ..." +type: docs +weight: 40 +url: /nodejs/hibcliccomplexcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [HIBCLICComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccomplexcodetext/getconstructedcodetext/_index.md b/english/nodejs/hibcliccomplexcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..3ea6fc6b7 --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICComplexCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 20 +url: /nodejs/hibcliccomplexcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [HIBCLICComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccomplexcodetext/hibcliccomplexcodetext/_index.md b/english/nodejs/hibcliccomplexcodetext/hibcliccomplexcodetext/_index.md new file mode 100644 index 000000000..751eeaa16 --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/hibcliccomplexcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICComplexCodetext" +linktitle: "HIBCLICComplexCodetext" +articleTitle: "HIBCLICComplexCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCLICComplexCodetext class." +type: docs +weight: 10 +url: /nodejs/hibcliccomplexcodetext/hibcliccomplexcodetext/ +--- +## HIBCLICComplexCodetext(object) {#constructor} + +Initializes a new instance of the HIBCLICComplexCodetext class. + +```javascript +public HIBCLICComplexCodetext(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [HIBCLICComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccomplexcodetext/initfromstring/_index.md b/english/nodejs/hibcliccomplexcodetext/initfromstring/_index.md new file mode 100644 index 000000000..592776900 --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICComplexCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 30 +url: /nodejs/hibcliccomplexcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [HIBCLICComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcliccomplexcodetext/setbarcodetype/_index.md b/english/nodejs/hibcliccomplexcodetext/setbarcodetype/_index.md new file mode 100644 index 000000000..7fd62bb00 --- /dev/null +++ b/english/nodejs/hibcliccomplexcodetext/setbarcodetype/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCLICComplexCodetext.setBarcodeType" +linktitle: "setBarcodeType" +articleTitle: "setBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. ..." +type: docs +weight: 50 +url: /nodejs/hibcliccomplexcodetext/setbarcodetype/ +--- +## setBarcodeType(object) {#setbarcodetype} + +Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. + +```javascript +setBarcodeType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Return Value + +Barcode + +type. + +### See Also + +* class [HIBCLICComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicdateformat/_index.md b/english/nodejs/hibclicdateformat/_index.md new file mode 100644 index 000000000..9e82ea768 --- /dev/null +++ b/english/nodejs/hibclicdateformat/_index.md @@ -0,0 +1,35 @@ +--- +title: "HIBCLICDateFormat Enum" +linktitle: "HIBCLICDateFormat" +articleTitle: "HIBCLICDateFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the different types of date formats for HIBC LIC." +type: docs +weight: 310 +url: /nodejs/hibclicdateformat/ +--- +## HIBCLICDateFormat enumeration + +Specifies the different types of date formats for HIBC LIC. + +```javascript +public enum HIBCLICDateFormat +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| YYYYMMDD | `0` | YYYYMMDD format. Will be encoded in additional supplemental data. | +| MMYY | `1` | MMYY format. | +| MMDDYY | `2` | MMDDYY format. | +| YYMMDD | `3` | YYMMDD format. | +| YYMMDDHH | `4` | YYMMDDHH format. | +| YYJJJ | `5` | Julian date format. | +| YYJJJHH | `6` | Julian date format with hours. | +| NONE | `7` | Do not encode expiry date. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/_index.md b/english/nodejs/hibclicprimarydatacodetext/_index.md new file mode 100644 index 000000000..a37f2c38b --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/_index.md @@ -0,0 +1,70 @@ +--- +title: "HIBCLICPrimaryDataCodetext Class" +linktitle: "HIBCLICPrimaryDataCodetext" +articleTitle: "HIBCLICPrimaryDataCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary data." +type: docs +weight: 240 +url: /nodejs/hibclicprimarydatacodetext/ +--- +## HIBCLICPrimaryDataCodetext class + +Class for encoding and decoding the text embedded in the HIBC LIC code which stores primary data. + +```javascript +public class HIBCLICPrimaryDataCodetext : HIBCLICComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCLICPrimaryDataCodetext](./hibclicprimarydatacodetext/#constructor) | Initializes a new instance of the HIBCLICPrimaryDataCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified HIBCLICPrimaryDataCodetext value. | +| [getBarcodeType](../hibcliccomplexcodetext/getbarcodetype/) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getData](./getdata/) | Identifies primary data. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setBarcodeType](../hibcliccomplexcodetext/setbarcodetype/)(*object*) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [setData](./setdata/)(*object*) | Identifies primary data. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [data](./data/) | | + +## Examples + +```javascript +let complexCodetext = new HIBCLICPrimaryCodetext(); +complexCodetext.setBarcodeType(EncodeTypes.HIBCQRLIC); +complexCodetext.setData(new PrimaryData()); +complexCodetext.getData().setProductOrCatalogNumber("12345"); +complexCodetext.getData().setLabelerIdentificationCode("A999"); +complexCodetext.getData().setUnitOfMeasureID(1); +let generator = new ComplexBarcodeGenerator(complexCodetext); +let image = generator.generateBarCodeImage(BarCodeImageFormat.PNG); +let reader = new BarCodeReader(image, null, DecodeType.HIBCQRLIC); +reader.readBarCodes(); +let codetext = reader.getFoundBarCodes()[0].getCodeText(); +let result = ComplexCodetextReader.tryDecodeHIBCLIC(codetext) ; +print("Product or catalog number: " + result.getData().getProductOrCatalogNumber()); +print("Labeler identification code: " + result.getData().getLabelerIdentificationCode()); +print("Unit of measure ID: " + result.getData().getUnitOfMeasureID()); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/construct/_index.md b/english/nodejs/hibclicprimarydatacodetext/construct/_index.md new file mode 100644 index 000000000..f396d3294 --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICPrimaryDataCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/hibclicprimarydatacodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(java_class) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| java_class | object | | + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/equals/_index.md b/english/nodejs/hibclicprimarydatacodetext/equals/_index.md new file mode 100644 index 000000000..58028b6bd --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCLICPrimaryDataCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified HIBCLICPrimaryDataCodetext value." +type: docs +weight: 100 +url: /nodejs/hibclicprimarydatacodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `HIBCLICPrimaryDataCodetext` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/getconstructedcodetext/_index.md b/english/nodejs/hibclicprimarydatacodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..af8e3927d --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICPrimaryDataCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 80 +url: /nodejs/hibclicprimarydatacodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/getdata/_index.md b/english/nodejs/hibclicprimarydatacodetext/getdata/_index.md new file mode 100644 index 000000000..c587572df --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/getdata/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICPrimaryDataCodetext.getData" +linktitle: "getData" +articleTitle: "getData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies primary data." +type: docs +weight: 60 +url: /nodejs/hibclicprimarydatacodetext/getdata/ +--- +## getData() {#getdata} + +Identifies primary data. + +```javascript +getData() +``` + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/hashcode/_index.md b/english/nodejs/hibclicprimarydatacodetext/hashcode/_index.md new file mode 100644 index 000000000..bc776913a --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICPrimaryDataCodetext.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 110 +url: /nodejs/hibclicprimarydatacodetext/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/hibclicprimarydatacodetext/_index.md b/english/nodejs/hibclicprimarydatacodetext/hibclicprimarydatacodetext/_index.md new file mode 100644 index 000000000..89e60d7fd --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/hibclicprimarydatacodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICPrimaryDataCodetext" +linktitle: "HIBCLICPrimaryDataCodetext" +articleTitle: "HIBCLICPrimaryDataCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCLICPrimaryDataCodetext class." +type: docs +weight: 10 +url: /nodejs/hibclicprimarydatacodetext/hibclicprimarydatacodetext/ +--- +## HIBCLICPrimaryDataCodetext() {#constructor} + +Initializes a new instance of the HIBCLICPrimaryDataCodetext class. + +```javascript +public HIBCLICPrimaryDataCodetext() +``` + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/init/_index.md b/english/nodejs/hibclicprimarydatacodetext/init/_index.md new file mode 100644 index 000000000..2ed75f283 --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICPrimaryDataCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/hibclicprimarydatacodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/initfromstring/_index.md b/english/nodejs/hibclicprimarydatacodetext/initfromstring/_index.md new file mode 100644 index 000000000..c65656bd8 --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICPrimaryDataCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 90 +url: /nodejs/hibclicprimarydatacodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicprimarydatacodetext/setdata/_index.md b/english/nodejs/hibclicprimarydatacodetext/setdata/_index.md new file mode 100644 index 000000000..61fc984d5 --- /dev/null +++ b/english/nodejs/hibclicprimarydatacodetext/setdata/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICPrimaryDataCodetext.setData" +linktitle: "setData" +articleTitle: "setData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies primary data." +type: docs +weight: 70 +url: /nodejs/hibclicprimarydatacodetext/setdata/ +--- +## setData(object) {#setdata} + +Identifies primary data. + +```javascript +setData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCLICPrimaryDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/_index.md new file mode 100644 index 000000000..81fe5d562 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/_index.md @@ -0,0 +1,52 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext Class" +linktitle: "HIBCLICSecondaryAndAdditionalDataCodetext" +articleTitle: "HIBCLICSecondaryAndAdditionalDataCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the HIBC LIC code which stores seconday data." +type: docs +weight: 250 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/ +--- +## HIBCLICSecondaryAndAdditionalDataCodetext class + +Class for encoding and decoding the text embedded in the HIBC LIC code which stores seconday data. + +```javascript +public class HIBCLICSecondaryAndAdditionalDataCodetext : HIBCLICComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCLICSecondaryAndAdditionalDataCodetext](./hibclicsecondaryandadditionaldatacodetext/#constructor) | Initializes a new instance of the HIBCLICSecondaryAndAdditionalDataCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified HIBCLICSecondaryAndAdditionalDataCodetext value. | +| [getBarcodeType](../hibcliccomplexcodetext/getbarcodetype/) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getData](./getdata/) | Identifies secodary and additional supplemental data. | +| [getLinkCharacter](./getlinkcharacter/) | Identifies link character. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setBarcodeType](../hibcliccomplexcodetext/setbarcodetype/)(*object*) | Gets or sets barcode type. HIBC LIC codetext can be encoded using HIBCCode39LIC, HIBCCode128LIC, HIBCAztecLIC, HIBCDataMatrixLIC and HIBCQRLIC encode types. Default value: HIBCCode39LIC. *(Inherited from HIBCLICComplexCodetext)* | +| [setData](./setdata/)(*object*) | Identifies secodary and additional supplemental data. | +| [setLinkCharacter](./setlinkcharacter/)(*object*) | Identifies link character. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [data](./data/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/construct/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/construct/_index.md new file mode 100644 index 000000000..1812161f2 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(java_class) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| java_class | object | | + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/equals/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/equals/_index.md new file mode 100644 index 000000000..a1f90c9e2 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified HIBCLICSecondaryAndAdditionalDataCodetext value." +type: docs +weight: 110 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `HIBCLICSecondaryAndAdditionalDataCodetext` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getconstructedcodetext/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..7d8620a12 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 90 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getdata/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getdata/_index.md new file mode 100644 index 000000000..cac793e00 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getdata/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.getData" +linktitle: "getData" +articleTitle: "getData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies secodary and additional supplemental data." +type: docs +weight: 50 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/getdata/ +--- +## getData() {#getdata} + +Identifies secodary and additional supplemental data. + +```javascript +getData() +``` + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getlinkcharacter/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getlinkcharacter/_index.md new file mode 100644 index 000000000..2103dd020 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/getlinkcharacter/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.getLinkCharacter" +linktitle: "getLinkCharacter" +articleTitle: "getLinkCharacter" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies link character." +type: docs +weight: 70 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/getlinkcharacter/ +--- +## getLinkCharacter() {#getlinkcharacter} + +Identifies link character. + +```javascript +getLinkCharacter() +``` + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hashcode/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hashcode/_index.md new file mode 100644 index 000000000..0143f8b96 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 120 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hibclicsecondaryandadditionaldatacodetext/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hibclicsecondaryandadditionaldatacodetext/_index.md new file mode 100644 index 000000000..6aec7695b --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/hibclicsecondaryandadditionaldatacodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext" +linktitle: "HIBCLICSecondaryAndAdditionalDataCodetext" +articleTitle: "HIBCLICSecondaryAndAdditionalDataCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCLICSecondaryAndAdditionalDataCodetext class." +type: docs +weight: 10 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/hibclicsecondaryandadditionaldatacodetext/ +--- +## HIBCLICSecondaryAndAdditionalDataCodetext() {#constructor} + +Initializes a new instance of the HIBCLICSecondaryAndAdditionalDataCodetext class. + +```javascript +public HIBCLICSecondaryAndAdditionalDataCodetext() +``` + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/init/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/init/_index.md new file mode 100644 index 000000000..618b8a9cb --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 130 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/initfromstring/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/initfromstring/_index.md new file mode 100644 index 000000000..999abe446 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 100 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setdata/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setdata/_index.md new file mode 100644 index 000000000..7034d024e --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setdata/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.setData" +linktitle: "setData" +articleTitle: "setData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies secodary and additional supplemental data." +type: docs +weight: 60 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/setdata/ +--- +## setData(object) {#setdata} + +Identifies secodary and additional supplemental data. + +```javascript +setData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setlinkcharacter/_index.md b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setlinkcharacter/_index.md new file mode 100644 index 000000000..a729bcce4 --- /dev/null +++ b/english/nodejs/hibclicsecondaryandadditionaldatacodetext/setlinkcharacter/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCLICSecondaryAndAdditionalDataCodetext.setLinkCharacter" +linktitle: "setLinkCharacter" +articleTitle: "setLinkCharacter" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies link character." +type: docs +weight: 80 +url: /nodejs/hibclicsecondaryandadditionaldatacodetext/setlinkcharacter/ +--- +## setLinkCharacter(object) {#setlinkcharacter} + +Identifies link character. + +```javascript +setLinkCharacter(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCLICSecondaryAndAdditionalDataCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/_index.md b/english/nodejs/hibcpascodetext/_index.md new file mode 100644 index 000000000..a50e4d3d7 --- /dev/null +++ b/english/nodejs/hibcpascodetext/_index.md @@ -0,0 +1,75 @@ +--- +title: "HIBCPASCodetext Class" +linktitle: "HIBCPASCodetext" +articleTitle: "HIBCPASCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the HIBC PAS code." +type: docs +weight: 260 +url: /nodejs/hibcpascodetext/ +--- +## HIBCPASCodetext class + +Class for encoding and decoding the text embedded in the HIBC PAS code. + +```javascript +public class HIBCPASCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCPASCodetext](./hibcpascodetext/#constructor) | Initializes a new instance of the HIBCPASCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addHIBCPASRecord](./addhibcpasrecord/)(*object*) | Adds new record. | +| [addRecord](./addrecord/)(*object, object*) | Adds new record. | +| [clear](./clear/) | Clears records list. | +| [construct](./construct/)(*object*) | HIBCPASRecord constructor. | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified HIBCPASCodetext value. | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getDataLocation](./getdatalocation/) | Identifies data location. | +| [getRecords](./getrecords/) | Gets records list. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setBarcodeType](./setbarcodetype/)(*object*) | Gets or sets barcode type. HIBC PAS codetext can be encoded using HIBCCode39PAS, HIBCCode128PAS, HIBCAztec:PAS, HIBCDataMatrixPAS and HIBCQRPAS encode types. Default value: HIBCCode39PAS. | +| [setDataLocation](./setdatalocation/)(*object*) | Identifies data location. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +## Examples + +This sample shows how to encode and decode HIBC PAS using HIBCPASCodetext. + +```javascript +let complexCodetext = new HIBCPASComplexCodetext(); +complexCodetext.setDataLocation(HIBCPASDataLocation.PATIENT); +complexCodetext.addRecord(HIBCPASDataType.LABELER_IDENTIFICATION_CODE, "A123"); +complexCodetext.addRecord(HIBCPASDataType.MANUFACTURER_SERIAL_NUMBER, "SERIAL123"); +complexCodetext.setBarcodeType(EncodeTypes.HIBC_DATA_MATRIX_PAS); +let generator = new ComplexBarcodeGenerator(complexCodetext); +BarCodeReader reader = new BarCodeReader(generator.generateBarCodeImage(BarCodeImageFormat.PNG), null, DecodeType.HIBC_DATA_MATRIX_PAS); +reader.readBarCodes(); +let codetext = reader.getFoundBarCodes()[0].getCodeText(); +let readCodetext = ComplexCodetextReader.tryDecodeHIBCPAS(codetext); +print("Data location: " + readCodetext.getDataLocation()); +print("Data type: " + readCodetext.getRecords()[0].getDataType()); +print("Data: " + readCodetext.getRecords()[0].getData()); +print("Data type: " + readCodetext.getRecords()[1].getDataType()); +print("Data: " + readCodetext.getRecords()[1].getData()); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcpascodetext/addhibcpasrecord/_index.md b/english/nodejs/hibcpascodetext/addhibcpasrecord/_index.md new file mode 100644 index 000000000..e20730970 --- /dev/null +++ b/english/nodejs/hibcpascodetext/addhibcpasrecord/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASCodetext.addHIBCPASRecord" +linktitle: "addHIBCPASRecord" +articleTitle: "addHIBCPASRecord" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds new record." +type: docs +weight: 100 +url: /nodejs/hibcpascodetext/addhibcpasrecord/ +--- +## addHIBCPASRecord(object) {#addhibcpasrecord} + +Adds new record + +```javascript +addHIBCPASRecord(record) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| record | object | Record to be added | + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/addrecord/_index.md b/english/nodejs/hibcpascodetext/addrecord/_index.md new file mode 100644 index 000000000..68b416bc7 --- /dev/null +++ b/english/nodejs/hibcpascodetext/addrecord/_index.md @@ -0,0 +1,28 @@ +--- +title: "HIBCPASCodetext.addRecord" +linktitle: "addRecord" +articleTitle: "addRecord" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds new record." +type: docs +weight: 90 +url: /nodejs/hibcpascodetext/addrecord/ +--- +## addRecord(object, object) {#addrecord} + +Adds new record + +```javascript +addRecord(dataType, data) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| dataType | object | Type of data | +| data | object | Data string | + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/clear/_index.md b/english/nodejs/hibcpascodetext/clear/_index.md new file mode 100644 index 000000000..2c2217e91 --- /dev/null +++ b/english/nodejs/hibcpascodetext/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASCodetext.clear" +linktitle: "clear" +articleTitle: "clear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Clears records list." +type: docs +weight: 110 +url: /nodejs/hibcpascodetext/clear/ +--- +## clear() {#clear} + +Clears records list + +```javascript +clear() +``` + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/construct/_index.md b/english/nodejs/hibcpascodetext/construct/_index.md new file mode 100644 index 000000000..f68e7116c --- /dev/null +++ b/english/nodejs/hibcpascodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HIBCPASRecord constructor." +type: docs +weight: 30 +url: /nodejs/hibcpascodetext/construct/ +--- +## construct(object) {#construct} + +HIBCPASRecord constructor + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/equals/_index.md b/english/nodejs/hibcpascodetext/equals/_index.md new file mode 100644 index 000000000..604c2df22 --- /dev/null +++ b/english/nodejs/hibcpascodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCPASCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified HIBCPASCodetext value." +type: docs +weight: 150 +url: /nodejs/hibcpascodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `HIBCPASCodetext` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/getbarcodetype/_index.md b/english/nodejs/hibcpascodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..327de5293 --- /dev/null +++ b/english/nodejs/hibcpascodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCPASCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 120 +url: /nodejs/hibcpascodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/getconstructedcodetext/_index.md b/english/nodejs/hibcpascodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..31e352f34 --- /dev/null +++ b/english/nodejs/hibcpascodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCPASCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 130 +url: /nodejs/hibcpascodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/getdatalocation/_index.md b/english/nodejs/hibcpascodetext/getdatalocation/_index.md new file mode 100644 index 000000000..ca1345011 --- /dev/null +++ b/english/nodejs/hibcpascodetext/getdatalocation/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASCodetext.getDataLocation" +linktitle: "getDataLocation" +articleTitle: "getDataLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data location." +type: docs +weight: 60 +url: /nodejs/hibcpascodetext/getdatalocation/ +--- +## getDataLocation() {#getdatalocation} + +Identifies data location. + +```javascript +getDataLocation() +``` + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/getrecords/_index.md b/english/nodejs/hibcpascodetext/getrecords/_index.md new file mode 100644 index 000000000..602da3053 --- /dev/null +++ b/english/nodejs/hibcpascodetext/getrecords/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCPASCodetext.getRecords" +linktitle: "getRecords" +articleTitle: "getRecords" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets records list." +type: docs +weight: 80 +url: /nodejs/hibcpascodetext/getrecords/ +--- +## getRecords() {#getrecords} + +Gets records list + +```javascript +getRecords() +``` + +### Return Value + +List + +of records + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/hashcode/_index.md b/english/nodejs/hibcpascodetext/hashcode/_index.md new file mode 100644 index 000000000..5ecea18c8 --- /dev/null +++ b/english/nodejs/hibcpascodetext/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCPASCodetext.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 160 +url: /nodejs/hibcpascodetext/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/hibcpascodetext/_index.md b/english/nodejs/hibcpascodetext/hibcpascodetext/_index.md new file mode 100644 index 000000000..13aeb3574 --- /dev/null +++ b/english/nodejs/hibcpascodetext/hibcpascodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASCodetext" +linktitle: "HIBCPASCodetext" +articleTitle: "HIBCPASCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCPASCodetext class." +type: docs +weight: 10 +url: /nodejs/hibcpascodetext/hibcpascodetext/ +--- +## HIBCPASCodetext() {#constructor} + +Initializes a new instance of the HIBCPASCodetext class. + +```javascript +public HIBCPASCodetext() +``` + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/init/_index.md b/english/nodejs/hibcpascodetext/init/_index.md new file mode 100644 index 000000000..f6d2712f6 --- /dev/null +++ b/english/nodejs/hibcpascodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/hibcpascodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/initfromstring/_index.md b/english/nodejs/hibcpascodetext/initfromstring/_index.md new file mode 100644 index 000000000..1edfa7bfc --- /dev/null +++ b/english/nodejs/hibcpascodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 140 +url: /nodejs/hibcpascodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/setbarcodetype/_index.md b/english/nodejs/hibcpascodetext/setbarcodetype/_index.md new file mode 100644 index 000000000..d8fbb7549 --- /dev/null +++ b/english/nodejs/hibcpascodetext/setbarcodetype/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCPASCodetext.setBarcodeType" +linktitle: "setBarcodeType" +articleTitle: "setBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets barcode type. HIBC PAS codetext can be encoded using HIBCCode39PAS, HIBCCode128PAS, HIBCAztec:PAS, HIBCDataMatrixPAS and HIBCQRPAS encode types...." +type: docs +weight: 50 +url: /nodejs/hibcpascodetext/setbarcodetype/ +--- +## setBarcodeType(object) {#setbarcodetype} + +Gets or sets barcode type. HIBC PAS codetext can be encoded using HIBCCode39PAS, HIBCCode128PAS, HIBCAztec:PAS, HIBCDataMatrixPAS and HIBCQRPAS encode types. Default value: HIBCCode39PAS. + +```javascript +setBarcodeType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Return Value + +Barcode + +type. + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpascodetext/setdatalocation/_index.md b/english/nodejs/hibcpascodetext/setdatalocation/_index.md new file mode 100644 index 000000000..29fc120e1 --- /dev/null +++ b/english/nodejs/hibcpascodetext/setdatalocation/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASCodetext.setDataLocation" +linktitle: "setDataLocation" +articleTitle: "setDataLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data location." +type: docs +weight: 70 +url: /nodejs/hibcpascodetext/setdatalocation/ +--- +## setDataLocation(object) {#setdatalocation} + +Identifies data location. + +```javascript +setDataLocation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCPASCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasdatalocation/_index.md b/english/nodejs/hibcpasdatalocation/_index.md new file mode 100644 index 000000000..825bb3bbe --- /dev/null +++ b/english/nodejs/hibcpasdatalocation/_index.md @@ -0,0 +1,40 @@ +--- +title: "HIBCPASDataLocation Enum" +linktitle: "HIBCPASDataLocation" +articleTitle: "HIBCPASDataLocation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HIBC PAS data location types." +type: docs +weight: 320 +url: /nodejs/hibcpasdatalocation/ +--- +## HIBCPASDataLocation enumeration + +HIBC PAS data location types. + +```javascript +public enum HIBCPASDataLocation +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| PATIENT | `0` | A - Patient | +| PATIENT_CARE_RECORD | `1` | B - Patient Care Record | +| SPECIMEN_CONTAINER | `2` | C - Specimen Container | +| DIRECT_PATIENT_IMAGE_ITEM | `3` | D - Direct Patient Image Item | +| BUSINESS_RECORD | `4` | E - Business Record | +| MEDICAL_ADMINISTRATION_RECORD | `5` | F - Medical Administration Record | +| LIBRARY_REFERENCE_MATERIAL | `6` | G - Library Reference Material | +| DEVICES_AND_MATERIALS | `7` | H - Devices and Materials | +| IDENTIFICATION_CARD | `8` | I - Identification Card | +| PRODUCT_CONTAINER | `9` | J - Product Container | +| ASSET | `10` | K - Asset data type | +| SURGICAL_INSTRUMENT | `11` | L - Surgical Instrument | +| USER_DEFINED | `25` | Z - User Defined | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcpasdatatype/_index.md b/english/nodejs/hibcpasdatatype/_index.md new file mode 100644 index 000000000..43042baf0 --- /dev/null +++ b/english/nodejs/hibcpasdatatype/_index.md @@ -0,0 +1,51 @@ +--- +title: "HIBCPASDataType Enum" +linktitle: "HIBCPASDataType" +articleTitle: "HIBCPASDataType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HIBC PAS record's data types." +type: docs +weight: 330 +url: /nodejs/hibcpasdatatype/ +--- +## HIBCPASDataType enumeration + +HIBC PAS record's data types. + +```javascript +public enum HIBCPASDataType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| LABELER_IDENTIFICATION_CODE | `0` | A - Labeler Identification Code | +| SERVICE_IDENTIFICATION | `1` | B - Service Identification | +| PATIENT_IDENTIFICATION | `2` | C - Patient Identification | +| SPECIMEN_IDENTIFICATION | `3` | D - Specimen Identification | +| PERSONNEL_IDENTIFICATION | `4` | E - Personnel Identification | +| ADMINISTRABLE_PRODUCT_IDENTIFICATION | `5` | F - Administrable Product Identification | +| IMPLANTABLE_PRODUCT_INFORMATION | `6` | G - Implantable Product Information | +| HOSPITAL_ITEM_IDENTIFICATION | `7` | H - Hospital Item Identification | +| MEDICAL_PROCEDURE_IDENTIFICATION | `8` | I - Medical Procedure Identification | +| REIMBURSEMENT_CATEGORY | `9` | J - Reimbursement Category | +| BLOOD_PRODUCT_IDENTIFICATION | `10` | K - Blood Product Identification | +| DEMOGRAPHIC_DATA | `11` | L - Demographic Data | +| DATE_TIME | `12` | M - DateTime in YYYDDDHHMMG format | +| ASSET_IDENTIFICATION | `13` | N - Asset Identification | +| PURCHASE_ORDER_NUMBER | `14` | O - Purchase Order Number | +| DIETARY_ITEM_IDENTIFICATION | `15` | P - Dietary Item Identification | +| MANUFACTURER_SERIAL_NUMBER | `16` | Q - Manufacturer Serial Number | +| LIBRARY_MATERIALS_IDENTIFICATION | `17` | R - Library Materials Identification | +| BUSINESS_CONTROL_NUMBER | `18` | S - Business Control Number | +| EPISODE_OF_CARE_IDENTIFICATION | `19` | T - Episode of Care Identification | +| HEALTH_INDUSTRY_NUMBER | `20` | U - Health Industry Number | +| PATIENT_VISIT_ID | `21` | V - Patient Visit ID | +| XML_DOCUMENT | `22` | X - XML Document | +| USER_DEFINED | `25` | Z - User Defined | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcpasrecord/_index.md b/english/nodejs/hibcpasrecord/_index.md new file mode 100644 index 000000000..b0bbf81ad --- /dev/null +++ b/english/nodejs/hibcpasrecord/_index.md @@ -0,0 +1,47 @@ +--- +title: "HIBCPASRecord Class" +linktitle: "HIBCPASRecord" +articleTitle: "HIBCPASRecord" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for storing HIBC PAS record." +type: docs +weight: 270 +url: /nodejs/hibcpasrecord/ +--- +## HIBCPASRecord class + +Class for storing HIBC PAS record. + +```javascript +public class HIBCPASRecord : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HIBCPASRecord](./hibcpasrecord/#constructor)(*object, object*) | HIBCPASRecord constructor. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | HIBCPASRecord constructor. | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified HIBCPASDataType value. | +| [getData](./getdata/) | Identifies data. | +| [getDataType](./getdatatype/) | Identifies data type. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [setData](./setdata/)(*object*) | Identifies data. | +| [setDataType](./setdatatype/)(*object*) | Identifies data type. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hibcpasrecord/construct/_index.md b/english/nodejs/hibcpasrecord/construct/_index.md new file mode 100644 index 000000000..bd723764f --- /dev/null +++ b/english/nodejs/hibcpasrecord/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASRecord.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HIBCPASRecord constructor." +type: docs +weight: 30 +url: /nodejs/hibcpasrecord/construct/ +--- +## construct(object) {#construct} + +HIBCPASRecord constructor + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/equals/_index.md b/english/nodejs/hibcpasrecord/equals/_index.md new file mode 100644 index 000000000..73a406a30 --- /dev/null +++ b/english/nodejs/hibcpasrecord/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "HIBCPASRecord.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified HIBCPASDataType value." +type: docs +weight: 90 +url: /nodejs/hibcpasrecord/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `HIBCPASDataType` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/getdata/_index.md b/english/nodejs/hibcpasrecord/getdata/_index.md new file mode 100644 index 000000000..21356a724 --- /dev/null +++ b/english/nodejs/hibcpasrecord/getdata/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASRecord.getData" +linktitle: "getData" +articleTitle: "getData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data." +type: docs +weight: 70 +url: /nodejs/hibcpasrecord/getdata/ +--- +## getData() {#getdata} + +Identifies data. + +```javascript +getData() +``` + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/getdatatype/_index.md b/english/nodejs/hibcpasrecord/getdatatype/_index.md new file mode 100644 index 000000000..d4087e016 --- /dev/null +++ b/english/nodejs/hibcpasrecord/getdatatype/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASRecord.getDataType" +linktitle: "getDataType" +articleTitle: "getDataType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data type." +type: docs +weight: 50 +url: /nodejs/hibcpasrecord/getdatatype/ +--- +## getDataType() {#getdatatype} + +Identifies data type. + +```javascript +getDataType() +``` + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/hashcode/_index.md b/english/nodejs/hibcpasrecord/hashcode/_index.md new file mode 100644 index 000000000..2b13543dd --- /dev/null +++ b/english/nodejs/hibcpasrecord/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "HIBCPASRecord.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 100 +url: /nodejs/hibcpasrecord/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/hibcpasrecord/_index.md b/english/nodejs/hibcpasrecord/hibcpasrecord/_index.md new file mode 100644 index 000000000..eac3d3af1 --- /dev/null +++ b/english/nodejs/hibcpasrecord/hibcpasrecord/_index.md @@ -0,0 +1,28 @@ +--- +title: "HIBCPASRecord" +linktitle: "HIBCPASRecord" +articleTitle: "HIBCPASRecord" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HIBCPASRecord class." +type: docs +weight: 10 +url: /nodejs/hibcpasrecord/hibcpasrecord/ +--- +## HIBCPASRecord(object, object) {#constructor} + +HIBCPASRecord constructor + +```javascript +public HIBCPASRecord(object dataType, object data) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| dataType | object | Type of data. | +| data | object | Data string. | + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/init/_index.md b/english/nodejs/hibcpasrecord/init/_index.md new file mode 100644 index 000000000..70b891ec1 --- /dev/null +++ b/english/nodejs/hibcpasrecord/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "HIBCPASRecord.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/hibcpasrecord/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/setdata/_index.md b/english/nodejs/hibcpasrecord/setdata/_index.md new file mode 100644 index 000000000..20831e15c --- /dev/null +++ b/english/nodejs/hibcpasrecord/setdata/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASRecord.setData" +linktitle: "setData" +articleTitle: "setData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data." +type: docs +weight: 80 +url: /nodejs/hibcpasrecord/setdata/ +--- +## setData(object) {#setdata} + +Identifies data. + +```javascript +setData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hibcpasrecord/setdatatype/_index.md b/english/nodejs/hibcpasrecord/setdatatype/_index.md new file mode 100644 index 000000000..ae251d2c2 --- /dev/null +++ b/english/nodejs/hibcpasrecord/setdatatype/_index.md @@ -0,0 +1,27 @@ +--- +title: "HIBCPASRecord.setDataType" +linktitle: "setDataType" +articleTitle: "setDataType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies data type." +type: docs +weight: 60 +url: /nodejs/hibcpasrecord/setdatatype/ +--- +## setDataType(object) {#setdatatype} + +Identifies data type. + +```javascript +setDataType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HIBCPASRecord](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/_index.md b/english/nodejs/hslacolor/_index.md new file mode 100644 index 000000000..9ead55407 --- /dev/null +++ b/english/nodejs/hslacolor/_index.md @@ -0,0 +1,47 @@ +--- +title: "HslaColor Class" +linktitle: "HslaColor" +articleTitle: "HslaColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for representing HSLA color (Hue, Saturation, Lightness, Alpha)." +type: docs +weight: 810 +url: /nodejs/hslacolor/ +--- +## HslaColor class + +Class for representing HSLA color (Hue, Saturation, Lightness, Alpha) + +```javascript +public class HslaColor +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [HslaColor](./hslacolor/#constructor)(*object, object, object, object*) | Constructor for HslaColor. | + +## Methods + +| Name | Description | +| --- | --- | +| [checkAlpha](./checkalpha/)(*object*) | | +| [checkHue](./checkhue/)(*object*) | | +| [checkSatLight](./checksatlight/)(*object*) | | +| [convertHslaToRgba](./converthslatorgba/)(*object*) | Uses https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB. | +| [hueToRgb](./huetorgb/)(*object, object, object*) | | + +## Fields + +| Name | Description | +| --- | --- | +| [A](./a/) | Alpha (opacity) [0.0f, 1.0f]. | +| [H](./h/) | Hue [0, 360]. | +| [L](./l/) | Lightness [0, 100]. | +| [S](./s/) | Saturation [0, 100]. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/hslacolor/checkalpha/_index.md b/english/nodejs/hslacolor/checkalpha/_index.md new file mode 100644 index 000000000..0e82d386b --- /dev/null +++ b/english/nodejs/hslacolor/checkalpha/_index.md @@ -0,0 +1,27 @@ +--- +title: "HslaColor.checkAlpha" +linktitle: "checkAlpha" +articleTitle: "checkAlpha" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 80 +url: /nodejs/hslacolor/checkalpha/ +--- +## checkAlpha(object) {#checkalpha} + + + +```javascript +static checkAlpha(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/checkhue/_index.md b/english/nodejs/hslacolor/checkhue/_index.md new file mode 100644 index 000000000..2d26157e9 --- /dev/null +++ b/english/nodejs/hslacolor/checkhue/_index.md @@ -0,0 +1,27 @@ +--- +title: "HslaColor.checkHue" +linktitle: "checkHue" +articleTitle: "checkHue" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/hslacolor/checkhue/ +--- +## checkHue(object) {#checkhue} + + + +```javascript +static checkHue(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/checksatlight/_index.md b/english/nodejs/hslacolor/checksatlight/_index.md new file mode 100644 index 000000000..5953ce9da --- /dev/null +++ b/english/nodejs/hslacolor/checksatlight/_index.md @@ -0,0 +1,27 @@ +--- +title: "HslaColor.checkSatLight" +linktitle: "checkSatLight" +articleTitle: "checkSatLight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 70 +url: /nodejs/hslacolor/checksatlight/ +--- +## checkSatLight(object) {#checksatlight} + + + +```javascript +static checkSatLight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/converthslatorgba/_index.md b/english/nodejs/hslacolor/converthslatorgba/_index.md new file mode 100644 index 000000000..d6adfd006 --- /dev/null +++ b/english/nodejs/hslacolor/converthslatorgba/_index.md @@ -0,0 +1,33 @@ +--- +title: "HslaColor.convertHslaToRgba" +linktitle: "convertHslaToRgba" +articleTitle: "convertHslaToRgba" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Uses https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB." +type: docs +weight: 90 +url: /nodejs/hslacolor/converthslatorgba/ +--- +## convertHslaToRgba(object) {#converthslatorgba} + +Uses https://en.wikipedia.org/wiki/HSL_and_HSV#HSL_to_RGB + +```javascript +static convertHslaToRgba(hslaColor) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| hslaColor | object | HSLA color to convert | + +### Return Value + +string + +with RGBA values + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/hslacolor/_index.md b/english/nodejs/hslacolor/hslacolor/_index.md new file mode 100644 index 000000000..8b7341037 --- /dev/null +++ b/english/nodejs/hslacolor/hslacolor/_index.md @@ -0,0 +1,30 @@ +--- +title: "HslaColor" +linktitle: "HslaColor" +articleTitle: "HslaColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the HslaColor class." +type: docs +weight: 10 +url: /nodejs/hslacolor/hslacolor/ +--- +## HslaColor(object, object, object, object) {#constructor} + +Constructor for HslaColor + +```javascript +public HslaColor(object h, object s, object l, object a) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| h | object | Hue [0, 360] | +| s | object | Saturation [0, 100] | +| l | object | Lightness [0, 100] | +| a | object | Alpha (opacity) [0.0f, 1.0f] | + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/hslacolor/huetorgb/_index.md b/english/nodejs/hslacolor/huetorgb/_index.md new file mode 100644 index 000000000..e67c7a239 --- /dev/null +++ b/english/nodejs/hslacolor/huetorgb/_index.md @@ -0,0 +1,29 @@ +--- +title: "HslaColor.hueToRgb" +linktitle: "hueToRgb" +articleTitle: "hueToRgb" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 100 +url: /nodejs/hslacolor/huetorgb/ +--- +## hueToRgb(object, object, object) {#huetorgb} + + + +```javascript +static hueToRgb(p, q, t) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| p | object | | +| q | object | | +| t | object | | + +### See Also + +* class [HslaColor](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/icomplexcodetext/_index.md b/english/nodejs/icomplexcodetext/_index.md new file mode 100644 index 000000000..5dbb69f9b --- /dev/null +++ b/english/nodejs/icomplexcodetext/_index.md @@ -0,0 +1,36 @@ +--- +title: "IComplexCodetext Class" +linktitle: "IComplexCodetext" +articleTitle: "IComplexCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Interface for complex codetext used with ComplexBarcodeGenerator." +type: docs +weight: 20 +url: /nodejs/icomplexcodetext/ +--- +## IComplexCodetext class + +Interface for complex codetext used with ComplexBarcodeGenerator. + +```javascript +public class IComplexCodetext : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [IComplexCodetext](./icomplexcodetext/#constructor)(*object*) | Initializes a new instance of the IComplexCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getConstructedCodetext](./getconstructedcodetext/) | Construct codetext for complex barcode. | +| [initFromString](./initfromstring/)(*object*) | Initializes instance with constructed codetext. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/icomplexcodetext/getbarcodetype/_index.md b/english/nodejs/icomplexcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..8f3a625d9 --- /dev/null +++ b/english/nodejs/icomplexcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "IComplexCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 40 +url: /nodejs/icomplexcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [IComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/icomplexcodetext/getconstructedcodetext/_index.md b/english/nodejs/icomplexcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..9dd05d57b --- /dev/null +++ b/english/nodejs/icomplexcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "IComplexCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Construct codetext for complex barcode." +type: docs +weight: 20 +url: /nodejs/icomplexcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Construct codetext for complex barcode + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [IComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/icomplexcodetext/icomplexcodetext/_index.md b/english/nodejs/icomplexcodetext/icomplexcodetext/_index.md new file mode 100644 index 000000000..b1c7f12d0 --- /dev/null +++ b/english/nodejs/icomplexcodetext/icomplexcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "IComplexCodetext" +linktitle: "IComplexCodetext" +articleTitle: "IComplexCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the IComplexCodetext class." +type: docs +weight: 10 +url: /nodejs/icomplexcodetext/icomplexcodetext/ +--- +## IComplexCodetext(object) {#constructor} + +Initializes a new instance of the IComplexCodetext class. + +```javascript +public IComplexCodetext(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [IComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/icomplexcodetext/initfromstring/_index.md b/english/nodejs/icomplexcodetext/initfromstring/_index.md new file mode 100644 index 000000000..f4eb58bf4 --- /dev/null +++ b/english/nodejs/icomplexcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "IComplexCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance with constructed codetext." +type: docs +weight: 30 +url: /nodejs/icomplexcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance with constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [IComplexCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/_index.md b/english/nodejs/imageparameters/_index.md new file mode 100644 index 000000000..c6965d71a --- /dev/null +++ b/english/nodejs/imageparameters/_index.md @@ -0,0 +1,44 @@ +--- +title: "ImageParameters Class" +linktitle: "ImageParameters" +articleTitle: "ImageParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Image parameters." +type: docs +weight: 790 +url: /nodejs/imageparameters/ +--- +## ImageParameters class + +Image parameters. + +```javascript +public class ImageParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [ImageParameters](./imageparameters/#constructor)(*object*) | Initializes a new instance of the ImageParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getPdf](./getpdf/) | PDF parameters. | +| [getSvg](./getsvg/) | SVG parameters. | +| [init](./init/) | | +| [setPdf](./setpdf/)(*object*) | PDF parameters. | +| [setSvg](./setsvg/)(*object*) | SVG parameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [svg](./svg/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/imageparameters/getpdf/_index.md b/english/nodejs/imageparameters/getpdf/_index.md new file mode 100644 index 000000000..d0c8ec841 --- /dev/null +++ b/english/nodejs/imageparameters/getpdf/_index.md @@ -0,0 +1,23 @@ +--- +title: "ImageParameters.getPdf" +linktitle: "getPdf" +articleTitle: "getPdf" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PDF parameters." +type: docs +weight: 60 +url: /nodejs/imageparameters/getpdf/ +--- +## getPdf() {#getpdf} + +PDF parameters + +```javascript +getPdf() +``` + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/getsvg/_index.md b/english/nodejs/imageparameters/getsvg/_index.md new file mode 100644 index 000000000..9d0d6e6cc --- /dev/null +++ b/english/nodejs/imageparameters/getsvg/_index.md @@ -0,0 +1,23 @@ +--- +title: "ImageParameters.getSvg" +linktitle: "getSvg" +articleTitle: "getSvg" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SVG parameters." +type: docs +weight: 40 +url: /nodejs/imageparameters/getsvg/ +--- +## getSvg() {#getsvg} + +SVG parameters + +```javascript +getSvg() +``` + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/imageparameters/_index.md b/english/nodejs/imageparameters/imageparameters/_index.md new file mode 100644 index 000000000..62db78519 --- /dev/null +++ b/english/nodejs/imageparameters/imageparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "ImageParameters" +linktitle: "ImageParameters" +articleTitle: "ImageParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the ImageParameters class." +type: docs +weight: 10 +url: /nodejs/imageparameters/imageparameters/ +--- +## ImageParameters(object) {#constructor} + +Initializes a new instance of the ImageParameters class. + +```javascript +public ImageParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/init/_index.md b/english/nodejs/imageparameters/init/_index.md new file mode 100644 index 000000000..cf218a852 --- /dev/null +++ b/english/nodejs/imageparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "ImageParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/imageparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/setpdf/_index.md b/english/nodejs/imageparameters/setpdf/_index.md new file mode 100644 index 000000000..06b34816a --- /dev/null +++ b/english/nodejs/imageparameters/setpdf/_index.md @@ -0,0 +1,27 @@ +--- +title: "ImageParameters.setPdf" +linktitle: "setPdf" +articleTitle: "setPdf" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PDF parameters." +type: docs +weight: 70 +url: /nodejs/imageparameters/setpdf/ +--- +## setPdf(object) {#setpdf} + +PDF parameters + +```javascript +setPdf(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/imageparameters/setsvg/_index.md b/english/nodejs/imageparameters/setsvg/_index.md new file mode 100644 index 000000000..2e35982bf --- /dev/null +++ b/english/nodejs/imageparameters/setsvg/_index.md @@ -0,0 +1,27 @@ +--- +title: "ImageParameters.setSvg" +linktitle: "setSvg" +articleTitle: "setSvg" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SVG parameters." +type: docs +weight: 50 +url: /nodejs/imageparameters/setsvg/ +--- +## setSvg(object) {#setsvg} + +SVG parameters + +```javascript +setSvg(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [ImageParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/inverseimagemode/_index.md b/english/nodejs/inverseimagemode/_index.md new file mode 100644 index 000000000..bf99584c4 --- /dev/null +++ b/english/nodejs/inverseimagemode/_index.md @@ -0,0 +1,30 @@ +--- +title: "InverseImageMode Enum" +linktitle: "InverseImageMode" +articleTitle: "InverseImageMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance)." +type: docs +weight: 1530 +url: /nodejs/inverseimagemode/ +--- +## InverseImageMode enumeration + +Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). + +```javascript +public enum InverseImageMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | At this time the same as Disabled. Disables additional recognition of barcodes on inverse images. | +| DISABLED | `1` | Disables additional recognition of barcodes on inverse images. | +| ENABLED | `2` | Enables additional recognition of barcodes on inverse images | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/itf14bordertype/_index.md b/english/nodejs/itf14bordertype/_index.md new file mode 100644 index 000000000..5bd01b25c --- /dev/null +++ b/english/nodejs/itf14bordertype/_index.md @@ -0,0 +1,32 @@ +--- +title: "ITF14BorderType Enum" +linktitle: "ITF14BorderType" +articleTitle: "ITF14BorderType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ITF14 barcode's border type." +type: docs +weight: 890 +url: /nodejs/itf14bordertype/ +--- +## ITF14BorderType enumeration + +ITF14 barcode's border type + +```javascript +public enum ITF14BorderType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | NO border enclosing the barcode | +| FRAME | `1` | FRAME enclosing the barcode | +| BAR | `2` | Tow horizontal bars enclosing the barcode | +| FRAME_OUT | `3` | FRAME enclosing the barcode | +| BAR_OUT | `4` | Tow horizontal bars enclosing the barcode | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/itfparameters/_index.md b/english/nodejs/itfparameters/_index.md new file mode 100644 index 000000000..32b0280ff --- /dev/null +++ b/english/nodejs/itfparameters/_index.md @@ -0,0 +1,51 @@ +--- +title: "ITFParameters Class" +linktitle: "ITFParameters" +articleTitle: "ITFParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "ITF parameters." +type: docs +weight: 610 +url: /nodejs/itfparameters/ +--- +## ITFParameters class + +ITF parameters. + +```javascript +public class ITFParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [ITFParameters](./itfparameters/#constructor)(*object*) | Initializes a new instance of the ITFParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getBorderThickness](./getborderthickness/) | Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. | +| [getBorderType](./getbordertype/) | Border type of ITF barcode. Default value: ITF14BorderType.Bar. | +| [getItfBorderThickness](./getitfborderthickness/) | Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. | +| [getItfBorderType](./getitfbordertype/) | Border type of ITF barcode. Default value: ITF14BorderType.BAR. | +| [getQuietZoneCoef](./getquietzonecoef/) | Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px. | +| [init](./init/) | | +| [setBorderThickness](./setborderthickness/)(*object*) | Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. | +| [setBorderType](./setbordertype/)(*object*) | Border type of ITF barcode. Default value: ITF14BorderType.Bar. | +| [setItfBorderThickness](./setitfborderthickness/)(*object*) | Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. | +| [setItfBorderType](./setitfbordertype/)(*object*) | Border type of ITF barcode. Default value: ITF14BorderType.BAR. | +| [setQuietZoneCoef](./setquietzonecoef/)(*object*) | Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px. | +| [toString](./tostring/) | Returns a human-readable string representation of this ITFParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [itfBorderThickness](./itfborderthickness/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/itfparameters/getborderthickness/_index.md b/english/nodejs/itfparameters/getborderthickness/_index.md new file mode 100644 index 000000000..f909a58a5 --- /dev/null +++ b/english/nodejs/itfparameters/getborderthickness/_index.md @@ -0,0 +1,29 @@ +--- +title: "ITFParameters.getBorderThickness" +linktitle: "getBorderThickness" +articleTitle: "getBorderThickness" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt." +type: docs +weight: 40 +url: /nodejs/itfparameters/getborderthickness/ +--- +## getBorderThickness() {#getborderthickness} + +Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +```javascript +getBorderThickness() +``` + +### Return Value + +an + +ITF border (bearer bar) thickness in Unit value. + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/getbordertype/_index.md b/english/nodejs/itfparameters/getbordertype/_index.md new file mode 100644 index 000000000..53e430c96 --- /dev/null +++ b/english/nodejs/itfparameters/getbordertype/_index.md @@ -0,0 +1,23 @@ +--- +title: "ITFParameters.getBorderType" +linktitle: "getBorderType" +articleTitle: "getBorderType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border type of ITF barcode. Default value: ITF14BorderType.Bar." +type: docs +weight: 80 +url: /nodejs/itfparameters/getbordertype/ +--- +## getBorderType() {#getbordertype} + +Border type of ITF barcode. Default value: ITF14BorderType.Bar. + +```javascript +getBorderType() +``` + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/getitfborderthickness/_index.md b/english/nodejs/itfparameters/getitfborderthickness/_index.md new file mode 100644 index 000000000..2728d5341 --- /dev/null +++ b/english/nodejs/itfparameters/getitfborderthickness/_index.md @@ -0,0 +1,25 @@ +--- +title: "ITFParameters.getItfBorderThickness" +linktitle: "getItfBorderThickness" +articleTitle: "getItfBorderThickness" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt." +type: docs +weight: 60 +url: /nodejs/itfparameters/getitfborderthickness/ +--- +## getItfBorderThickness() {#getitfborderthickness} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getBorderThickness(). + +Gets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +```javascript +getItfBorderThickness() +``` + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/getitfbordertype/_index.md b/english/nodejs/itfparameters/getitfbordertype/_index.md new file mode 100644 index 000000000..479bfd1f3 --- /dev/null +++ b/english/nodejs/itfparameters/getitfbordertype/_index.md @@ -0,0 +1,25 @@ +--- +title: "ITFParameters.getItfBorderType" +linktitle: "getItfBorderType" +articleTitle: "getItfBorderType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border type of ITF barcode. Default value: ITF14BorderType.BAR." +type: docs +weight: 100 +url: /nodejs/itfparameters/getitfbordertype/ +--- +## getItfBorderType() {#getitfbordertype} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getBorderType(). + +Border type of ITF barcode. Default value: ITF14BorderType.BAR. + +```javascript +getItfBorderType() +``` + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/getquietzonecoef/_index.md b/english/nodejs/itfparameters/getquietzonecoef/_index.md new file mode 100644 index 000000000..1e1ee6af2 --- /dev/null +++ b/english/nodejs/itfparameters/getquietzonecoef/_index.md @@ -0,0 +1,29 @@ +--- +title: "ITFParameters.getQuietZoneCoef" +linktitle: "getQuietZoneCoef" +articleTitle: "getQuietZoneCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px." +type: docs +weight: 120 +url: /nodejs/itfparameters/getquietzonecoef/ +--- +## getQuietZoneCoef() {#getquietzonecoef} + +Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px. + +```javascript +getQuietZoneCoef() +``` + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException | The QuietZoneCoef parameter value is less than 10. | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/init/_index.md b/english/nodejs/itfparameters/init/_index.md new file mode 100644 index 000000000..bd0f97106 --- /dev/null +++ b/english/nodejs/itfparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "ITFParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/itfparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/itfparameters/_index.md b/english/nodejs/itfparameters/itfparameters/_index.md new file mode 100644 index 000000000..61db83430 --- /dev/null +++ b/english/nodejs/itfparameters/itfparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "ITFParameters" +linktitle: "ITFParameters" +articleTitle: "ITFParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the ITFParameters class." +type: docs +weight: 10 +url: /nodejs/itfparameters/itfparameters/ +--- +## ITFParameters(object) {#constructor} + +Initializes a new instance of the ITFParameters class. + +```javascript +public ITFParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/setborderthickness/_index.md b/english/nodejs/itfparameters/setborderthickness/_index.md new file mode 100644 index 000000000..50b7b35fa --- /dev/null +++ b/english/nodejs/itfparameters/setborderthickness/_index.md @@ -0,0 +1,27 @@ +--- +title: "ITFParameters.setBorderThickness" +linktitle: "setBorderThickness" +articleTitle: "setBorderThickness" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt." +type: docs +weight: 50 +url: /nodejs/itfparameters/setborderthickness/ +--- +## setBorderThickness(object) {#setborderthickness} + +Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +```javascript +setBorderThickness(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | an ITF border (bearer bar) thickness in Unit value. | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/setbordertype/_index.md b/english/nodejs/itfparameters/setbordertype/_index.md new file mode 100644 index 000000000..4aafdb4b3 --- /dev/null +++ b/english/nodejs/itfparameters/setbordertype/_index.md @@ -0,0 +1,27 @@ +--- +title: "ITFParameters.setBorderType" +linktitle: "setBorderType" +articleTitle: "setBorderType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border type of ITF barcode. Default value: ITF14BorderType.Bar." +type: docs +weight: 90 +url: /nodejs/itfparameters/setbordertype/ +--- +## setBorderType(object) {#setbordertype} + +Border type of ITF barcode. Default value: ITF14BorderType.Bar. + +```javascript +setBorderType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/setitfborderthickness/_index.md b/english/nodejs/itfparameters/setitfborderthickness/_index.md new file mode 100644 index 000000000..1977abedb --- /dev/null +++ b/english/nodejs/itfparameters/setitfborderthickness/_index.md @@ -0,0 +1,29 @@ +--- +title: "ITFParameters.setItfBorderThickness" +linktitle: "setItfBorderThickness" +articleTitle: "setItfBorderThickness" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt." +type: docs +weight: 70 +url: /nodejs/itfparameters/setitfborderthickness/ +--- +## setItfBorderThickness(object) {#setitfborderthickness} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setBorderThickness(). + +Sets an ITF border (bearer bar) thickness in Unit value. Default value: 12pt. + +```javascript +setItfBorderThickness(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/setitfbordertype/_index.md b/english/nodejs/itfparameters/setitfbordertype/_index.md new file mode 100644 index 000000000..9ff548a3b --- /dev/null +++ b/english/nodejs/itfparameters/setitfbordertype/_index.md @@ -0,0 +1,29 @@ +--- +title: "ITFParameters.setItfBorderType" +linktitle: "setItfBorderType" +articleTitle: "setItfBorderType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Border type of ITF barcode. Default value: ITF14BorderType.BAR." +type: docs +weight: 110 +url: /nodejs/itfparameters/setitfbordertype/ +--- +## setItfBorderType(object) {#setitfbordertype} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setBorderType(). + +Border type of ITF barcode. Default value: ITF14BorderType.BAR. + +```javascript +setItfBorderType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/setquietzonecoef/_index.md b/english/nodejs/itfparameters/setquietzonecoef/_index.md new file mode 100644 index 000000000..bbad48bbb --- /dev/null +++ b/english/nodejs/itfparameters/setquietzonecoef/_index.md @@ -0,0 +1,33 @@ +--- +title: "ITFParameters.setQuietZoneCoef" +linktitle: "setQuietZoneCoef" +articleTitle: "setQuietZoneCoef" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px." +type: docs +weight: 130 +url: /nodejs/itfparameters/setquietzonecoef/ +--- +## setQuietZoneCoef(object) {#setquietzonecoef} + +Size of the quiet zones in xDimension. Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px. + +```javascript +setQuietZoneCoef(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException | The QuietZoneCoef parameter value is less than 10. | + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/itfparameters/tostring/_index.md b/english/nodejs/itfparameters/tostring/_index.md new file mode 100644 index 000000000..9e0bc8027 --- /dev/null +++ b/english/nodejs/itfparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "ITFParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this ITFParameters." +type: docs +weight: 140 +url: /nodejs/itfparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this ITFParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this ITFParameters. + +### See Also + +* class [ITFParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/macrocharacter/_index.md b/english/nodejs/macrocharacter/_index.md new file mode 100644 index 000000000..5cb31104e --- /dev/null +++ b/english/nodejs/macrocharacter/_index.md @@ -0,0 +1,76 @@ +--- +title: "MacroCharacter Enum" +linktitle: "MacroCharacter" +articleTitle: "MacroCharacter" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. 05 Macro craracter is translated to \"[)>\\u001E05\\u001D\" as decod..." +type: docs +weight: 1060 +url: /nodejs/macrocharacter/ +--- +## MacroCharacter enumeration + +Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. 05 Macro craracter is translated to "[)>\u001E05\u001D" as decoded data header and "\u001E\u0004" as decoded data trailer. 06 Macro craracter is translated to "[)>\u001E06\u001D" as decoded data header and "\u001E\u0004" as decoded data trailer. + +```javascript +public enum MacroCharacter +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | None of Macro Characters are added to barcode data | +| MACRO_05 | `5` | 05 Macro craracter is added to barcode data in first position. GS1 Data Identifier ISO 15434 Character is translated to "[)>\u001E05\u001D" as decoded data header and "\u001E\u0004" as decoded data trailer. //to generate autoidentified GS1 message like this "(10)123ABC(10)123ABC" in ISO 15434 format you need: let generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, "10123ABC\u001D10123ABC"); generator.getParameters().getBarcode().getDataMatrix().setMacroCharacters(MacroCharacter.MACRO_05); let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), DecodeType.GS_1_DATA_MATRIX); let results = reader.readBarCodes(); for(let i = 0; i < results.length; i++) { let result = results[i]; cosole.log("BarCode CodeText: " + result.getCodeText()); } | +| MACRO_06 | `6` | 06 Macro craracter is added to barcode data in first position. ASC MH10 Data Identifier ISO 15434 Character is translated to "[)>\u001E06\u001D" as decoded data header and "\u001E\u0004" as decoded data trailer. | + +## Examples + +# to generate autoidentified GS1 message like this "(10)123ABC(10)123ABC" in ISO 15434 format you need: + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.DATA_MATRIX, "10123ABC\u001D10123ABC"); +generator.getParameters().getBarcode().getDataMatrix().setMacroCharacters(MacroCharacter.MACRO_05); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS1DataMatrix); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +# Encodes MicroPdf417 with 05 Macro the string: "[)>\u001E05\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} +``` + +# Encodes MicroPdf417 with 06 Macro the string: "[)>\u001E06\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MicroPdf417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} + + +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/mailmark2dcodetext/_index.md b/english/nodejs/mailmark2dcodetext/_index.md new file mode 100644 index 000000000..617574e8a --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/_index.md @@ -0,0 +1,68 @@ +--- +title: "Mailmark2DCodetext Class" +linktitle: "Mailmark2DCodetext" +articleTitle: "Mailmark2DCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the Royal Mail 2D Mailmark code." +type: docs +weight: 120 +url: /nodejs/mailmark2dcodetext/ +--- +## Mailmark2DCodetext class + +Class for encoding and decoding the text embedded in the Royal Mail 2D Mailmark code. + +```javascript +public class Mailmark2DCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Mailmark2DCodetext](./mailmark2dcodetext/#constructor) | Create default instance of Mailmark2DCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getClass_](./getclass_/) | Identifies the class of the item. | +| [getConstructedCodetext](./getconstructedcodetext/) | Construct codetext from Mailmark data. | +| [getCustomerContent](./getcustomercontent/) | Optional space for use by customer. | +| [getCustomerContentEncodeMode](./getcustomercontentencodemode/) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40. | +| [getDataMatrixType](./getdatamatrixtype/) | 2D Mailmark Type defines size of Data Matrix barcode. | +| [getDestinationPostCodeAndDPS](./getdestinationpostcodeanddps/) | Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) District(1 or 2 characters) Sector(1 character) Unit(2 characters) DPS (2 characters). The Postcode and DPS must comply with a valid PAF® format. | +| [getInformationTypeID](./getinformationtypeid/) | Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values:. | +| [getItemID](./getitemid/) | Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 days. Max value: 99999999. | +| [getRTSFlag](./getrtsflag/) | Flag which indicates what level of Return to Sender service is being requested. | +| [getReturnToSenderPostCode](./getreturntosenderpostcode/) | Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format. | +| [getSupplyChainID](./getsupplychainid/) | Identifies the unique group of customers involved in the mailing. Max value: 9999999. | +| [getUPUCountryID](./getupucountryid/) | Identifies the UPU Country ID.Max length: 4 characters. | +| [getVersionID](./getversionid/) | Identifies the barcode version as relevant to each Information Type ID. Valid Values:. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes Mailmark data from constructed codetext. | +| [setClass_](./setclass_/)(*object*) | Identifies the class of the item. | +| [setCustomerContent](./setcustomercontent/)(*object*) | Optional space for use by customer. | +| [setCustomerContentEncodeMode](./setcustomercontentencodemode/)(*object*) | Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40. | +| [setDataMatrixType](./setdatamatrixtype/)(*object*) | 2D Mailmark Type defines size of Data Matrix barcode. | +| [setDestinationPostCodeAndDPS](./setdestinationpostcodeanddps/)(*object*) | Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) District(1 or 2 characters) Sector(1 character) Unit(2 characters) DPS (2 characters). The Postcode and DPS must comply with a valid PAF® format. | +| [setInformationTypeID](./setinformationtypeid/)(*object*) | Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values:. | +| [setItemID](./setitemid/)(*object*) | Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 days. Max value: 99999999. | +| [setRTSFlag](./setrtsflag/)(*object*) | Flag which indicates what level of Return to Sender service is being requested. | +| [setReturnToSenderPostCode](./setreturntosenderpostcode/)(*object*) | Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format. | +| [setSupplyChainID](./setsupplychainid/)(*object*) | Identifies the unique group of customers involved in the mailing. Max value: 9999999. | +| [setUPUCountryID](./setupucountryid/)(*object*) | Identifies the UPU Country ID.Max length: 4 characters. | +| [setVersionID](./setversionid/)(*object*) | Identifies the barcode version as relevant to each Information Type ID. Valid Values:. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/mailmark2dcodetext/construct/_index.md b/english/nodejs/mailmark2dcodetext/construct/_index.md new file mode 100644 index 000000000..0bb8b2ab0 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/mailmark2dcodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getbarcodetype/_index.md b/english/nodejs/mailmark2dcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..e5069cc90 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 310 +url: /nodejs/mailmark2dcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getclass_/_index.md b/english/nodejs/mailmark2dcodetext/getclass_/_index.md new file mode 100644 index 000000000..f2126d314 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getclass_/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getClass_" +linktitle: "getClass_" +articleTitle: "getClass_" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the class of the item." +type: docs +weight: 90 +url: /nodejs/mailmark2dcodetext/getclass_/ +--- +## getClass_() {#getclass_} + +Identifies the class of the item. + +```javascript +getClass_() +``` + +### Return Value + +class + +of the item + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getconstructedcodetext/_index.md b/english/nodejs/mailmark2dcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..a88b06f1e --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Construct codetext from Mailmark data." +type: docs +weight: 290 +url: /nodejs/mailmark2dcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Construct codetext from Mailmark data. + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getcustomercontent/_index.md b/english/nodejs/mailmark2dcodetext/getcustomercontent/_index.md new file mode 100644 index 000000000..ff9fb2139 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getcustomercontent/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getCustomerContent" +linktitle: "getCustomerContent" +articleTitle: "getCustomerContent" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional space for use by customer." +type: docs +weight: 210 +url: /nodejs/mailmark2dcodetext/getcustomercontent/ +--- +## getCustomerContent() {#getcustomercontent} + +Optional space for use by customer. + +```javascript +getCustomerContent() +``` + +### Return Value + +Customer + +content + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getcustomercontentencodemode/_index.md b/english/nodejs/mailmark2dcodetext/getcustomercontentencodemode/_index.md new file mode 100644 index 000000000..45f4d9efb --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getcustomercontentencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getCustomerContentEncodeMode" +linktitle: "getCustomerContentEncodeMode" +articleTitle: "getCustomerContentEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40." +type: docs +weight: 230 +url: /nodejs/mailmark2dcodetext/getcustomercontentencodemode/ +--- +## getCustomerContentEncodeMode() {#getcustomercontentencodemode} + +Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40. + +```javascript +getCustomerContentEncodeMode() +``` + +### Return Value + +Encode + +mode of Datamatrix barcode. + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getdatamatrixtype/_index.md b/english/nodejs/mailmark2dcodetext/getdatamatrixtype/_index.md new file mode 100644 index 000000000..db35da0ca --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getdatamatrixtype/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getDataMatrixType" +linktitle: "getDataMatrixType" +articleTitle: "getDataMatrixType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2D Mailmark Type defines size of Data Matrix barcode." +type: docs +weight: 250 +url: /nodejs/mailmark2dcodetext/getdatamatrixtype/ +--- +## getDataMatrixType() {#getdatamatrixtype} + +2D Mailmark Type defines size of Data Matrix barcode. + +```javascript +getDataMatrixType() +``` + +### Return Value + +Size + +of Data Matrix barcode + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getdestinationpostcodeanddps/_index.md b/english/nodejs/mailmark2dcodetext/getdestinationpostcodeanddps/_index.md new file mode 100644 index 000000000..307d6d7b0 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getdestinationpostcodeanddps/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getDestinationPostCodeAndDPS" +linktitle: "getDestinationPostCodeAndDPS" +articleTitle: "getDestinationPostCodeAndDPS" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) Distri..." +type: docs +weight: 150 +url: /nodejs/mailmark2dcodetext/getdestinationpostcodeanddps/ +--- +## getDestinationPostCodeAndDPS() {#getdestinationpostcodeanddps} + +Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) District(1 or 2 characters) Sector(1 character) Unit(2 characters) DPS (2 characters). The Postcode and DPS must comply with a valid PAF® format. + +```javascript +getDestinationPostCodeAndDPS() +``` + +### Return Value + +the + +Postcode of the Delivery Address with DPS + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getinformationtypeid/_index.md b/english/nodejs/mailmark2dcodetext/getinformationtypeid/_index.md new file mode 100644 index 000000000..e9d125d82 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getinformationtypeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getInformationTypeID" +linktitle: "getInformationTypeID" +articleTitle: "getInformationTypeID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values:." +type: docs +weight: 50 +url: /nodejs/mailmark2dcodetext/getinformationtypeid/ +--- +## getInformationTypeID() {#getinformationtypeid} + +Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values: + +```javascript +getInformationTypeID() +``` + +### Return Value + +Information + +type ID + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getitemid/_index.md b/english/nodejs/mailmark2dcodetext/getitemid/_index.md new file mode 100644 index 000000000..fa3135d13 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getitemid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getItemID" +linktitle: "getItemID" +articleTitle: "getItemID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 day..." +type: docs +weight: 130 +url: /nodejs/mailmark2dcodetext/getitemid/ +--- +## getItemID() {#getitemid} + +Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 days. Max value: 99999999. + +```javascript +getItemID() +``` + +### Return Value + +item + +within the Supply Chain ID + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getreturntosenderpostcode/_index.md b/english/nodejs/mailmark2dcodetext/getreturntosenderpostcode/_index.md new file mode 100644 index 000000000..3f22665a1 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getreturntosenderpostcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getReturnToSenderPostCode" +linktitle: "getReturnToSenderPostCode" +articleTitle: "getReturnToSenderPostCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format." +type: docs +weight: 190 +url: /nodejs/mailmark2dcodetext/getreturntosenderpostcode/ +--- +## getReturnToSenderPostCode() {#getreturntosenderpostcode} + +Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format. + +```javascript +getReturnToSenderPostCode() +``` + +### Return Value + +Return + +to Sender Post Code but no DPS + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getrtsflag/_index.md b/english/nodejs/mailmark2dcodetext/getrtsflag/_index.md new file mode 100644 index 000000000..820d2bcde --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getrtsflag/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getRTSFlag" +linktitle: "getRTSFlag" +articleTitle: "getRTSFlag" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Flag which indicates what level of Return to Sender service is being requested." +type: docs +weight: 170 +url: /nodejs/mailmark2dcodetext/getrtsflag/ +--- +## getRTSFlag() {#getrtsflag} + +Flag which indicates what level of Return to Sender service is being requested. + +```javascript +getRTSFlag() +``` + +### Return Value + +RTS + +Flag + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getsupplychainid/_index.md b/english/nodejs/mailmark2dcodetext/getsupplychainid/_index.md new file mode 100644 index 000000000..d3ce59f35 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getsupplychainid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getSupplyChainID" +linktitle: "getSupplyChainID" +articleTitle: "getSupplyChainID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the unique group of customers involved in the mailing. Max value: 9999999." +type: docs +weight: 110 +url: /nodejs/mailmark2dcodetext/getsupplychainid/ +--- +## getSupplyChainID() {#getsupplychainid} + +Identifies the unique group of customers involved in the mailing. Max value: 9999999. + +```javascript +getSupplyChainID() +``` + +### Return Value + +Supply + +chain ID + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getupucountryid/_index.md b/english/nodejs/mailmark2dcodetext/getupucountryid/_index.md new file mode 100644 index 000000000..65b115a18 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getupucountryid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getUPUCountryID" +linktitle: "getUPUCountryID" +articleTitle: "getUPUCountryID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the UPU Country ID.Max length: 4 characters." +type: docs +weight: 30 +url: /nodejs/mailmark2dcodetext/getupucountryid/ +--- +## getUPUCountryID() {#getupucountryid} + +Identifies the UPU Country ID.Max length: 4 characters. + +```javascript +getUPUCountryID() +``` + +### Return Value + +Country + +ID + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/getversionid/_index.md b/english/nodejs/mailmark2dcodetext/getversionid/_index.md new file mode 100644 index 000000000..e94abd8ff --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/getversionid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Mailmark2DCodetext.getVersionID" +linktitle: "getVersionID" +articleTitle: "getVersionID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the barcode version as relevant to each Information Type ID. Valid Values:." +type: docs +weight: 70 +url: /nodejs/mailmark2dcodetext/getversionid/ +--- +## getVersionID() {#getversionid} + +Identifies the barcode version as relevant to each Information Type ID. Valid Values: + +```javascript +getVersionID() +``` + +### Return Value + +Version + +ID + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/init/_index.md b/english/nodejs/mailmark2dcodetext/init/_index.md new file mode 100644 index 000000000..7c04274c7 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Mailmark2DCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 280 +url: /nodejs/mailmark2dcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/initfromstring/_index.md b/english/nodejs/mailmark2dcodetext/initfromstring/_index.md new file mode 100644 index 000000000..b8cf2d02c --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes Mailmark data from constructed codetext." +type: docs +weight: 300 +url: /nodejs/mailmark2dcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes Mailmark data from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/mailmark2dcodetext/_index.md b/english/nodejs/mailmark2dcodetext/mailmark2dcodetext/_index.md new file mode 100644 index 000000000..b67cca777 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/mailmark2dcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "Mailmark2DCodetext" +linktitle: "Mailmark2DCodetext" +articleTitle: "Mailmark2DCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Mailmark2DCodetext class." +type: docs +weight: 10 +url: /nodejs/mailmark2dcodetext/mailmark2dcodetext/ +--- +## Mailmark2DCodetext() {#constructor} + +Create default instance of Mailmark2DCodetext class. + +```javascript +public Mailmark2DCodetext() +``` + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setclass_/_index.md b/english/nodejs/mailmark2dcodetext/setclass_/_index.md new file mode 100644 index 000000000..163d08edd --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setclass_/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setClass_" +linktitle: "setClass_" +articleTitle: "setClass_" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the class of the item." +type: docs +weight: 100 +url: /nodejs/mailmark2dcodetext/setclass_/ +--- +## setClass_(object) {#setclass_} + +Identifies the class of the item. + +```javascript +setClass_(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | class of the item | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setcustomercontent/_index.md b/english/nodejs/mailmark2dcodetext/setcustomercontent/_index.md new file mode 100644 index 000000000..a4213485f --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setcustomercontent/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setCustomerContent" +linktitle: "setCustomerContent" +articleTitle: "setCustomerContent" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional space for use by customer." +type: docs +weight: 220 +url: /nodejs/mailmark2dcodetext/setcustomercontent/ +--- +## setCustomerContent(object) {#setcustomercontent} + +Optional space for use by customer. + +```javascript +setCustomerContent(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Customer content | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setcustomercontentencodemode/_index.md b/english/nodejs/mailmark2dcodetext/setcustomercontentencodemode/_index.md new file mode 100644 index 000000000..bdc77381b --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setcustomercontentencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setCustomerContentEncodeMode" +linktitle: "setCustomerContentEncodeMode" +articleTitle: "setCustomerContentEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40." +type: docs +weight: 240 +url: /nodejs/mailmark2dcodetext/setcustomercontentencodemode/ +--- +## setCustomerContentEncodeMode(object) {#setcustomercontentencodemode} + +Encode mode of Datamatrix barcode. Default value: DataMatrixEncodeMode.C40. + +```javascript +setCustomerContentEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Encode mode of Datamatrix barcode. | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setdatamatrixtype/_index.md b/english/nodejs/mailmark2dcodetext/setdatamatrixtype/_index.md new file mode 100644 index 000000000..c777c5615 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setdatamatrixtype/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setDataMatrixType" +linktitle: "setDataMatrixType" +articleTitle: "setDataMatrixType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2D Mailmark Type defines size of Data Matrix barcode." +type: docs +weight: 260 +url: /nodejs/mailmark2dcodetext/setdatamatrixtype/ +--- +## setDataMatrixType(object) {#setdatamatrixtype} + +2D Mailmark Type defines size of Data Matrix barcode. + +```javascript +setDataMatrixType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Size of Data Matrix barcode | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setdestinationpostcodeanddps/_index.md b/english/nodejs/mailmark2dcodetext/setdestinationpostcodeanddps/_index.md new file mode 100644 index 000000000..44614ec3d --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setdestinationpostcodeanddps/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setDestinationPostCodeAndDPS" +linktitle: "setDestinationPostCodeAndDPS" +articleTitle: "setDestinationPostCodeAndDPS" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) Distri..." +type: docs +weight: 160 +url: /nodejs/mailmark2dcodetext/setdestinationpostcodeanddps/ +--- +## setDestinationPostCodeAndDPS(object) {#setdestinationpostcodeanddps} + +Contains the Postcode of the Delivery Address with DPS If inland the Postcode/DP contains the following number of characters. Area (1 or 2 characters) District(1 or 2 characters) Sector(1 character) Unit(2 characters) DPS (2 characters). The Postcode and DPS must comply with a valid PAF® format. + +```javascript +setDestinationPostCodeAndDPS(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | the Postcode of the Delivery Address with DPS | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setinformationtypeid/_index.md b/english/nodejs/mailmark2dcodetext/setinformationtypeid/_index.md new file mode 100644 index 000000000..b1abd92ed --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setinformationtypeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setInformationTypeID" +linktitle: "setInformationTypeID" +articleTitle: "setInformationTypeID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values:." +type: docs +weight: 60 +url: /nodejs/mailmark2dcodetext/setinformationtypeid/ +--- +## setInformationTypeID(object) {#setinformationtypeid} + +Identifies the Royal Mail Mailmark barcode payload for each product type. Valid Values: + +```javascript +setInformationTypeID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Information type ID | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setitemid/_index.md b/english/nodejs/mailmark2dcodetext/setitemid/_index.md new file mode 100644 index 000000000..cd2964189 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setitemid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setItemID" +linktitle: "setItemID" +articleTitle: "setItemID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 day..." +type: docs +weight: 140 +url: /nodejs/mailmark2dcodetext/setitemid/ +--- +## setItemID(object) {#setitemid} + +Identifies the unique item within the Supply Chain ID. Every Mailmark barcode is required to carry an ID so it can be uniquely identified for at least 90 days. Max value: 99999999. + +```javascript +setItemID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | item within the Supply Chain ID | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setreturntosenderpostcode/_index.md b/english/nodejs/mailmark2dcodetext/setreturntosenderpostcode/_index.md new file mode 100644 index 000000000..b72a21362 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setreturntosenderpostcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setReturnToSenderPostCode" +linktitle: "setReturnToSenderPostCode" +articleTitle: "setReturnToSenderPostCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format." +type: docs +weight: 200 +url: /nodejs/mailmark2dcodetext/setreturntosenderpostcode/ +--- +## setReturnToSenderPostCode(object) {#setreturntosenderpostcode} + +Contains the Return to Sender Post Code but no DPS. The PC(without DPS) must comply with a PAF® format. + +```javascript +setReturnToSenderPostCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Return to Sender Post Code but no DPS | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setrtsflag/_index.md b/english/nodejs/mailmark2dcodetext/setrtsflag/_index.md new file mode 100644 index 000000000..8ae917c02 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setrtsflag/_index.md @@ -0,0 +1,33 @@ +--- +title: "Mailmark2DCodetext.setRTSFlag" +linktitle: "setRTSFlag" +articleTitle: "setRTSFlag" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Flag which indicates what level of Return to Sender service is being requested." +type: docs +weight: 180 +url: /nodejs/mailmark2dcodetext/setrtsflag/ +--- +## setRTSFlag(object) {#setrtsflag} + +Flag which indicates what level of Return to Sender service is being requested. + +```javascript +setRTSFlag(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### Return Value + +RTS + +Flag + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setsupplychainid/_index.md b/english/nodejs/mailmark2dcodetext/setsupplychainid/_index.md new file mode 100644 index 000000000..c2f7bf0ab --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setsupplychainid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setSupplyChainID" +linktitle: "setSupplyChainID" +articleTitle: "setSupplyChainID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the unique group of customers involved in the mailing. Max value: 9999999." +type: docs +weight: 120 +url: /nodejs/mailmark2dcodetext/setsupplychainid/ +--- +## setSupplyChainID(object) {#setsupplychainid} + +Identifies the unique group of customers involved in the mailing. Max value: 9999999. + +```javascript +setSupplyChainID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Supply chain ID | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setupucountryid/_index.md b/english/nodejs/mailmark2dcodetext/setupucountryid/_index.md new file mode 100644 index 000000000..757e15903 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setupucountryid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setUPUCountryID" +linktitle: "setUPUCountryID" +articleTitle: "setUPUCountryID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the UPU Country ID.Max length: 4 characters." +type: docs +weight: 40 +url: /nodejs/mailmark2dcodetext/setupucountryid/ +--- +## setUPUCountryID(object) {#setupucountryid} + +Identifies the UPU Country ID.Max length: 4 characters. + +```javascript +setUPUCountryID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Country ID | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dcodetext/setversionid/_index.md b/english/nodejs/mailmark2dcodetext/setversionid/_index.md new file mode 100644 index 000000000..41c6a8ef3 --- /dev/null +++ b/english/nodejs/mailmark2dcodetext/setversionid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Mailmark2DCodetext.setVersionID" +linktitle: "setVersionID" +articleTitle: "setVersionID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the barcode version as relevant to each Information Type ID. Valid Values:." +type: docs +weight: 80 +url: /nodejs/mailmark2dcodetext/setversionid/ +--- +## setVersionID(object) {#setversionid} + +Identifies the barcode version as relevant to each Information Type ID. Valid Values: + +```javascript +setVersionID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Version ID | + +### See Also + +* class [Mailmark2DCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmark2dtype/_index.md b/english/nodejs/mailmark2dtype/_index.md new file mode 100644 index 000000000..060b5ba46 --- /dev/null +++ b/english/nodejs/mailmark2dtype/_index.md @@ -0,0 +1,31 @@ +--- +title: "Mailmark2DType Enum" +linktitle: "Mailmark2DType" +articleTitle: "Mailmark2DType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2D Mailmark Type defines size of Data Matrix barcode." +type: docs +weight: 300 +url: /nodejs/mailmark2dtype/ +--- +## Mailmark2DType enumeration + +2D Mailmark Type defines size of Data Matrix barcode + +```javascript +public enum Mailmark2DType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Auto determine | +| TYPE_7 | `1` | 24 x 24 modules | +| TYPE_9 | `2` | 32 x 32 modules | +| TYPE_29 | `3` | 16 x 48 modules | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/mailmarkcodetext/_index.md b/english/nodejs/mailmarkcodetext/_index.md new file mode 100644 index 000000000..52bc90b60 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/_index.md @@ -0,0 +1,55 @@ +--- +title: "MailmarkCodetext Class" +linktitle: "MailmarkCodetext" +articleTitle: "MailmarkCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the 4-state Royal Mailmark code." +type: docs +weight: 110 +url: /nodejs/mailmarkcodetext/ +--- +## MailmarkCodetext class + +Class for encoding and decoding the text embedded in the 4-state Royal Mailmark code. + +```javascript +public class MailmarkCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MailmarkCodetext](./mailmarkcodetext/#constructor)(*object*) | Initializes a new instance of the MailmarkCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getClass_](./getclass_/) | "0" - Null or Test "1" - 1C (Retail) "2" - 2C (Retail) "3" - 3C (Retail) "4" - Premium (RetailPublishing Mail) (for potential future use) "5" - Deferred (Retail) "6" - Air (Retail) (for potential future use) "7" - Surface (Retail) (for potential future use) "8" - Premium (Network Access) "9" -... | +| [getConstructedCodetext](./getconstructedcodetext/) | Construct codetext from Mailmark data. | +| [getDestinationPostCodePlusDPS](./getdestinationpostcodeplusdps/) | The PC and DP must comply with a PAF format. Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern of characters denoting a domestic sorting code. A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix. | +| [getFormat](./getformat/) | "0" – Null or Test "1" – Letter "2" – Large Letter. | +| [getItemID](./getitemid/) | Maximum value is 99999999. | +| [getSupplychainID](./getsupplychainid/) | Maximum values are 99 for Barcode C and 999999 for Barcode L. | +| [getVersionID](./getversionid/) | Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use). | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes Mailmark data from constructed codetext. | +| [setClass_](./setclass_/)(*object*) | "0" - Null or Test "1" - 1C (Retail) "2" - 2C (Retail) "3" - 3C (Retail) "4" - Premium (RetailPublishing Mail) (for potential future use) "5" - Deferred (Retail) "6" - Air (Retail) (for potential future use) "7" - Surface (Retail) (for potential future use) "8" - Premium (Network Access) "9" -... | +| [setDestinationPostCodePlusDPS](./setdestinationpostcodeplusdps/)(*object*) | The PC and DP must comply with a PAF format. Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern of characters denoting a domestic sorting code. A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix. | +| [setFormat](./setformat/)(*object*) | "0" – Null or Test "1" – LetterN "2" – Large Letter. | +| [setItemID](./setitemid/)(*object*) | Maximum value is 99999999. | +| [setSupplychainID](./setsupplychainid/)(*object*) | Maximum values are 99 for Barcode C and 999999 for Barcode L. | +| [setVersionID](./setversionid/)(*object*) | Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use). | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/mailmarkcodetext/getbarcodetype/_index.md b/english/nodejs/mailmarkcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..e135f9cd2 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "MailmarkCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 180 +url: /nodejs/mailmarkcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getclass_/_index.md b/english/nodejs/mailmarkcodetext/getclass_/_index.md new file mode 100644 index 000000000..40839c5bd --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getclass_/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getClass_" +linktitle: "getClass_" +articleTitle: "getClass_" +second_title: "Aspose.BarCode for Node.js via Java" +description: "\"0\" - Null or Test \"1\" - 1C (Retail) \"2\" - 2C (Retail) \"3\" - 3C (Retail) \"4\" - Premium (RetailPublishing Mail) (for potential future use) \"5\" - Deferred (Ret..." +type: docs +weight: 60 +url: /nodejs/mailmarkcodetext/getclass_/ +--- +## getClass_() {#getclass_} + +"0" - Null or Test "1" - 1C (Retail) "2" - 2C (Retail) "3" - 3C (Retail) "4" - Premium (RetailPublishing Mail) (for potential future use) "5" - Deferred (Retail) "6" - Air (Retail) (for potential future use) "7" - Surface (Retail) (for potential future use) "8" - Premium (Network Access) "9" - Standard (Network Access) + +```javascript +getClass_() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getconstructedcodetext/_index.md b/english/nodejs/mailmarkcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..1af4f8fa3 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "MailmarkCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Construct codetext from Mailmark data." +type: docs +weight: 160 +url: /nodejs/mailmarkcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Construct codetext from Mailmark data. + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getdestinationpostcodeplusdps/_index.md b/english/nodejs/mailmarkcodetext/getdestinationpostcodeplusdps/_index.md new file mode 100644 index 000000000..f4f65bb81 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getdestinationpostcodeplusdps/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getDestinationPostCodePlusDPS" +linktitle: "getDestinationPostCodePlusDPS" +articleTitle: "getDestinationPostCodePlusDPS" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The PC and DP must comply with a PAF format. Nine character string denoting international \"XY11 \" (note the 5 trailing spaces) or a pattern of characters den..." +type: docs +weight: 120 +url: /nodejs/mailmarkcodetext/getdestinationpostcodeplusdps/ +--- +## getDestinationPostCodePlusDPS() {#getdestinationpostcodeplusdps} + +The PC and DP must comply with a PAF format. Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern of characters denoting a domestic sorting code. A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix. + +```javascript +getDestinationPostCodePlusDPS() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getformat/_index.md b/english/nodejs/mailmarkcodetext/getformat/_index.md new file mode 100644 index 000000000..6bb09eed4 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getformat/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getFormat" +linktitle: "getFormat" +articleTitle: "getFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "\"0\" – Null or Test \"1\" – Letter \"2\" – Large Letter." +type: docs +weight: 20 +url: /nodejs/mailmarkcodetext/getformat/ +--- +## getFormat() {#getformat} + +"0" – Null or Test "1" – Letter "2" – Large Letter + +```javascript +getFormat() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getitemid/_index.md b/english/nodejs/mailmarkcodetext/getitemid/_index.md new file mode 100644 index 000000000..3ea6dc5aa --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getitemid/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getItemID" +linktitle: "getItemID" +articleTitle: "getItemID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Maximum value is 99999999." +type: docs +weight: 100 +url: /nodejs/mailmarkcodetext/getitemid/ +--- +## getItemID() {#getitemid} + +Maximum value is 99999999. + +```javascript +getItemID() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getsupplychainid/_index.md b/english/nodejs/mailmarkcodetext/getsupplychainid/_index.md new file mode 100644 index 000000000..cf9f3cce1 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getsupplychainid/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getSupplychainID" +linktitle: "getSupplychainID" +articleTitle: "getSupplychainID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Maximum values are 99 for Barcode C and 999999 for Barcode L." +type: docs +weight: 80 +url: /nodejs/mailmarkcodetext/getsupplychainid/ +--- +## getSupplychainID() {#getsupplychainid} + +Maximum values are 99 for Barcode C and 999999 for Barcode L. + +```javascript +getSupplychainID() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/getversionid/_index.md b/english/nodejs/mailmarkcodetext/getversionid/_index.md new file mode 100644 index 000000000..d7fb747c4 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/getversionid/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.getVersionID" +linktitle: "getVersionID" +articleTitle: "getVersionID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Currently \"1\" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use)." +type: docs +weight: 40 +url: /nodejs/mailmarkcodetext/getversionid/ +--- +## getVersionID() {#getversionid} + +Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use) + +```javascript +getVersionID() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/init/_index.md b/english/nodejs/mailmarkcodetext/init/_index.md new file mode 100644 index 000000000..92201cfb2 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MailmarkCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 150 +url: /nodejs/mailmarkcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/initfromstring/_index.md b/english/nodejs/mailmarkcodetext/initfromstring/_index.md new file mode 100644 index 000000000..078cb1571 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes Mailmark data from constructed codetext." +type: docs +weight: 170 +url: /nodejs/mailmarkcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes Mailmark data from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/mailmarkcodetext/_index.md b/english/nodejs/mailmarkcodetext/mailmarkcodetext/_index.md new file mode 100644 index 000000000..e46ec1d38 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/mailmarkcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext" +linktitle: "MailmarkCodetext" +articleTitle: "MailmarkCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MailmarkCodetext class." +type: docs +weight: 10 +url: /nodejs/mailmarkcodetext/mailmarkcodetext/ +--- +## MailmarkCodetext(object) {#constructor} + +Initializes a new instance of the `MailmarkCodetext` class. + +```javascript +public MailmarkCodetext(object mailmarkCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| mailmarkCodetext | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setclass_/_index.md b/english/nodejs/mailmarkcodetext/setclass_/_index.md new file mode 100644 index 000000000..ab8677086 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setclass_/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setClass_" +linktitle: "setClass_" +articleTitle: "setClass_" +second_title: "Aspose.BarCode for Node.js via Java" +description: "\"0\" - Null or Test \"1\" - 1C (Retail) \"2\" - 2C (Retail) \"3\" - 3C (Retail) \"4\" - Premium (RetailPublishing Mail) (for potential future use) \"5\" - Deferred (Ret..." +type: docs +weight: 70 +url: /nodejs/mailmarkcodetext/setclass_/ +--- +## setClass_(object) {#setclass_} + +"0" - Null or Test "1" - 1C (Retail) "2" - 2C (Retail) "3" - 3C (Retail) "4" - Premium (RetailPublishing Mail) (for potential future use) "5" - Deferred (Retail) "6" - Air (Retail) (for potential future use) "7" - Surface (Retail) (for potential future use) "8" - Premium (Network Access) "9" - Standard (Network Access) + +```javascript +setClass_(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setdestinationpostcodeplusdps/_index.md b/english/nodejs/mailmarkcodetext/setdestinationpostcodeplusdps/_index.md new file mode 100644 index 000000000..393d3683a --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setdestinationpostcodeplusdps/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setDestinationPostCodePlusDPS" +linktitle: "setDestinationPostCodePlusDPS" +articleTitle: "setDestinationPostCodePlusDPS" +second_title: "Aspose.BarCode for Node.js via Java" +description: "The PC and DP must comply with a PAF format. Nine character string denoting international \"XY11 \" (note the 5 trailing spaces) or a pattern of characters den..." +type: docs +weight: 130 +url: /nodejs/mailmarkcodetext/setdestinationpostcodeplusdps/ +--- +## setDestinationPostCodePlusDPS(object) {#setdestinationpostcodeplusdps} + +The PC and DP must comply with a PAF format. Nine character string denoting international "XY11 " (note the 5 trailing spaces) or a pattern of characters denoting a domestic sorting code. A domestic sorting code consists of an outward postcode, an inward postcode, and a Delivery Point Suffix. + +```javascript +setDestinationPostCodePlusDPS(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setformat/_index.md b/english/nodejs/mailmarkcodetext/setformat/_index.md new file mode 100644 index 000000000..ba0fbc53d --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setformat/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setFormat" +linktitle: "setFormat" +articleTitle: "setFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "\"0\" – Null or Test \"1\" – LetterN \"2\" – Large Letter." +type: docs +weight: 30 +url: /nodejs/mailmarkcodetext/setformat/ +--- +## setFormat(object) {#setformat} + +"0" – Null or Test "1" – LetterN "2" – Large Letter + +```javascript +setFormat(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setitemid/_index.md b/english/nodejs/mailmarkcodetext/setitemid/_index.md new file mode 100644 index 000000000..d2ed1a94a --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setitemid/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setItemID" +linktitle: "setItemID" +articleTitle: "setItemID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Maximum value is 99999999." +type: docs +weight: 110 +url: /nodejs/mailmarkcodetext/setitemid/ +--- +## setItemID(object) {#setitemid} + +Maximum value is 99999999. + +```javascript +setItemID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setsupplychainid/_index.md b/english/nodejs/mailmarkcodetext/setsupplychainid/_index.md new file mode 100644 index 000000000..405f4fb43 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setsupplychainid/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setSupplychainID" +linktitle: "setSupplychainID" +articleTitle: "setSupplychainID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Maximum values are 99 for Barcode C and 999999 for Barcode L." +type: docs +weight: 90 +url: /nodejs/mailmarkcodetext/setsupplychainid/ +--- +## setSupplychainID(object) {#setsupplychainid} + +Maximum values are 99 for Barcode C and 999999 for Barcode L. + +```javascript +setSupplychainID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mailmarkcodetext/setversionid/_index.md b/english/nodejs/mailmarkcodetext/setversionid/_index.md new file mode 100644 index 000000000..9843a81d9 --- /dev/null +++ b/english/nodejs/mailmarkcodetext/setversionid/_index.md @@ -0,0 +1,27 @@ +--- +title: "MailmarkCodetext.setVersionID" +linktitle: "setVersionID" +articleTitle: "setVersionID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Currently \"1\" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use)." +type: docs +weight: 50 +url: /nodejs/mailmarkcodetext/setversionid/ +--- +## setVersionID(object) {#setversionid} + +Currently "1" – For Mailmark barcode (0 and 2 to 9 and A to Z spare for future use) + +```javascript +setVersionID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MailmarkCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/_index.md b/english/nodejs/mandatoryfields/_index.md new file mode 100644 index 000000000..f1da905fa --- /dev/null +++ b/english/nodejs/mandatoryfields/_index.md @@ -0,0 +1,74 @@ +--- +title: "MandatoryFields Class" +linktitle: "MandatoryFields" +articleTitle: "MandatoryFields" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mandatory elements (fields) of the card." +type: docs +weight: 370 +url: /nodejs/mandatoryfields/ +--- +## MandatoryFields class + +Mandatory elements (fields) of the card + +```javascript +public class MandatoryFields : BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MandatoryFields](./mandatoryfields/#constructor)(*object*) | Initializes a new instance of the MandatoryFields class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAddressCity](./getaddresscity/) | DAI, City portion of the cardholder address, DL/ID, V20ANS. | +| [getAddressPostalCode](./getaddresspostalcode/) | DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be used to fill the trailing set of numbers up to 9 digits, DL/ID, F11ANS. | +| [getAddressState](./getaddressstate/) | DAJ, State portion of the cardholder address, DL/ID, F2A. | +| [getAddressStreet1](./getaddressstreet1/) | DAG, Street portion of the cardholder address, DL/ID, V35ANS. | +| [getCountryIdentification](./getcountryidentification/) | DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A. | +| [getCustomerIDNumber](./getcustomeridnumber/) | DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS. | +| [getDateOfBirth](./getdateofbirth/) | DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N. | +| [getDocumentDiscriminator](./getdocumentdiscriminator/) | DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve multiple purposes of document discrimination, audit information number, and/or inventory control, DL/ID, V25ANS. | +| [getEndorsementCodes](./getendorsementcodes/) | DCD, Jurisdiction specific endorsement codes, DL, V5ANS. | +| [getEyeColor](./geteyecolor/) | DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A. | +| [getFamilyName](./getfamilyname/) | DCS, Family name of the cardholder, DL/ID, V40ANS. | +| [getFamilyNameTruncation](./getfamilynametruncation/) | DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [getFirstName](./getfirstname/) | DAC, First name of the cardholder, DL/ID, V40ANS. | +| [getFirstNameTruncation](./getfirstnametruncation/) | DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [getHeight](./getheight/) | DAU, Height of cardholder. Inches (in): number of inches followed by " in" ex. 6'1'' = "073 in" Centimeters(cm) : number of centimeters followed by " cm" ex. 181 centimeters="181 cm" , DL/ID, F6ANS. | +| [getMiddleName](./getmiddlename/) | DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma ",". , DL/ID, V40ANS. | +| [getMiddleNameTruncation](./getmiddlenametruncation/) | DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [getRestrictionCodes](./getrestrictioncodes/) | DCB, Jurisdiction-specific restrictions codes, DL, V12ANS. | +| [getSex](./getsex/) | DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N. | +| [getVehicleClass](./getvehicleclass/) | DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS. | +| [init](./init/) | | +| [setAddressCity](./setaddresscity/)(*object*) | DAI, City portion of the cardholder address, DL/ID, V20ANS. | +| [setAddressPostalCode](./setaddresspostalcode/)(*object*) | DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be used to fill the trailing set of numbers up to 9 digits, DL/ID, F11ANS. | +| [setAddressState](./setaddressstate/)(*object*) | DAJ, State portion of the cardholder address, DL/ID, F2A. | +| [setAddressStreet1](./setaddressstreet1/)(*object*) | DAG, Street portion of the cardholder address, DL/ID, V35ANS. | +| [setCountryIdentification](./setcountryidentification/)(*object*) | DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A. | +| [setCustomerIDNumber](./setcustomeridnumber/)(*object*) | DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS. | +| [setDateOfBirth](./setdateofbirth/)(*object*) | DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N. | +| [setDocumentDiscriminator](./setdocumentdiscriminator/)(*object*) | DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve multiple purposes of document discrimination, audit information number, and/or inventory control, DL/ID, V25ANS. | +| [setEndorsementCodes](./setendorsementcodes/)(*object*) | DCD, Jurisdiction specific endorsement codes, DL, V5ANS. | +| [setEyeColor](./seteyecolor/)(*object*) | DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A. | +| [setFamilyName](./setfamilyname/)(*object*) | DCS, Family name of the cardholder, DL/ID, V40ANS. | +| [setFamilyNameTruncation](./setfamilynametruncation/)(*object*) | DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [setFirstName](./setfirstname/)(*object*) | DAC, First name of the cardholder, DL/ID, V40ANS. | +| [setFirstNameTruncation](./setfirstnametruncation/)(*object*) | DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [setHeight](./setheight/)(*object*) | DAU, Height of cardholder. Inches (in): number of inches followed by " in" ex. 6'1'' = "073 in" Centimeters(cm) : number of centimeters followed by " cm" ex. 181 centimeters="181 cm" , DL/ID, F6ANS. | +| [setMiddleName](./setmiddlename/)(*object*) | DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma ",". , DL/ID, V40ANS. | +| [setMiddleNameTruncation](./setmiddlenametruncation/)(*object*) | DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A. | +| [setRestrictionCodes](./setrestrictioncodes/)(*object*) | DCB, Jurisdiction-specific restrictions codes, DL, V12ANS. | +| [setSex](./setsex/)(*object*) | DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N. | +| [setVehicleClass](./setvehicleclass/)(*object*) | DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/mandatoryfields/getaddresscity/_index.md b/english/nodejs/mandatoryfields/getaddresscity/_index.md new file mode 100644 index 000000000..25c370fce --- /dev/null +++ b/english/nodejs/mandatoryfields/getaddresscity/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getAddressCity" +linktitle: "getAddressCity" +articleTitle: "getAddressCity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAI, City portion of the cardholder address, DL/ID, V20ANS." +type: docs +weight: 240 +url: /nodejs/mandatoryfields/getaddresscity/ +--- +## getAddressCity() {#getaddresscity} + +DAI, City portion of the cardholder address, DL/ID, V20ANS + +```javascript +getAddressCity() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getaddresspostalcode/_index.md b/english/nodejs/mandatoryfields/getaddresspostalcode/_index.md new file mode 100644 index 000000000..96d37214c --- /dev/null +++ b/english/nodejs/mandatoryfields/getaddresspostalcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getAddressPostalCode" +linktitle: "getAddressPostalCode" +articleTitle: "getAddressPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be ..." +type: docs +weight: 280 +url: /nodejs/mandatoryfields/getaddresspostalcode/ +--- +## getAddressPostalCode() {#getaddresspostalcode} + +DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be used to fill the trailing set of numbers up to 9 digits, DL/ID, F11ANS + +```javascript +getAddressPostalCode() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getaddressstate/_index.md b/english/nodejs/mandatoryfields/getaddressstate/_index.md new file mode 100644 index 000000000..a79b6a08d --- /dev/null +++ b/english/nodejs/mandatoryfields/getaddressstate/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getAddressState" +linktitle: "getAddressState" +articleTitle: "getAddressState" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAJ, State portion of the cardholder address, DL/ID, F2A." +type: docs +weight: 260 +url: /nodejs/mandatoryfields/getaddressstate/ +--- +## getAddressState() {#getaddressstate} + +DAJ, State portion of the cardholder address, DL/ID, F2A + +```javascript +getAddressState() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getaddressstreet1/_index.md b/english/nodejs/mandatoryfields/getaddressstreet1/_index.md new file mode 100644 index 000000000..40b23656c --- /dev/null +++ b/english/nodejs/mandatoryfields/getaddressstreet1/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getAddressStreet1" +linktitle: "getAddressStreet1" +articleTitle: "getAddressStreet1" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAG, Street portion of the cardholder address, DL/ID, V35ANS." +type: docs +weight: 220 +url: /nodejs/mandatoryfields/getaddressstreet1/ +--- +## getAddressStreet1() {#getaddressstreet1} + +DAG, Street portion of the cardholder address, DL/ID, V35ANS + +```javascript +getAddressStreet1() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getcountryidentification/_index.md b/english/nodejs/mandatoryfields/getcountryidentification/_index.md new file mode 100644 index 000000000..35d4116b3 --- /dev/null +++ b/english/nodejs/mandatoryfields/getcountryidentification/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getCountryIdentification" +linktitle: "getCountryIdentification" +articleTitle: "getCountryIdentification" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A." +type: docs +weight: 340 +url: /nodejs/mandatoryfields/getcountryidentification/ +--- +## getCountryIdentification() {#getcountryidentification} + +DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A + +```javascript +getCountryIdentification() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getcustomeridnumber/_index.md b/english/nodejs/mandatoryfields/getcustomeridnumber/_index.md new file mode 100644 index 000000000..3cb71bbed --- /dev/null +++ b/english/nodejs/mandatoryfields/getcustomeridnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getCustomerIDNumber" +linktitle: "getCustomerIDNumber" +articleTitle: "getCustomerIDNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS." +type: docs +weight: 300 +url: /nodejs/mandatoryfields/getcustomeridnumber/ +--- +## getCustomerIDNumber() {#getcustomeridnumber} + +DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS + +```javascript +getCustomerIDNumber() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getdateofbirth/_index.md b/english/nodejs/mandatoryfields/getdateofbirth/_index.md new file mode 100644 index 000000000..bcd25b6e0 --- /dev/null +++ b/english/nodejs/mandatoryfields/getdateofbirth/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getDateOfBirth" +linktitle: "getDateOfBirth" +articleTitle: "getDateOfBirth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N." +type: docs +weight: 140 +url: /nodejs/mandatoryfields/getdateofbirth/ +--- +## getDateOfBirth() {#getdateofbirth} + +DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N + +```javascript +getDateOfBirth() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getdocumentdiscriminator/_index.md b/english/nodejs/mandatoryfields/getdocumentdiscriminator/_index.md new file mode 100644 index 000000000..7adce458b --- /dev/null +++ b/english/nodejs/mandatoryfields/getdocumentdiscriminator/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getDocumentDiscriminator" +linktitle: "getDocumentDiscriminator" +articleTitle: "getDocumentDiscriminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve mul..." +type: docs +weight: 320 +url: /nodejs/mandatoryfields/getdocumentdiscriminator/ +--- +## getDocumentDiscriminator() {#getdocumentdiscriminator} + +DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve multiple purposes of document discrimination, audit information number, and/or inventory control, DL/ID, V25ANS + +```javascript +getDocumentDiscriminator() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getendorsementcodes/_index.md b/english/nodejs/mandatoryfields/getendorsementcodes/_index.md new file mode 100644 index 000000000..0ba16cd9b --- /dev/null +++ b/english/nodejs/mandatoryfields/getendorsementcodes/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getEndorsementCodes" +linktitle: "getEndorsementCodes" +articleTitle: "getEndorsementCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCD, Jurisdiction specific endorsement codes, DL, V5ANS." +type: docs +weight: 60 +url: /nodejs/mandatoryfields/getendorsementcodes/ +--- +## getEndorsementCodes() {#getendorsementcodes} + +DCD, Jurisdiction specific endorsement codes, DL, V5ANS + +```javascript +getEndorsementCodes() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/geteyecolor/_index.md b/english/nodejs/mandatoryfields/geteyecolor/_index.md new file mode 100644 index 000000000..2e5ee4f49 --- /dev/null +++ b/english/nodejs/mandatoryfields/geteyecolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getEyeColor" +linktitle: "getEyeColor" +articleTitle: "getEyeColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A." +type: docs +weight: 180 +url: /nodejs/mandatoryfields/geteyecolor/ +--- +## getEyeColor() {#geteyecolor} + +DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A + +```javascript +getEyeColor() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getfamilyname/_index.md b/english/nodejs/mandatoryfields/getfamilyname/_index.md new file mode 100644 index 000000000..f5584d117 --- /dev/null +++ b/english/nodejs/mandatoryfields/getfamilyname/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getFamilyName" +linktitle: "getFamilyName" +articleTitle: "getFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCS, Family name of the cardholder, DL/ID, V40ANS." +type: docs +weight: 80 +url: /nodejs/mandatoryfields/getfamilyname/ +--- +## getFamilyName() {#getfamilyname} + +DCS, Family name of the cardholder, DL/ID, V40ANS + +```javascript +getFamilyName() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getfamilynametruncation/_index.md b/english/nodejs/mandatoryfields/getfamilynametruncation/_index.md new file mode 100644 index 000000000..f2688f7c2 --- /dev/null +++ b/english/nodejs/mandatoryfields/getfamilynametruncation/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getFamilyNameTruncation" +linktitle: "getFamilyNameTruncation" +articleTitle: "getFamilyNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 360 +url: /nodejs/mandatoryfields/getfamilynametruncation/ +--- +## getFamilyNameTruncation() {#getfamilynametruncation} + +DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +getFamilyNameTruncation() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getfirstname/_index.md b/english/nodejs/mandatoryfields/getfirstname/_index.md new file mode 100644 index 000000000..3738fa18c --- /dev/null +++ b/english/nodejs/mandatoryfields/getfirstname/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getFirstName" +linktitle: "getFirstName" +articleTitle: "getFirstName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAC, First name of the cardholder, DL/ID, V40ANS." +type: docs +weight: 100 +url: /nodejs/mandatoryfields/getfirstname/ +--- +## getFirstName() {#getfirstname} + +DAC, First name of the cardholder, DL/ID, V40ANS + +```javascript +getFirstName() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getfirstnametruncation/_index.md b/english/nodejs/mandatoryfields/getfirstnametruncation/_index.md new file mode 100644 index 000000000..01fe933c3 --- /dev/null +++ b/english/nodejs/mandatoryfields/getfirstnametruncation/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getFirstNameTruncation" +linktitle: "getFirstNameTruncation" +articleTitle: "getFirstNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 380 +url: /nodejs/mandatoryfields/getfirstnametruncation/ +--- +## getFirstNameTruncation() {#getfirstnametruncation} + +DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +getFirstNameTruncation() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getheight/_index.md b/english/nodejs/mandatoryfields/getheight/_index.md new file mode 100644 index 000000000..01add8276 --- /dev/null +++ b/english/nodejs/mandatoryfields/getheight/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getHeight" +linktitle: "getHeight" +articleTitle: "getHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAU, Height of cardholder. Inches (in): number of inches followed by \" in\" ex. 6'1'' = \"073 in\" Centimeters(cm) : number of centimeters followed by \" cm\" ex...." +type: docs +weight: 200 +url: /nodejs/mandatoryfields/getheight/ +--- +## getHeight() {#getheight} + +DAU, Height of cardholder. Inches (in): number of inches followed by " in" ex. 6'1'' = "073 in" Centimeters(cm) : number of centimeters followed by " cm" ex. 181 centimeters="181 cm" , DL/ID, F6ANS + +```javascript +getHeight() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getmiddlename/_index.md b/english/nodejs/mandatoryfields/getmiddlename/_index.md new file mode 100644 index 000000000..9537fcbd4 --- /dev/null +++ b/english/nodejs/mandatoryfields/getmiddlename/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getMiddleName" +linktitle: "getMiddleName" +articleTitle: "getMiddleName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma \",\". , DL/ID, V40ANS." +type: docs +weight: 120 +url: /nodejs/mandatoryfields/getmiddlename/ +--- +## getMiddleName() {#getmiddlename} + +DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma ",". , DL/ID, V40ANS + +```javascript +getMiddleName() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getmiddlenametruncation/_index.md b/english/nodejs/mandatoryfields/getmiddlenametruncation/_index.md new file mode 100644 index 000000000..4ee13a196 --- /dev/null +++ b/english/nodejs/mandatoryfields/getmiddlenametruncation/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getMiddleNameTruncation" +linktitle: "getMiddleNameTruncation" +articleTitle: "getMiddleNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 400 +url: /nodejs/mandatoryfields/getmiddlenametruncation/ +--- +## getMiddleNameTruncation() {#getmiddlenametruncation} + +DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +getMiddleNameTruncation() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getrestrictioncodes/_index.md b/english/nodejs/mandatoryfields/getrestrictioncodes/_index.md new file mode 100644 index 000000000..502620ebd --- /dev/null +++ b/english/nodejs/mandatoryfields/getrestrictioncodes/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getRestrictionCodes" +linktitle: "getRestrictionCodes" +articleTitle: "getRestrictionCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCB, Jurisdiction-specific restrictions codes, DL, V12ANS." +type: docs +weight: 40 +url: /nodejs/mandatoryfields/getrestrictioncodes/ +--- +## getRestrictionCodes() {#getrestrictioncodes} + +DCB, Jurisdiction-specific restrictions codes, DL, V12ANS + +```javascript +getRestrictionCodes() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getsex/_index.md b/english/nodejs/mandatoryfields/getsex/_index.md new file mode 100644 index 000000000..ad62c5a61 --- /dev/null +++ b/english/nodejs/mandatoryfields/getsex/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getSex" +linktitle: "getSex" +articleTitle: "getSex" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N." +type: docs +weight: 160 +url: /nodejs/mandatoryfields/getsex/ +--- +## getSex() {#getsex} + +DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N + +```javascript +getSex() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/getvehicleclass/_index.md b/english/nodejs/mandatoryfields/getvehicleclass/_index.md new file mode 100644 index 000000000..603cd0be9 --- /dev/null +++ b/english/nodejs/mandatoryfields/getvehicleclass/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.getVehicleClass" +linktitle: "getVehicleClass" +articleTitle: "getVehicleClass" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS." +type: docs +weight: 20 +url: /nodejs/mandatoryfields/getvehicleclass/ +--- +## getVehicleClass() {#getvehicleclass} + +DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS + +```javascript +getVehicleClass() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/init/_index.md b/english/nodejs/mandatoryfields/init/_index.md new file mode 100644 index 000000000..b8a50b6f1 --- /dev/null +++ b/english/nodejs/mandatoryfields/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MandatoryFields.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 420 +url: /nodejs/mandatoryfields/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/mandatoryfields/_index.md b/english/nodejs/mandatoryfields/mandatoryfields/_index.md new file mode 100644 index 000000000..567accfeb --- /dev/null +++ b/english/nodejs/mandatoryfields/mandatoryfields/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields" +linktitle: "MandatoryFields" +articleTitle: "MandatoryFields" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MandatoryFields class." +type: docs +weight: 10 +url: /nodejs/mandatoryfields/mandatoryfields/ +--- +## MandatoryFields(object) {#constructor} + +Initializes a new instance of the MandatoryFields class. + +```javascript +public MandatoryFields(object nativeObject) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| nativeObject | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setaddresscity/_index.md b/english/nodejs/mandatoryfields/setaddresscity/_index.md new file mode 100644 index 000000000..ea308d5aa --- /dev/null +++ b/english/nodejs/mandatoryfields/setaddresscity/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setAddressCity" +linktitle: "setAddressCity" +articleTitle: "setAddressCity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAI, City portion of the cardholder address, DL/ID, V20ANS." +type: docs +weight: 250 +url: /nodejs/mandatoryfields/setaddresscity/ +--- +## setAddressCity(object) {#setaddresscity} + +DAI, City portion of the cardholder address, DL/ID, V20ANS + +```javascript +setAddressCity(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setaddresspostalcode/_index.md b/english/nodejs/mandatoryfields/setaddresspostalcode/_index.md new file mode 100644 index 000000000..b64e429ac --- /dev/null +++ b/english/nodejs/mandatoryfields/setaddresspostalcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setAddressPostalCode" +linktitle: "setAddressPostalCode" +articleTitle: "setAddressPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be ..." +type: docs +weight: 290 +url: /nodejs/mandatoryfields/setaddresspostalcode/ +--- +## setAddressPostalCode(object) {#setaddresspostalcode} + +DAK, Postal code portion of the cardholder address in the U.S.and Canada. If the trailing portion of the postal code in the U.S. is not known, zeros will be used to fill the trailing set of numbers up to 9 digits, DL/ID, F11ANS + +```javascript +setAddressPostalCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setaddressstate/_index.md b/english/nodejs/mandatoryfields/setaddressstate/_index.md new file mode 100644 index 000000000..2e4396153 --- /dev/null +++ b/english/nodejs/mandatoryfields/setaddressstate/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setAddressState" +linktitle: "setAddressState" +articleTitle: "setAddressState" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAJ, State portion of the cardholder address, DL/ID, F2A." +type: docs +weight: 270 +url: /nodejs/mandatoryfields/setaddressstate/ +--- +## setAddressState(object) {#setaddressstate} + +DAJ, State portion of the cardholder address, DL/ID, F2A + +```javascript +setAddressState(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setaddressstreet1/_index.md b/english/nodejs/mandatoryfields/setaddressstreet1/_index.md new file mode 100644 index 000000000..95eafde66 --- /dev/null +++ b/english/nodejs/mandatoryfields/setaddressstreet1/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setAddressStreet1" +linktitle: "setAddressStreet1" +articleTitle: "setAddressStreet1" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAG, Street portion of the cardholder address, DL/ID, V35ANS." +type: docs +weight: 230 +url: /nodejs/mandatoryfields/setaddressstreet1/ +--- +## setAddressStreet1(object) {#setaddressstreet1} + +DAG, Street portion of the cardholder address, DL/ID, V35ANS + +```javascript +setAddressStreet1(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setcountryidentification/_index.md b/english/nodejs/mandatoryfields/setcountryidentification/_index.md new file mode 100644 index 000000000..94145999d --- /dev/null +++ b/english/nodejs/mandatoryfields/setcountryidentification/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setCountryIdentification" +linktitle: "setCountryIdentification" +articleTitle: "setCountryIdentification" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A." +type: docs +weight: 350 +url: /nodejs/mandatoryfields/setcountryidentification/ +--- +## setCountryIdentification(object) {#setcountryidentification} + +DCG, Country in which DL/ID is issued. U.S. = USA, Canada = CAN, DL/ID, F3A + +```javascript +setCountryIdentification(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setcustomeridnumber/_index.md b/english/nodejs/mandatoryfields/setcustomeridnumber/_index.md new file mode 100644 index 000000000..5910e4fde --- /dev/null +++ b/english/nodejs/mandatoryfields/setcustomeridnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setCustomerIDNumber" +linktitle: "setCustomerIDNumber" +articleTitle: "setCustomerIDNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS." +type: docs +weight: 310 +url: /nodejs/mandatoryfields/setcustomeridnumber/ +--- +## setCustomerIDNumber(object) {#setcustomeridnumber} + +DAQ, The number assigned or calculated by the issuing authority, DL/ID, V25ANS + +```javascript +setCustomerIDNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setdateofbirth/_index.md b/english/nodejs/mandatoryfields/setdateofbirth/_index.md new file mode 100644 index 000000000..8e5cead15 --- /dev/null +++ b/english/nodejs/mandatoryfields/setdateofbirth/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setDateOfBirth" +linktitle: "setDateOfBirth" +articleTitle: "setDateOfBirth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N." +type: docs +weight: 150 +url: /nodejs/mandatoryfields/setdateofbirth/ +--- +## setDateOfBirth(object) {#setdateofbirth} + +DBB, Date on which the document was issued, MMDDCCYY for U.S., CCYYMMDD for Canada, DL/ID, F8N + +```javascript +setDateOfBirth(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setdocumentdiscriminator/_index.md b/english/nodejs/mandatoryfields/setdocumentdiscriminator/_index.md new file mode 100644 index 000000000..2390cffe2 --- /dev/null +++ b/english/nodejs/mandatoryfields/setdocumentdiscriminator/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setDocumentDiscriminator" +linktitle: "setDocumentDiscriminator" +articleTitle: "setDocumentDiscriminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve mul..." +type: docs +weight: 330 +url: /nodejs/mandatoryfields/setdocumentdiscriminator/ +--- +## setDocumentDiscriminator(object) {#setdocumentdiscriminator} + +DCF, Number must uniquely identify a particular document issued to that customer from others that may have been issued in the past. This number may serve multiple purposes of document discrimination, audit information number, and/or inventory control, DL/ID, V25ANS + +```javascript +setDocumentDiscriminator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setendorsementcodes/_index.md b/english/nodejs/mandatoryfields/setendorsementcodes/_index.md new file mode 100644 index 000000000..772838715 --- /dev/null +++ b/english/nodejs/mandatoryfields/setendorsementcodes/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setEndorsementCodes" +linktitle: "setEndorsementCodes" +articleTitle: "setEndorsementCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCD, Jurisdiction specific endorsement codes, DL, V5ANS." +type: docs +weight: 70 +url: /nodejs/mandatoryfields/setendorsementcodes/ +--- +## setEndorsementCodes(object) {#setendorsementcodes} + +DCD, Jurisdiction specific endorsement codes, DL, V5ANS + +```javascript +setEndorsementCodes(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/seteyecolor/_index.md b/english/nodejs/mandatoryfields/seteyecolor/_index.md new file mode 100644 index 000000000..f510450fd --- /dev/null +++ b/english/nodejs/mandatoryfields/seteyecolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setEyeColor" +linktitle: "setEyeColor" +articleTitle: "setEyeColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A." +type: docs +weight: 190 +url: /nodejs/mandatoryfields/seteyecolor/ +--- +## setEyeColor(object) {#seteyecolor} + +DAY, Color of cardholder's eyes. (ANSI D-20 codes). DL/ID, F3A + +```javascript +setEyeColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setfamilyname/_index.md b/english/nodejs/mandatoryfields/setfamilyname/_index.md new file mode 100644 index 000000000..146705815 --- /dev/null +++ b/english/nodejs/mandatoryfields/setfamilyname/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setFamilyName" +linktitle: "setFamilyName" +articleTitle: "setFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCS, Family name of the cardholder, DL/ID, V40ANS." +type: docs +weight: 90 +url: /nodejs/mandatoryfields/setfamilyname/ +--- +## setFamilyName(object) {#setfamilyname} + +DCS, Family name of the cardholder, DL/ID, V40ANS + +```javascript +setFamilyName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setfamilynametruncation/_index.md b/english/nodejs/mandatoryfields/setfamilynametruncation/_index.md new file mode 100644 index 000000000..8d75e0ac3 --- /dev/null +++ b/english/nodejs/mandatoryfields/setfamilynametruncation/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setFamilyNameTruncation" +linktitle: "setFamilyNameTruncation" +articleTitle: "setFamilyNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 370 +url: /nodejs/mandatoryfields/setfamilynametruncation/ +--- +## setFamilyNameTruncation(object) {#setfamilynametruncation} + +DDE, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +setFamilyNameTruncation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setfirstname/_index.md b/english/nodejs/mandatoryfields/setfirstname/_index.md new file mode 100644 index 000000000..31ebce567 --- /dev/null +++ b/english/nodejs/mandatoryfields/setfirstname/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setFirstName" +linktitle: "setFirstName" +articleTitle: "setFirstName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAC, First name of the cardholder, DL/ID, V40ANS." +type: docs +weight: 110 +url: /nodejs/mandatoryfields/setfirstname/ +--- +## setFirstName(object) {#setfirstname} + +DAC, First name of the cardholder, DL/ID, V40ANS + +```javascript +setFirstName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setfirstnametruncation/_index.md b/english/nodejs/mandatoryfields/setfirstnametruncation/_index.md new file mode 100644 index 000000000..3acf33f89 --- /dev/null +++ b/english/nodejs/mandatoryfields/setfirstnametruncation/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setFirstNameTruncation" +linktitle: "setFirstNameTruncation" +articleTitle: "setFirstNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 390 +url: /nodejs/mandatoryfields/setfirstnametruncation/ +--- +## setFirstNameTruncation(object) {#setfirstnametruncation} + +DDF, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +setFirstNameTruncation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setheight/_index.md b/english/nodejs/mandatoryfields/setheight/_index.md new file mode 100644 index 000000000..b4fde8d0c --- /dev/null +++ b/english/nodejs/mandatoryfields/setheight/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setHeight" +linktitle: "setHeight" +articleTitle: "setHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAU, Height of cardholder. Inches (in): number of inches followed by \" in\" ex. 6'1'' = \"073 in\" Centimeters(cm) : number of centimeters followed by \" cm\" ex...." +type: docs +weight: 210 +url: /nodejs/mandatoryfields/setheight/ +--- +## setHeight(object) {#setheight} + +DAU, Height of cardholder. Inches (in): number of inches followed by " in" ex. 6'1'' = "073 in" Centimeters(cm) : number of centimeters followed by " cm" ex. 181 centimeters="181 cm" , DL/ID, F6ANS + +```javascript +setHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setmiddlename/_index.md b/english/nodejs/mandatoryfields/setmiddlename/_index.md new file mode 100644 index 000000000..e934387ec --- /dev/null +++ b/english/nodejs/mandatoryfields/setmiddlename/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setMiddleName" +linktitle: "setMiddleName" +articleTitle: "setMiddleName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma \",\". , DL/ID, V40ANS." +type: docs +weight: 130 +url: /nodejs/mandatoryfields/setmiddlename/ +--- +## setMiddleName(object) {#setmiddlename} + +DAD, Middle name(s) of the cardholder. In the case of multiple middle names they shall be separated by a comma ",". , DL/ID, V40ANS + +```javascript +setMiddleName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setmiddlenametruncation/_index.md b/english/nodejs/mandatoryfields/setmiddlenametruncation/_index.md new file mode 100644 index 000000000..f8346fa32 --- /dev/null +++ b/english/nodejs/mandatoryfields/setmiddlenametruncation/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setMiddleNameTruncation" +linktitle: "setMiddleNameTruncation" +articleTitle: "setMiddleNameTruncation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A." +type: docs +weight: 410 +url: /nodejs/mandatoryfields/setmiddlenametruncation/ +--- +## setMiddleNameTruncation(object) {#setmiddlenametruncation} + +DDG, A code that indicates whether a field has been truncated(T), has not been truncated(N), or unknown whether truncated(U), DL/ID, F1A + +```javascript +setMiddleNameTruncation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setrestrictioncodes/_index.md b/english/nodejs/mandatoryfields/setrestrictioncodes/_index.md new file mode 100644 index 000000000..047f11b8f --- /dev/null +++ b/english/nodejs/mandatoryfields/setrestrictioncodes/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setRestrictionCodes" +linktitle: "setRestrictionCodes" +articleTitle: "setRestrictionCodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCB, Jurisdiction-specific restrictions codes, DL, V12ANS." +type: docs +weight: 50 +url: /nodejs/mandatoryfields/setrestrictioncodes/ +--- +## setRestrictionCodes(object) {#setrestrictioncodes} + +DCB, Jurisdiction-specific restrictions codes, DL, V12ANS + +```javascript +setRestrictionCodes(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setsex/_index.md b/english/nodejs/mandatoryfields/setsex/_index.md new file mode 100644 index 000000000..725c238ad --- /dev/null +++ b/english/nodejs/mandatoryfields/setsex/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setSex" +linktitle: "setSex" +articleTitle: "setSex" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N." +type: docs +weight: 170 +url: /nodejs/mandatoryfields/setsex/ +--- +## setSex(object) {#setsex} + +DBC, Gender of the cardholder. 1 = male, 2 = female, 9 = not specified, DL/ID, F1N + +```javascript +setSex(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/mandatoryfields/setvehicleclass/_index.md b/english/nodejs/mandatoryfields/setvehicleclass/_index.md new file mode 100644 index 000000000..97bdff606 --- /dev/null +++ b/english/nodejs/mandatoryfields/setvehicleclass/_index.md @@ -0,0 +1,27 @@ +--- +title: "MandatoryFields.setVehicleClass" +linktitle: "setVehicleClass" +articleTitle: "setVehicleClass" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS." +type: docs +weight: 30 +url: /nodejs/mandatoryfields/setvehicleclass/ +--- +## setVehicleClass(object) {#setvehicleclass} + +DCA, Jurisdiction-specific vehicle class / group code, DL, V6ANS + +```javascript +setVehicleClass(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MandatoryFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/_index.md b/english/nodejs/maxicodecodetext/_index.md new file mode 100644 index 000000000..ef475ebfc --- /dev/null +++ b/english/nodejs/maxicodecodetext/_index.md @@ -0,0 +1,50 @@ +--- +title: "MaxiCodeCodetext Class" +linktitle: "MaxiCodeCodetext" +articleTitle: "MaxiCodeCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Base class for encoding and decoding the text embedded in the MaxiCode code." +type: docs +weight: 130 +url: /nodejs/maxicodecodetext/ +--- +## MaxiCodeCodetext class + +Base class for encoding and decoding the text embedded in the MaxiCode code. + +```javascript +public class MaxiCodeCodetext : IComplexCodetext +``` + +## Methods + +| Name | Description | +| --- | --- | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getECIEncoding](./geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. | +| [getEncodeMode](./getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. | +| [getMaxiCodeEncodeMode](./getmaxicodeencodemode/) | Gets a MaxiCode encode mode. | +| [getMode](./getmode/) | Gets MaxiCode mode. | +| [setECIEncoding](./seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. | +| [setEncodeMode](./setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. | +| [setMaxiCodeEncodeMode](./setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. | + +## Examples + +```javascript +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +console.log("BarCode Type: " + resultMaxiCodeCodetext.getBarcodeType()); +console.log("MaxiCode mode: " + resultMaxiCodeCodetext.getMode()); +console.log("BarCode CodeText: " + resultMaxiCodeCodetext.getConstructedCodetext()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodecodetext/getbarcodetype/_index.md b/english/nodejs/maxicodecodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..c4e5f7ac1 --- /dev/null +++ b/english/nodejs/maxicodecodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 80 +url: /nodejs/maxicodecodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/geteciencoding/_index.md b/english/nodejs/maxicodecodetext/geteciencoding/_index.md new file mode 100644 index 000000000..e9ab3f102 --- /dev/null +++ b/english/nodejs/maxicodecodetext/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeCodetext.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO." +type: docs +weight: 60 +url: /nodejs/maxicodecodetext/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. + +```javascript +getECIEncoding() +``` + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/getencodemode/_index.md b/english/nodejs/maxicodecodetext/getencodemode/_index.md new file mode 100644 index 000000000..66389bd5c --- /dev/null +++ b/english/nodejs/maxicodecodetext/getencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetext.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode. Default value: Auto." +type: docs +weight: 20 +url: /nodejs/maxicodecodetext/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Gets a MaxiCode encode mode. Default value: Auto. + +```javascript +getEncodeMode() +``` + +### Return Value + +a + +MaxiCode encode mode. + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/getmaxicodeencodemode/_index.md b/english/nodejs/maxicodecodetext/getmaxicodeencodemode/_index.md new file mode 100644 index 000000000..3d2dfa7be --- /dev/null +++ b/english/nodejs/maxicodecodetext/getmaxicodeencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeCodetext.getMaxiCodeEncodeMode" +linktitle: "getMaxiCodeEncodeMode" +articleTitle: "getMaxiCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode." +type: docs +weight: 40 +url: /nodejs/maxicodecodetext/getmaxicodeencodemode/ +--- +## getMaxiCodeEncodeMode() {#getmaxicodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Gets a MaxiCode encode mode. + +```javascript +getMaxiCodeEncodeMode() +``` + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/getmode/_index.md b/english/nodejs/maxicodecodetext/getmode/_index.md new file mode 100644 index 000000000..772ba9d04 --- /dev/null +++ b/english/nodejs/maxicodecodetext/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetext.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets MaxiCode mode." +type: docs +weight: 10 +url: /nodejs/maxicodecodetext/getmode/ +--- +## getMode() {#getmode} + +Gets MaxiCode mode. + +```javascript +getMode() +``` + +### Return Value + +MaxiCode + +mode + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/seteciencoding/_index.md b/english/nodejs/maxicodecodetext/seteciencoding/_index.md new file mode 100644 index 000000000..dec0feef8 --- /dev/null +++ b/english/nodejs/maxicodecodetext/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeCodetext.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO." +type: docs +weight: 70 +url: /nodejs/maxicodecodetext/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. + +```javascript +setECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/setencodemode/_index.md b/english/nodejs/maxicodecodetext/setencodemode/_index.md new file mode 100644 index 000000000..a9e651b0c --- /dev/null +++ b/english/nodejs/maxicodecodetext/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeCodetext.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode. Default value: Auto." +type: docs +weight: 30 +url: /nodejs/maxicodecodetext/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Sets a MaxiCode encode mode. Default value: Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a MaxiCode encode mode. | + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetext/setmaxicodeencodemode/_index.md b/english/nodejs/maxicodecodetext/setmaxicodeencodemode/_index.md new file mode 100644 index 000000000..d9e462fd6 --- /dev/null +++ b/english/nodejs/maxicodecodetext/setmaxicodeencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetext.setMaxiCodeEncodeMode" +linktitle: "setMaxiCodeEncodeMode" +articleTitle: "setMaxiCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode." +type: docs +weight: 50 +url: /nodejs/maxicodecodetext/setmaxicodeencodemode/ +--- +## setMaxiCodeEncodeMode(object) {#setmaxicodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Sets a MaxiCode encode mode. + +```javascript +setMaxiCodeEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode2/_index.md b/english/nodejs/maxicodecodetextmode2/_index.md new file mode 100644 index 000000000..c59ec96dc --- /dev/null +++ b/english/nodejs/maxicodecodetextmode2/_index.md @@ -0,0 +1,145 @@ +--- +title: "MaxiCodeCodetextMode2 Class" +linktitle: "MaxiCodeCodetextMode2" +articleTitle: "MaxiCodeCodetextMode2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the MaxiCode code for modes 2." +type: docs +weight: 190 +url: /nodejs/maxicodecodetextmode2/ +--- +## MaxiCodeCodetextMode2 class + +Class for encoding and decoding the text embedded in the MaxiCode code for modes 2. + +```javascript +public class MaxiCodeCodetextMode2 : MaxiCodeStructuredCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeCodetextMode2](./maxicodecodetextmode2/#constructor) | Initializes a new instance of the MaxiCodeCodetextMode2 class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](../maxicodestructuredcodetext/equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredCodetext`](..//maxicodestructuredcodetext/) value. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getBarcodeType](../maxicodecodetext/getbarcodetype/) | Gets barcode type. *(Inherited from MaxiCodeCodetext)* | +| [getConstructedCodetext](../maxicodestructuredcodetext/getconstructedcodetext/) | Constructs codetext. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getCountryCode](../maxicodestructuredcodetext/getcountrycode/) | Identifies 3 digit country code. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getECIEncoding](../maxicodecodetext/geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [getEncodeMode](../maxicodecodetext/getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [getHashCode](../maxicodestructuredcodetext/gethashcode/) | Returns the hash code for this instance. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getMaxiCodeEncodeMode](../maxicodecodetext/getmaxicodeencodemode/) | Gets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [getMode](./getmode/) | Gets MaxiCode mode. | +| [getPostalCode](../maxicodestructuredcodetext/getpostalcode/) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getSecondMessage](../maxicodestructuredcodetext/getsecondmessage/) | Identifies second message of the barcode. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getServiceCategory](../maxicodestructuredcodetext/getservicecategory/) | Identifies 3 digit service category. *(Inherited from MaxiCodeStructuredCodetext)* | +| [init](./init/) | | +| [initFromString](../maxicodestructuredcodetext/initfromstring/)(*object*) | Initializes instance from constructed codetext. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setCountryCode](../maxicodestructuredcodetext/setcountrycode/)(*object*) | Identifies 3 digit country code. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setECIEncoding](../maxicodecodetext/seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [setEncodeMode](../maxicodecodetext/setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [setMaxiCodeEncodeMode](../maxicodecodetext/setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [setPostalCode](../maxicodestructuredcodetext/setpostalcode/)(*object*) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setSecondMessage](../maxicodestructuredcodetext/setsecondmessage/)(*object*) | Identifies second message of the barcode. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setServiceCategory](../maxicodestructuredcodetext/setservicecategory/)(*object*) | Identifies 3 digit service category. *(Inherited from MaxiCodeStructuredCodetext)* | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [maxiCodeSecondMessage](../maxicodestructuredcodetext/maxicodesecondmessage/) | *(Inherited from MaxiCodeStructuredCodetext)* | + +## Examples + +This sample shows how to encode and decode MaxiCode codetext for mode 2. + +```javascript +//Mode 2 with standart second message +let maxiCodeCodetext = new MaxiCodeCodetextMode2(); +maxiCodeCodetext.setPostalCode("524032140"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let MaxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); +MaxiCodeStandardSecondMessage.setMessage("Test message"); +maxiCodeCodetext.setSecondMessage(MaxiCodeStandardSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 2 with structured second message +let maxiCodeCodetext = new MaxiCodeCodetextMode2(); +maxiCodeCodetext.setPostalCode("524032140"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); +maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); +maxiCodeStructuredSecondMessage.add("PITTSBURGH"); +maxiCodeStructuredSecondMessage.add("PA"); +maxiCodeStructuredSecondMessage.setYear(99); +maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Decoding raw codetext with standart second message +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2) +{ +let maxiCodeStructuredCodetext = resultMaxiCodeCodetext; +console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); +console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); +console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); +if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStandardSecondMessage) +{ +let secondMessage = maxiCodeStructuredCodetext.getSecondMessage(); +console.log("Message: " + secondMessage.getMessage()); +} +} +} +``` + +```javascript +//Decoding raw codetext with structured second message +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +if (resultMaxiCodeCodetext instanceof MaxiCodeCodetextMode2){ +let maxiCodeStructuredCodetext = resultMaxiCodeCodetext; +console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); +console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); +console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); +if (maxiCodeStructuredCodetext.getSecondMessage() instanceof MaxiCodeStructuredSecondMessage){ +let secondMessage = maxiCodeStructuredCodetext.getSecondMessage(); +console.log("Message:"); +let identifiers = secondMessage.getIdentifiers(); +for(let i = 0; i < identifiers.length; i++) +{ +let identifier = identifiers[i]; +console.log(identifier); +}; +} +} +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodecodetextmode2/construct/_index.md b/english/nodejs/maxicodecodetextmode2/construct/_index.md new file mode 100644 index 000000000..12ed8cb0c --- /dev/null +++ b/english/nodejs/maxicodecodetextmode2/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeCodetextMode2.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodecodetextmode2/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeCodetextMode2](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode2/getmode/_index.md b/english/nodejs/maxicodecodetextmode2/getmode/_index.md new file mode 100644 index 000000000..479d378ef --- /dev/null +++ b/english/nodejs/maxicodecodetextmode2/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetextMode2.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets MaxiCode mode." +type: docs +weight: 40 +url: /nodejs/maxicodecodetextmode2/getmode/ +--- +## getMode() {#getmode} + +Gets MaxiCode mode. + +```javascript +getMode() +``` + +### Return Value + +MaxiCode + +mode + +### See Also + +* class [MaxiCodeCodetextMode2](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode2/init/_index.md b/english/nodejs/maxicodecodetextmode2/init/_index.md new file mode 100644 index 000000000..61dbcd625 --- /dev/null +++ b/english/nodejs/maxicodecodetextmode2/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeCodetextMode2.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/maxicodecodetextmode2/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeCodetextMode2](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode2/maxicodecodetextmode2/_index.md b/english/nodejs/maxicodecodetextmode2/maxicodecodetextmode2/_index.md new file mode 100644 index 000000000..658b11189 --- /dev/null +++ b/english/nodejs/maxicodecodetextmode2/maxicodecodetextmode2/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeCodetextMode2" +linktitle: "MaxiCodeCodetextMode2" +articleTitle: "MaxiCodeCodetextMode2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeCodetextMode2 class." +type: docs +weight: 10 +url: /nodejs/maxicodecodetextmode2/maxicodecodetextmode2/ +--- +## MaxiCodeCodetextMode2() {#constructor} + +Initializes a new instance of the MaxiCodeCodetextMode2 class. + +```javascript +public MaxiCodeCodetextMode2() +``` + +### See Also + +* class [MaxiCodeCodetextMode2](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode3/_index.md b/english/nodejs/maxicodecodetextmode3/_index.md new file mode 100644 index 000000000..a94027e1b --- /dev/null +++ b/english/nodejs/maxicodecodetextmode3/_index.md @@ -0,0 +1,145 @@ +--- +title: "MaxiCodeCodetextMode3 Class" +linktitle: "MaxiCodeCodetextMode3" +articleTitle: "MaxiCodeCodetextMode3" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the MaxiCode code for modes 3. This sample shows how to encode and decode MaxiCode codetext for mode 3." +type: docs +weight: 200 +url: /nodejs/maxicodecodetextmode3/ +--- +## MaxiCodeCodetextMode3 class + +Class for encoding and decoding the text embedded in the MaxiCode code for modes 3. This sample shows how to encode and decode MaxiCode codetext for mode 3. + +```javascript +public class MaxiCodeCodetextMode3 : MaxiCodeStructuredCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeCodetextMode3](./maxicodecodetextmode3/#constructor) | Initializes a new instance of the MaxiCodeCodetextMode3 class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](../maxicodestructuredcodetext/equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredCodetext`](..//maxicodestructuredcodetext/) value. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getBarcodeType](../maxicodecodetext/getbarcodetype/) | Gets barcode type. *(Inherited from MaxiCodeCodetext)* | +| [getConstructedCodetext](../maxicodestructuredcodetext/getconstructedcodetext/) | Constructs codetext. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getCountryCode](../maxicodestructuredcodetext/getcountrycode/) | Identifies 3 digit country code. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getECIEncoding](../maxicodecodetext/geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [getEncodeMode](../maxicodecodetext/getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [getHashCode](../maxicodestructuredcodetext/gethashcode/) | Returns the hash code for this instance. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getMaxiCodeEncodeMode](../maxicodecodetext/getmaxicodeencodemode/) | Gets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [getMode](./getmode/) | Gets MaxiCode mode. | +| [getPostalCode](../maxicodestructuredcodetext/getpostalcode/) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getSecondMessage](../maxicodestructuredcodetext/getsecondmessage/) | Identifies second message of the barcode. *(Inherited from MaxiCodeStructuredCodetext)* | +| [getServiceCategory](../maxicodestructuredcodetext/getservicecategory/) | Identifies 3 digit service category. *(Inherited from MaxiCodeStructuredCodetext)* | +| [init](./init/) | | +| [initFromString](../maxicodestructuredcodetext/initfromstring/)(*object*) | Initializes instance from constructed codetext. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setCountryCode](../maxicodestructuredcodetext/setcountrycode/)(*object*) | Identifies 3 digit country code. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setECIEncoding](../maxicodecodetext/seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [setEncodeMode](../maxicodecodetext/setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [setMaxiCodeEncodeMode](../maxicodecodetext/setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [setPostalCode](../maxicodestructuredcodetext/setpostalcode/)(*object*) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setSecondMessage](../maxicodestructuredcodetext/setsecondmessage/)(*object*) | Identifies second message of the barcode. *(Inherited from MaxiCodeStructuredCodetext)* | +| [setServiceCategory](../maxicodestructuredcodetext/setservicecategory/)(*object*) | Identifies 3 digit service category. *(Inherited from MaxiCodeStructuredCodetext)* | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [maxiCodeSecondMessage](../maxicodestructuredcodetext/maxicodesecondmessage/) | *(Inherited from MaxiCodeStructuredCodetext)* | + +## Examples + +```javascript +//Mode 3 with standart second message +let maxiCodeCodetext = new MaxiCodeCodetextMode3(); +maxiCodeCodetext.setPostalCode("B1050"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let MaxiCodeStandardSecondMessage = new MaxiCodeStandardSecondMessage(); +MaxiCodeStandardSecondMessage.setMessage("Test message"); +maxiCodeCodetext.setSecondMessage(MaxiCodeStandardSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 3 with structured second message +let maxiCodeCodetext = new MaxiCodeCodetextMode3(); +maxiCodeCodetext.setPostalCode("B1050"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); +maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); +maxiCodeStructuredSecondMessage.add("PITTSBURGH"); +maxiCodeStructuredSecondMessage.add("PA"); +maxiCodeStructuredSecondMessage.setYear(99); +maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Decoding raw codetext with standart second message +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3) +{ +let maxiCodeStructuredCodetext = resultMaxiCodeCodetext; +console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); +console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); +console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); +if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStandardSecondMessage) +{ +let secondMessage = maxiCodeStructuredCodetext.getSecondMessage(); +console.log("Message: " + secondMessage.getMessage()); +} +} +} +``` + +```javascript +//Decoding raw codetext with structured second message +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +if (resultMaxiCodeCodetext instanceOf MaxiCodeCodetextMode3) +{ +let maxiCodeStructuredCodetext = resultMaxiCodeCodetext; +console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); +console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); +console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); +if (maxiCodeStructuredCodetext.getSecondMessage() instanceOf MaxiCodeStructuredSecondMessage) +{ +let secondMessage = maxiCodeStructuredCodetext.getSecondMessage(); +console.log("Message:"); +let identifiers = secondMessage.getIdentifiers(); +for(let i = 0; i < identifiers.length; i++) +{ +let identifier = identifiers[i]; +console.log(identifier); +} +} +} +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodecodetextmode3/construct/_index.md b/english/nodejs/maxicodecodetextmode3/construct/_index.md new file mode 100644 index 000000000..871d7225f --- /dev/null +++ b/english/nodejs/maxicodecodetextmode3/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeCodetextMode3.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodecodetextmode3/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeCodetextMode3](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode3/getmode/_index.md b/english/nodejs/maxicodecodetextmode3/getmode/_index.md new file mode 100644 index 000000000..78db8c08c --- /dev/null +++ b/english/nodejs/maxicodecodetextmode3/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeCodetextMode3.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets MaxiCode mode." +type: docs +weight: 40 +url: /nodejs/maxicodecodetextmode3/getmode/ +--- +## getMode() {#getmode} + +Gets MaxiCode mode. + +```javascript +getMode() +``` + +### Return Value + +MaxiCode + +mode + +### See Also + +* class [MaxiCodeCodetextMode3](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode3/init/_index.md b/english/nodejs/maxicodecodetextmode3/init/_index.md new file mode 100644 index 000000000..96c171503 --- /dev/null +++ b/english/nodejs/maxicodecodetextmode3/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeCodetextMode3.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/maxicodecodetextmode3/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeCodetextMode3](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodecodetextmode3/maxicodecodetextmode3/_index.md b/english/nodejs/maxicodecodetextmode3/maxicodecodetextmode3/_index.md new file mode 100644 index 000000000..7c031e78b --- /dev/null +++ b/english/nodejs/maxicodecodetextmode3/maxicodecodetextmode3/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeCodetextMode3" +linktitle: "MaxiCodeCodetextMode3" +articleTitle: "MaxiCodeCodetextMode3" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeCodetextMode3 class." +type: docs +weight: 10 +url: /nodejs/maxicodecodetextmode3/maxicodecodetextmode3/ +--- +## MaxiCodeCodetextMode3() {#constructor} + +Initializes a new instance of the MaxiCodeCodetextMode3 class. + +```javascript +public MaxiCodeCodetextMode3() +``` + +### See Also + +* class [MaxiCodeCodetextMode3](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeencodemode/_index.md b/english/nodejs/maxicodeencodemode/_index.md new file mode 100644 index 000000000..dbb5d0ebe --- /dev/null +++ b/english/nodejs/maxicodeencodemode/_index.md @@ -0,0 +1,76 @@ +--- +title: "MaxiCodeEncodeMode Enum" +linktitle: "MaxiCodeEncodeMode" +articleTitle: "MaxiCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for MaxiCode barcodes." +type: docs +weight: 1130 +url: /nodejs/maxicodeencodemode/ +--- +## MaxiCodeEncodeMode enumeration + +Encoding mode for MaxiCode barcodes. + +```javascript +public enum MaxiCodeEncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. | +| BYTES | `1` | Encode codetext as plain bytes. If it detects any Unicode character, the character will be encoded as two bytes, lower byte first. | +| EXTENDED_CODETEXT | `2` | Extended mode which supports multi ECI modes. It is better to use MaxiCodeExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | +| EXTENDED | `3` | Extended mode which supports multi ECI modes. It is better to use MaxiCodeExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | +| BINARY | `4` | In Binary mode, the CodeText is encoded with maximum data compactness. If a Unicode character is found, an exception is thrown. | +| ECI | `5` | In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. | + +## Examples + +```javascript +//Auto mode +let codetext = "犬Right狗"; +let generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE, codetext)); +generator.getParameters().getBarcode().getMaxiCode().setECIEncoding(ECIEncodings.UTF8); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +```javascript +//Bytes mode +let encodedArr = [ 0xFF, 0xFE, 0xFD, 0xFC, 0xFB, 0xFA, 0xF9 ]; +//encode array to string +let strBld = ""; +for(let i = 0; i < encodedArr.length; i++) +{ +let bval = encodedArr[i]; +strBld += bval; +} +let codetext = strBld; +let generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE, codetext)) +generator.getParameters().getBarcode().getMaxiCode().setMaxiCodeEncodeMode(MaxiCodeEncodeMode.BYTES); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +```javascript +//Extended codetext mode +//create codetext +let textBuilder = new MaxiCodeExtCodetextBuilder(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +// generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.MaxiCode, codetext); +generator.getParameters().getBarcode().getMaxiCode().setMaxiCodeEncodeMode(MaxiCodeEncodeMode.EXTENDED_CODETEXT); +generator.getParameters().getBarcode().getMaxiCode().setTwoDDisplayText("My Text"); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodeextcodetextbuilder/_index.md b/english/nodejs/maxicodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..12b127799 --- /dev/null +++ b/english/nodejs/maxicodeextcodetextbuilder/_index.md @@ -0,0 +1,61 @@ +--- +title: "MaxiCodeExtCodetextBuilder Class" +linktitle: "MaxiCodeExtCodetextBuilder" +articleTitle: "MaxiCodeExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended codetext generator for MaxiCode barcodes for ExtendedCodetext Mode of MaxiCodeEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set vis..." +type: docs +weight: 730 +url: /nodejs/maxicodeextcodetextbuilder/ +--- +## MaxiCodeExtCodetextBuilder class + +Extended codetext generator for MaxiCode barcodes for ExtendedCodetext Mode of MaxiCodeEncodeMode Use TwoDDisplayText property of BarcodeGenerator to set visible text to removing managing characters. This sample shows how to use MaxiCodeExtCodetextBuilder in Extended Mode. + +```javascript +public class MaxiCodeExtCodetextBuilder : ExtCodetextBuilder +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeExtCodetextBuilder](./maxicodeextcodetextbuilder/#constructor) | Initializes a new instance of the MaxiCodeExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addECICodetext](../extcodetextbuilder/addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. *(Inherited from ExtCodetextBuilder)* | +| [addPlainCodetext](../extcodetextbuilder/addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [clear](../extcodetextbuilder/clear/) | Clears extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [getExtendedCodetext](./getextendedcodetext/) | Generates Extended codetext from the extended codetext list. | +| [init](./init/) | | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +## Examples + +```javascript +//create codetext +let textBuilder = new MaxiCodeExtCodetextBuilder(); +textBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +textBuilder.addECICodetext(ECIEncodings.UTF8, "犬Right狗"); +textBuilder.addECICodetext(ECIEncodings.UTF16BE, "犬Power狗"); +textBuilder.addPlainCodetext("Plain text"); +//generate codetext +let codetext = textBuilder.getExtendedCodetext(); +//generate +let generator = new BarcodeGenerator(EncodeTypes.MAXI_CODE, codetext); +generator.getParameters().getBarcode().getCodeTextParameters().setTwoDDisplayText("My Text"); +generator.save("test.bmp", BarcodeImageFormat.BMP); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodeextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/maxicodeextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..8425b6efc --- /dev/null +++ b/english/nodejs/maxicodeextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates Extended codetext from the extended codetext list." +type: docs +weight: 40 +url: /nodejs/maxicodeextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generates Extended codetext from the extended codetext list. + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Extended + +codetext as string + +### See Also + +* class [MaxiCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextcodetextbuilder/init/_index.md b/english/nodejs/maxicodeextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..0d6b58d95 --- /dev/null +++ b/english/nodejs/maxicodeextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodeextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextcodetextbuilder/maxicodeextcodetextbuilder/_index.md b/english/nodejs/maxicodeextcodetextbuilder/maxicodeextcodetextbuilder/_index.md new file mode 100644 index 000000000..c2526bde3 --- /dev/null +++ b/english/nodejs/maxicodeextcodetextbuilder/maxicodeextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeExtCodetextBuilder" +linktitle: "MaxiCodeExtCodetextBuilder" +articleTitle: "MaxiCodeExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/maxicodeextcodetextbuilder/maxicodeextcodetextbuilder/ +--- +## MaxiCodeExtCodetextBuilder() {#constructor} + +Initializes a new instance of the MaxiCodeExtCodetextBuilder class. + +```javascript +public MaxiCodeExtCodetextBuilder() +``` + +### See Also + +* class [MaxiCodeExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/_index.md b/english/nodejs/maxicodeextendedparameters/_index.md new file mode 100644 index 000000000..89dbb35b1 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/_index.md @@ -0,0 +1,43 @@ +--- +title: "MaxiCodeExtendedParameters Class" +linktitle: "MaxiCodeExtendedParameters" +articleTitle: "MaxiCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a MaxiCode additional information of recognized barcode." +type: docs +weight: 1410 +url: /nodejs/maxicodeextendedparameters/ +--- +## MaxiCodeExtendedParameters class + +Stores a MaxiCode additional information of recognized barcode + +```javascript +public class MaxiCodeExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeExtendedParameters](./maxicodeextendedparameters/#constructor)(*object*) | Initializes a new instance of the MaxiCodeExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeExtendedParameters`](..//maxicodeextendedparameters/) value. | +| [getMaxiCodeMode](./getmaxicodemode/) | Gets a MaxiCode encode mode. Default value: Mode4. | +| [getMaxiCodeStructuredAppendModeBarcodeId](./getmaxicodestructuredappendmodebarcodeid/) | Gets a MaxiCode barcode id in structured append mode. Default value: 0. | +| [getMaxiCodeStructuredAppendModeBarcodesCount](./getmaxicodestructuredappendmodebarcodescount/) | Gets a MaxiCode barcodes count in structured append mode. Default value: -1. | +| [getMode](./getmode/) | Gets a MaxiCode encode mode. Default value: Mode4. | +| [getStructuredAppendModeBarcodeId](./getstructuredappendmodebarcodeid/) | Gets a MaxiCode barcode id in structured append mode. Default value: 0. | +| [getStructuredAppendModeBarcodesCount](./getstructuredappendmodebarcodescount/) | Gets a MaxiCode barcodes count in structured append mode. Default value: -1. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this [`MaxiCodeExtendedParameters`](..//maxicodeextendedparameters/). | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodeextendedparameters/equals/_index.md b/english/nodejs/maxicodeextendedparameters/equals/_index.md new file mode 100644 index 000000000..cb77c959d --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "MaxiCodeExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified value." +type: docs +weight: 90 +url: /nodejs/maxicodeextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified [`MaxiCodeExtendedParameters`](../..//maxicodeextendedparameters/) value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An Object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getmaxicodemode/_index.md b/english/nodejs/maxicodeextendedparameters/getmaxicodemode/_index.md new file mode 100644 index 000000000..084e25baa --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getmaxicodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeExtendedParameters.getMaxiCodeMode" +linktitle: "getMaxiCodeMode" +articleTitle: "getMaxiCodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode. Default value: Mode4." +type: docs +weight: 40 +url: /nodejs/maxicodeextendedparameters/getmaxicodemode/ +--- +## getMaxiCodeMode() {#getmaxicodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMode(). + +Gets a MaxiCode encode mode. Default value: Mode4 + +```javascript +getMaxiCodeMode() +``` + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..9275a431a --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeExtendedParameters.getMaxiCodeStructuredAppendModeBarcodeId" +linktitle: "getMaxiCodeStructuredAppendModeBarcodeId" +articleTitle: "getMaxiCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcode id in structured append mode. Default value: 0." +type: docs +weight: 60 +url: /nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodeid/ +--- +## getMaxiCodeStructuredAppendModeBarcodeId() {#getmaxicodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId(). + +Gets a MaxiCode barcode id in structured append mode. Default value: 0 + +```javascript +getMaxiCodeStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..46cdaef84 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeExtendedParameters.getMaxiCodeStructuredAppendModeBarcodesCount" +linktitle: "getMaxiCodeStructuredAppendModeBarcodesCount" +articleTitle: "getMaxiCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcodes count in structured append mode. Default value: -1." +type: docs +weight: 80 +url: /nodejs/maxicodeextendedparameters/getmaxicodestructuredappendmodebarcodescount/ +--- +## getMaxiCodeStructuredAppendModeBarcodesCount() {#getmaxicodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount(). + +Gets a MaxiCode barcodes count in structured append mode. Default value: -1 + +```javascript +getMaxiCodeStructuredAppendModeBarcodesCount() +``` + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getmode/_index.md b/english/nodejs/maxicodeextendedparameters/getmode/_index.md new file mode 100644 index 000000000..89d3ceb52 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtendedParameters.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode. Default value: Mode4." +type: docs +weight: 30 +url: /nodejs/maxicodeextendedparameters/getmode/ +--- +## getMode() {#getmode} + +Gets a MaxiCode encode mode. Default value: Mode4 + +```javascript +getMode() +``` + +### Return Value + +a + +MaxiCode encode mode. + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..6ef9e29c6 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtendedParameters.getStructuredAppendModeBarcodeId" +linktitle: "getStructuredAppendModeBarcodeId" +articleTitle: "getStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcode id in structured append mode. Default value: 0." +type: docs +weight: 50 +url: /nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodeid/ +--- +## getStructuredAppendModeBarcodeId() {#getstructuredappendmodebarcodeid} + +Gets a MaxiCode barcode id in structured append mode. Default value: 0 + +```javascript +getStructuredAppendModeBarcodeId() +``` + +### Return Value + +a + +MaxiCode barcode id in structured append mode. + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..ccf15a369 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtendedParameters.getStructuredAppendModeBarcodesCount" +linktitle: "getStructuredAppendModeBarcodesCount" +articleTitle: "getStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcodes count in structured append mode. Default value: -1." +type: docs +weight: 70 +url: /nodejs/maxicodeextendedparameters/getstructuredappendmodebarcodescount/ +--- +## getStructuredAppendModeBarcodesCount() {#getstructuredappendmodebarcodescount} + +Gets a MaxiCode barcodes count in structured append mode. Default value: -1 + +```javascript +getStructuredAppendModeBarcodesCount() +``` + +### Return Value + +a + +MaxiCode barcodes count in structured append mode. + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/hashcode/_index.md b/english/nodejs/maxicodeextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..655deb35c --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 100 +url: /nodejs/maxicodeextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/init/_index.md b/english/nodejs/maxicodeextendedparameters/init/_index.md new file mode 100644 index 000000000..bcdaa3996 --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/maxicodeextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/maxicodeextendedparameters/_index.md b/english/nodejs/maxicodeextendedparameters/maxicodeextendedparameters/_index.md new file mode 100644 index 000000000..4f4af130e --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/maxicodeextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeExtendedParameters" +linktitle: "MaxiCodeExtendedParameters" +articleTitle: "MaxiCodeExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/maxicodeextendedparameters/maxicodeextendedparameters/ +--- +## MaxiCodeExtendedParameters(object) {#constructor} + +Initializes a new instance of the MaxiCodeExtendedParameters class. + +```javascript +public MaxiCodeExtendedParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeextendedparameters/tostring/_index.md b/english/nodejs/maxicodeextendedparameters/tostring/_index.md new file mode 100644 index 000000000..a1efb330b --- /dev/null +++ b/english/nodejs/maxicodeextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this ." +type: docs +weight: 110 +url: /nodejs/maxicodeextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this [`MaxiCodeExtendedParameters`](../..//maxicodeextendedparameters/). + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this [`MaxiCodeExtendedParameters`](../..//maxicodeextendedparameters/). + +### See Also + +* class [MaxiCodeExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodemode/_index.md b/english/nodejs/maxicodemode/_index.md new file mode 100644 index 000000000..bf2c6861f --- /dev/null +++ b/english/nodejs/maxicodemode/_index.md @@ -0,0 +1,121 @@ +--- +title: "MaxiCodeMode Enum" +linktitle: "MaxiCodeMode" +articleTitle: "MaxiCodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for MaxiCode barcodes." +type: docs +weight: 1140 +url: /nodejs/maxicodemode/ +--- +## MaxiCodeMode enumeration + +Encoding mode for MaxiCode barcodes. + +```javascript +public enum MaxiCodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| MODE_2 | `2` | Mode 2 encodes postal information in first message and data in second message. Has 9 digits postal code (used only in USA). | +| MODE_3 | `3` | Mode 3 encodes postal information in first message and data in second message. Has 6 alphanumeric postal code, used in the world. | +| MODE_4 | `4` | Mode 4 encodes data in first and second message, with short ECC correction. | +| MODE_5 | `5` | Mode 5 encodes data in first and second message, with long ECC correction. | +| MODE_6 | `6` | Mode 6 encodes data in first and second message, with short ECC correction. Used to encode device. | + +## Examples + +This sample shows how to genereate MaxiCode barcodes using ComplexBarcodeGenerator + +```javascript +//Mode 2 with standart second message +let maxiCodeCodetext = new MaxiCodeCodetextMode2(); +maxiCodeCodetext.setPostalCode("524032140"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); +maxiCodeStandartSecondMessage.setMessage("Test message"); +maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 2 with structured second message +let maxiCodeCodetext = new MaxiCodeCodetextMode2(); +maxiCodeCodetext.setPostalCode("524032140"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); +maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); +maxiCodeStructuredSecondMessage.add("PITTSBURGH"); +maxiCodeStructuredSecondMessage.add("PA"); +maxiCodeStructuredSecondMessage.setYear(99); +maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 3 with standart second message +let maxiCodeCodetext = new MaxiCodeCodetextMode3(); +maxiCodeCodetext.setPostalCode("B1050"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStandartSecondMessage = new MaxiCodeStandartSecondMessage(); +maxiCodeStandartSecondMessage.setMessage("Test message"); +maxiCodeCodetext.setSecondMessage(maxiCodeStandartSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 3 with structured second message +let maxiCodeCodetext = new MaxiCodeCodetextMode3(); +maxiCodeCodetext.setPostalCode("B1050"); +maxiCodeCodetext.setCountryCode(056); +maxiCodeCodetext.setServiceCategory(999); +let maxiCodeStructuredSecondMessage = new MaxiCodeStructuredSecondMessage(); +maxiCodeStructuredSecondMessage.add("634 ALPHA DRIVE"); +maxiCodeStructuredSecondMessage.add("PITTSBURGH"); +maxiCodeStructuredSecondMessage.add("PA"); +maxiCodeStructuredSecondMessage.setYear(99); +maxiCodeCodetext.setSecondMessage(maxiCodeStructuredSecondMessage); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 4 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 5 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()) +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 6 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext(); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodeparameters/_index.md b/english/nodejs/maxicodeparameters/_index.md new file mode 100644 index 000000000..c644d5c81 --- /dev/null +++ b/english/nodejs/maxicodeparameters/_index.md @@ -0,0 +1,55 @@ +--- +title: "MaxiCodeParameters Class" +linktitle: "MaxiCodeParameters" +articleTitle: "MaxiCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MaxiCode parameters." +type: docs +weight: 650 +url: /nodejs/maxicodeparameters/ +--- +## MaxiCodeParameters class + +MaxiCode parameters. + +```javascript +public class MaxiCodeParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeParameters](./maxicodeparameters/#constructor)(*object*) | Initializes a new instance of the MaxiCodeParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getECIEncoding](./geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1. | +| [getEncodeMode](./getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. | +| [getMaxiCodeEncodeMode](./getmaxicodeencodemode/) | Gets a MaxiCode encode mode. | +| [getMaxiCodeMode](./getmaxicodemode/) | Gets a MaxiCode encode mode. | +| [getMaxiCodeStructuredAppendModeBarcodeId](./getmaxicodestructuredappendmodebarcodeid/) | Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0. | +| [getMaxiCodeStructuredAppendModeBarcodesCount](./getmaxicodestructuredappendmodebarcodescount/) | Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1. | +| [getMode](./getmode/) | Gets a MaxiCode encode mode. | +| [getStructuredAppendModeBarcodeId](./getstructuredappendmodebarcodeid/) | Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0. | +| [getStructuredAppendModeBarcodesCount](./getstructuredappendmodebarcodescount/) | Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1. | +| [init](./init/) | | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setECIEncoding](./seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1. | +| [setEncodeMode](./setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. | +| [setMaxiCodeEncodeMode](./setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. | +| [setMaxiCodeMode](./setmaxicodemode/)(*object*) | Sets a MaxiCode encode mode. | +| [setMaxiCodeStructuredAppendModeBarcodeId](./setmaxicodestructuredappendmodebarcodeid/)(*object*) | Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0. | +| [setMaxiCodeStructuredAppendModeBarcodesCount](./setmaxicodestructuredappendmodebarcodescount/)(*object*) | Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1. | +| [setMode](./setmode/)(*object*) | Sets a MaxiCode encode mode. | +| [setStructuredAppendModeBarcodeId](./setstructuredappendmodebarcodeid/)(*object*) | Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0. | +| [setStructuredAppendModeBarcodesCount](./setstructuredappendmodebarcodescount/)(*object*) | Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1. | +| [toString](./tostring/) | Returns a human-readable string representation of this MaxiCodeParameters. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodeparameters/getaspectratio/_index.md b/english/nodejs/maxicodeparameters/getaspectratio/_index.md new file mode 100644 index 000000000..9641212b8 --- /dev/null +++ b/english/nodejs/maxicodeparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 210 +url: /nodejs/maxicodeparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/geteciencoding/_index.md b/english/nodejs/maxicodeparameters/geteciencoding/_index.md new file mode 100644 index 000000000..20bce79ef --- /dev/null +++ b/english/nodejs/maxicodeparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1." +type: docs +weight: 110 +url: /nodejs/maxicodeparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1 + +```javascript +getECIEncoding() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getencodemode/_index.md b/english/nodejs/maxicodeparameters/getencodemode/_index.md new file mode 100644 index 000000000..0bdd49193 --- /dev/null +++ b/english/nodejs/maxicodeparameters/getencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode. Default value: Auto." +type: docs +weight: 80 +url: /nodejs/maxicodeparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Gets a MaxiCode encode mode. Default value: Auto. + +```javascript +getEncodeMode() +``` + +### Return Value + +a + +MaxiCode encode mode. + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getmaxicodeencodemode/_index.md b/english/nodejs/maxicodeparameters/getmaxicodeencodemode/_index.md new file mode 100644 index 000000000..4b0adb42f --- /dev/null +++ b/english/nodejs/maxicodeparameters/getmaxicodeencodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeParameters.getMaxiCodeEncodeMode" +linktitle: "getMaxiCodeEncodeMode" +articleTitle: "getMaxiCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode." +type: docs +weight: 70 +url: /nodejs/maxicodeparameters/getmaxicodeencodemode/ +--- +## getMaxiCodeEncodeMode() {#getmaxicodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +Gets a MaxiCode encode mode. + +```javascript +getMaxiCodeEncodeMode() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getmaxicodemode/_index.md b/english/nodejs/maxicodeparameters/getmaxicodemode/_index.md new file mode 100644 index 000000000..6e1aec3ca --- /dev/null +++ b/english/nodejs/maxicodeparameters/getmaxicodemode/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeParameters.getMaxiCodeMode" +linktitle: "getMaxiCodeMode" +articleTitle: "getMaxiCodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode." +type: docs +weight: 50 +url: /nodejs/maxicodeparameters/getmaxicodemode/ +--- +## getMaxiCodeMode() {#getmaxicodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMode(). + +Gets a MaxiCode encode mode. + +```javascript +getMaxiCodeMode() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..9b8aecb30 --- /dev/null +++ b/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeParameters.getMaxiCodeStructuredAppendModeBarcodeId" +linktitle: "getMaxiCodeStructuredAppendModeBarcodeId" +articleTitle: "getMaxiCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0." +type: docs +weight: 130 +url: /nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodeid/ +--- +## getMaxiCodeStructuredAppendModeBarcodeId() {#getmaxicodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodeId(). + +Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +```javascript +getMaxiCodeStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..2108fb2bd --- /dev/null +++ b/english/nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,25 @@ +--- +title: "MaxiCodeParameters.getMaxiCodeStructuredAppendModeBarcodesCount" +linktitle: "getMaxiCodeStructuredAppendModeBarcodesCount" +articleTitle: "getMaxiCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1." +type: docs +weight: 190 +url: /nodejs/maxicodeparameters/getmaxicodestructuredappendmodebarcodescount/ +--- +## getMaxiCodeStructuredAppendModeBarcodesCount() {#getmaxicodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarcodesCount(). + +Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 + +```javascript +getMaxiCodeStructuredAppendModeBarcodesCount() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getmode/_index.md b/english/nodejs/maxicodeparameters/getmode/_index.md new file mode 100644 index 000000000..11fb49489 --- /dev/null +++ b/english/nodejs/maxicodeparameters/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode encode mode." +type: docs +weight: 30 +url: /nodejs/maxicodeparameters/getmode/ +--- +## getMode() {#getmode} + +Gets a MaxiCode encode mode. + +```javascript +getMode() +``` + +### Return Value + +a + +MaxiCode encode mode. + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..72b5fa0cd --- /dev/null +++ b/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.getStructuredAppendModeBarcodeId" +linktitle: "getStructuredAppendModeBarcodeId" +articleTitle: "getStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0." +type: docs +weight: 140 +url: /nodejs/maxicodeparameters/getstructuredappendmodebarcodeid/ +--- +## getStructuredAppendModeBarcodeId() {#getstructuredappendmodebarcodeid} + +Gets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +```javascript +getStructuredAppendModeBarcodeId() +``` + +### Return Value + +a + +MaxiCode barcode id in structured append mode. + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..03ad98548 --- /dev/null +++ b/english/nodejs/maxicodeparameters/getstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.getStructuredAppendModeBarcodesCount" +linktitle: "getStructuredAppendModeBarcodesCount" +articleTitle: "getStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1." +type: docs +weight: 170 +url: /nodejs/maxicodeparameters/getstructuredappendmodebarcodescount/ +--- +## getStructuredAppendModeBarcodesCount() {#getstructuredappendmodebarcodescount} + +Gets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 + +```javascript +getStructuredAppendModeBarcodesCount() +``` + +### Return Value + +a + +MaxiCode barcodes count in structured append mode. + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/init/_index.md b/english/nodejs/maxicodeparameters/init/_index.md new file mode 100644 index 000000000..1443c4d6e --- /dev/null +++ b/english/nodejs/maxicodeparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/maxicodeparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/maxicodeparameters/_index.md b/english/nodejs/maxicodeparameters/maxicodeparameters/_index.md new file mode 100644 index 000000000..76f140de3 --- /dev/null +++ b/english/nodejs/maxicodeparameters/maxicodeparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters" +linktitle: "MaxiCodeParameters" +articleTitle: "MaxiCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeParameters class." +type: docs +weight: 10 +url: /nodejs/maxicodeparameters/maxicodeparameters/ +--- +## MaxiCodeParameters(object) {#constructor} + +Initializes a new instance of the MaxiCodeParameters class. + +```javascript +public MaxiCodeParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setaspectratio/_index.md b/english/nodejs/maxicodeparameters/setaspectratio/_index.md new file mode 100644 index 000000000..4c57f57d5 --- /dev/null +++ b/english/nodejs/maxicodeparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 220 +url: /nodejs/maxicodeparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/seteciencoding/_index.md b/english/nodejs/maxicodeparameters/seteciencoding/_index.md new file mode 100644 index 000000000..c6eaba024 --- /dev/null +++ b/english/nodejs/maxicodeparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1." +type: docs +weight: 120 +url: /nodejs/maxicodeparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. Default value: ISO-8859-1 + +```javascript +setECIEncoding(ECIEncoding) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ECIEncoding | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setencodemode/_index.md b/english/nodejs/maxicodeparameters/setencodemode/_index.md new file mode 100644 index 000000000..51a5d3d42 --- /dev/null +++ b/english/nodejs/maxicodeparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode. Default value: Auto." +type: docs +weight: 90 +url: /nodejs/maxicodeparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Sets a MaxiCode encode mode. Default value: Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a MaxiCode encode mode. | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setmaxicodeencodemode/_index.md b/english/nodejs/maxicodeparameters/setmaxicodeencodemode/_index.md new file mode 100644 index 000000000..26e35465c --- /dev/null +++ b/english/nodejs/maxicodeparameters/setmaxicodeencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.setMaxiCodeEncodeMode" +linktitle: "setMaxiCodeEncodeMode" +articleTitle: "setMaxiCodeEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode." +type: docs +weight: 100 +url: /nodejs/maxicodeparameters/setmaxicodeencodemode/ +--- +## setMaxiCodeEncodeMode(object) {#setmaxicodeencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Sets a MaxiCode encode mode. + +```javascript +setMaxiCodeEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setmaxicodemode/_index.md b/english/nodejs/maxicodeparameters/setmaxicodemode/_index.md new file mode 100644 index 000000000..0ce13aa6f --- /dev/null +++ b/english/nodejs/maxicodeparameters/setmaxicodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.setMaxiCodeMode" +linktitle: "setMaxiCodeMode" +articleTitle: "setMaxiCodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode." +type: docs +weight: 60 +url: /nodejs/maxicodeparameters/setmaxicodemode/ +--- +## setMaxiCodeMode(object) {#setmaxicodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMode(). + +Sets a MaxiCode encode mode. + +```javascript +setMaxiCodeMode(maxiCodeMode) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| maxiCodeMode | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..b38c709f5 --- /dev/null +++ b/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodeid/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.setMaxiCodeStructuredAppendModeBarcodeId" +linktitle: "setMaxiCodeStructuredAppendModeBarcodeId" +articleTitle: "setMaxiCodeStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0." +type: docs +weight: 160 +url: /nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodeid/ +--- +## setMaxiCodeStructuredAppendModeBarcodeId(object) {#setmaxicodestructuredappendmodebarcodeid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodeId(). + +Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +```javascript +setMaxiCodeStructuredAppendModeBarcodeId(maxiCodeStructuredAppendModeBarcodeId) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| maxiCodeStructuredAppendModeBarcodeId | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..d30ccf5d0 --- /dev/null +++ b/english/nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodescount/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.setMaxiCodeStructuredAppendModeBarcodesCount" +linktitle: "setMaxiCodeStructuredAppendModeBarcodesCount" +articleTitle: "setMaxiCodeStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1." +type: docs +weight: 200 +url: /nodejs/maxicodeparameters/setmaxicodestructuredappendmodebarcodescount/ +--- +## setMaxiCodeStructuredAppendModeBarcodesCount(object) {#setmaxicodestructuredappendmodebarcodescount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setStructuredAppendModeBarcodesCount(). + +Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 + +```javascript +setMaxiCodeStructuredAppendModeBarcodesCount(maxiCodeStructuredAppendModeBarcodesCount) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| maxiCodeStructuredAppendModeBarcodesCount | object | | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setmode/_index.md b/english/nodejs/maxicodeparameters/setmode/_index.md new file mode 100644 index 000000000..b814d0e7f --- /dev/null +++ b/english/nodejs/maxicodeparameters/setmode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setMode" +linktitle: "setMode" +articleTitle: "setMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode encode mode." +type: docs +weight: 40 +url: /nodejs/maxicodeparameters/setmode/ +--- +## setMode(object) {#setmode} + +Sets a MaxiCode encode mode. + +```javascript +setMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a MaxiCode encode mode. | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodeid/_index.md b/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..25f1bd9e8 --- /dev/null +++ b/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setStructuredAppendModeBarcodeId" +linktitle: "setStructuredAppendModeBarcodeId" +articleTitle: "setStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0." +type: docs +weight: 150 +url: /nodejs/maxicodeparameters/setstructuredappendmodebarcodeid/ +--- +## setStructuredAppendModeBarcodeId(object) {#setstructuredappendmodebarcodeid} + +Sets a MaxiCode barcode id in structured append mode. ID must be a value between 1 and 8. Default value: 0 + +```javascript +setStructuredAppendModeBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a MaxiCode barcode id in structured append mode. | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodescount/_index.md b/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodescount/_index.md new file mode 100644 index 000000000..1d8b6798b --- /dev/null +++ b/english/nodejs/maxicodeparameters/setstructuredappendmodebarcodescount/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeParameters.setStructuredAppendModeBarcodesCount" +linktitle: "setStructuredAppendModeBarcodesCount" +articleTitle: "setStructuredAppendModeBarcodesCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1." +type: docs +weight: 180 +url: /nodejs/maxicodeparameters/setstructuredappendmodebarcodescount/ +--- +## setStructuredAppendModeBarcodesCount(object) {#setstructuredappendmodebarcodescount} + +Sets a MaxiCode barcodes count in structured append mode. Count number must be a value between 2 and 8 (maximum barcodes count). Default value: -1 + +```javascript +setStructuredAppendModeBarcodesCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | a MaxiCode barcodes count in structured append mode. | + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodeparameters/tostring/_index.md b/english/nodejs/maxicodeparameters/tostring/_index.md new file mode 100644 index 000000000..4148ef647 --- /dev/null +++ b/english/nodejs/maxicodeparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this MaxiCodeParameters." +type: docs +weight: 230 +url: /nodejs/maxicodeparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this MaxiCodeParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this MaxiCodeParameters. + +### See Also + +* class [MaxiCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodesecondmessage/_index.md b/english/nodejs/maxicodesecondmessage/_index.md new file mode 100644 index 000000000..6e7f7742c --- /dev/null +++ b/english/nodejs/maxicodesecondmessage/_index.md @@ -0,0 +1,57 @@ +--- +title: "MaxiCodeSecondMessage Class" +linktitle: "MaxiCodeSecondMessage" +articleTitle: "MaxiCodeSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6." +type: docs +weight: 140 +url: /nodejs/maxicodesecondmessage/ +--- +## MaxiCodeSecondMessage class + +Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. + +```javascript +public class MaxiCodeSecondMessage : joint.BaseJavaClass +``` + +## Methods + +| Name | Description | +| --- | --- | +| [getMessage](./getmessage/) | | + +## Examples + +```javascript +//Mode 4 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 5 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 6 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodesecondmessage/getmessage/_index.md b/english/nodejs/maxicodesecondmessage/getmessage/_index.md new file mode 100644 index 000000000..08e8bd304 --- /dev/null +++ b/english/nodejs/maxicodesecondmessage/getmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeSecondMessage.getMessage" +linktitle: "getMessage" +articleTitle: "getMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/maxicodesecondmessage/getmessage/ +--- +## getMessage() {#getmessage} + + + +```javascript +getMessage() +``` + +### See Also + +* class [MaxiCodeSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/_index.md b/english/nodejs/maxicodestandardcodetext/_index.md new file mode 100644 index 000000000..8fa748698 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/_index.md @@ -0,0 +1,85 @@ +--- +title: "MaxiCodeStandardCodetext Class" +linktitle: "MaxiCodeStandardCodetext" +articleTitle: "MaxiCodeStandardCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6." +type: docs +weight: 150 +url: /nodejs/maxicodestandardcodetext/ +--- +## MaxiCodeStandardCodetext class + +Class for encoding and decoding MaxiCode codetext for modes 4, 5 and 6. + +```javascript +public class MaxiCodeStandardCodetext : MaxiCodeCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeStandardCodetext](./maxicodestandardcodetext/#constructor) | Initializes a new instance of the MaxiCodeStandardCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStandardCodetext`](..//maxicodestandardcodetext/) value. | +| [getBarcodeType](../maxicodecodetext/getbarcodetype/) | Gets barcode type. *(Inherited from MaxiCodeCodetext)* | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getECIEncoding](../maxicodecodetext/geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [getEncodeMode](../maxicodecodetext/getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [getHashCode](./gethashcode/) | Returns the hash code for this instance. | +| [getMaxiCodeEncodeMode](../maxicodecodetext/getmaxicodeencodemode/) | Gets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [getMessage](./getmessage/) | Gets message. | +| [getMode](./getmode/) | Gets MaxiCode mode. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setECIEncoding](../maxicodecodetext/seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [setEncodeMode](../maxicodecodetext/setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [setMaxiCodeEncodeMode](../maxicodecodetext/setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [setMessage](./setmessage/)(*object*) | Sets message. | +| [setMode](./setmode/)(*object*) | Sets MaxiCode mode. Standart codetext can be used only with modes 4, 5 and 6. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +## Examples + +```javascript +//Mode 4 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_4); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 5 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_5); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +```javascript +//Mode 6 +let maxiCodeCodetext = new MaxiCodeStandardCodetext(); +maxiCodeCodetext.setMode(MaxiCodeMode.MODE_6); +maxiCodeCodetext.setMessage("Test message"); +let complexGenerator = new ComplexBarcodeGenerator(maxiCodeCodetext.getConstructedCodetext()); +complexGenerator.generateBarCodeImage(BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodestandardcodetext/construct/_index.md b/english/nodejs/maxicodestandardcodetext/construct/_index.md new file mode 100644 index 000000000..8effb7804 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodestandardcodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/equals/_index.md b/english/nodejs/maxicodestandardcodetext/equals/_index.md new file mode 100644 index 000000000..2a8f46298 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "MaxiCodeStandardCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified value." +type: docs +weight: 100 +url: /nodejs/maxicodestandardcodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStandardCodetext`](../..//maxicodestandardcodetext/) value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An value to compare to this instance. | + +### Return Value + +if + +obj has the same value as this instance; otherwise, false. + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/getconstructedcodetext/_index.md b/english/nodejs/maxicodestandardcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..25cc3cbe0 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStandardCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 80 +url: /nodejs/maxicodestandardcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/gethashcode/_index.md b/english/nodejs/maxicodestandardcodetext/gethashcode/_index.md new file mode 100644 index 000000000..55b5b6838 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/gethashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStandardCodetext.getHashCode" +linktitle: "getHashCode" +articleTitle: "getHashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 110 +url: /nodejs/maxicodestandardcodetext/gethashcode/ +--- +## getHashCode() {#gethashcode} + +Returns the hash code for this instance. + +```javascript +getHashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/getmessage/_index.md b/english/nodejs/maxicodestandardcodetext/getmessage/_index.md new file mode 100644 index 000000000..6127baaab --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/getmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardCodetext.getMessage" +linktitle: "getMessage" +articleTitle: "getMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets message." +type: docs +weight: 40 +url: /nodejs/maxicodestandardcodetext/getmessage/ +--- +## getMessage() {#getmessage} + +Gets message. + +```javascript +getMessage() +``` + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/getmode/_index.md b/english/nodejs/maxicodestandardcodetext/getmode/_index.md new file mode 100644 index 000000000..33266a1f5 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/getmode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStandardCodetext.getMode" +linktitle: "getMode" +articleTitle: "getMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets MaxiCode mode." +type: docs +weight: 70 +url: /nodejs/maxicodestandardcodetext/getmode/ +--- +## getMode() {#getmode} + +Gets MaxiCode mode. + +```javascript +getMode() +``` + +### Return Value + +MaxiCode + +mode + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/init/_index.md b/english/nodejs/maxicodestandardcodetext/init/_index.md new file mode 100644 index 000000000..93e35af17 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 120 +url: /nodejs/maxicodestandardcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/initfromstring/_index.md b/english/nodejs/maxicodestandardcodetext/initfromstring/_index.md new file mode 100644 index 000000000..9887d9972 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 90 +url: /nodejs/maxicodestandardcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/maxicodestandardcodetext/_index.md b/english/nodejs/maxicodestandardcodetext/maxicodestandardcodetext/_index.md new file mode 100644 index 000000000..691bdf572 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/maxicodestandardcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardCodetext" +linktitle: "MaxiCodeStandardCodetext" +articleTitle: "MaxiCodeStandardCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeStandardCodetext class." +type: docs +weight: 10 +url: /nodejs/maxicodestandardcodetext/maxicodestandardcodetext/ +--- +## MaxiCodeStandardCodetext() {#constructor} + +Initializes a new instance of the MaxiCodeStandardCodetext class. + +```javascript +public MaxiCodeStandardCodetext() +``` + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/setmessage/_index.md b/english/nodejs/maxicodestandardcodetext/setmessage/_index.md new file mode 100644 index 000000000..728b4867f --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/setmessage/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardCodetext.setMessage" +linktitle: "setMessage" +articleTitle: "setMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets message." +type: docs +weight: 50 +url: /nodejs/maxicodestandardcodetext/setmessage/ +--- +## setMessage(object) {#setmessage} + +Sets message. + +```javascript +setMessage(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardcodetext/setmode/_index.md b/english/nodejs/maxicodestandardcodetext/setmode/_index.md new file mode 100644 index 000000000..0b69ec4c8 --- /dev/null +++ b/english/nodejs/maxicodestandardcodetext/setmode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardCodetext.setMode" +linktitle: "setMode" +articleTitle: "setMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets MaxiCode mode. Standart codetext can be used only with modes 4, 5 and 6." +type: docs +weight: 60 +url: /nodejs/maxicodestandardcodetext/setmode/ +--- +## setMode(object) {#setmode} + +Sets MaxiCode mode. Standart codetext can be used only with modes 4, 5 and 6. + +```javascript +setMode(mode) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| mode | object | | + +### See Also + +* class [MaxiCodeStandardCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/_index.md b/english/nodejs/maxicodestandardsecondmessage/_index.md new file mode 100644 index 000000000..18a4dc943 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/_index.md @@ -0,0 +1,45 @@ +--- +title: "MaxiCodeStandardSecondMessage Class" +linktitle: "MaxiCodeStandardSecondMessage" +articleTitle: "MaxiCodeStandardSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding standart second message for MaxiCode barcode." +type: docs +weight: 160 +url: /nodejs/maxicodestandardsecondmessage/ +--- +## MaxiCodeStandardSecondMessage class + +Class for encoding and decoding standart second message for MaxiCode barcode. + +```javascript +public class MaxiCodeStandardSecondMessage : MaxiCodeSecondMessage +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeStandardSecondMessage](./maxicodestandardsecondmessage/#constructor) | Initializes a new instance of the MaxiCodeStandardSecondMessage class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStandardSecondMessage`](..//maxicodestandardsecondmessage/) value. | +| [getHashCode](./gethashcode/) | Returns the hash code for this instance. | +| [getMessage](./getmessage/) | Gets second message. | +| [init](./init/) | | +| [setMessage](./setmessage/)(*object*) | Sets second message. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/construct/_index.md b/english/nodejs/maxicodestandardsecondmessage/construct/_index.md new file mode 100644 index 000000000..41814a86e --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardSecondMessage.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodestandardsecondmessage/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/equals/_index.md b/english/nodejs/maxicodestandardsecondmessage/equals/_index.md new file mode 100644 index 000000000..fdcc73e91 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "MaxiCodeStandardSecondMessage.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified value." +type: docs +weight: 60 +url: /nodejs/maxicodestandardsecondmessage/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStandardSecondMessage`](../..//maxicodestandardsecondmessage/) value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An value to compare to this instance | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/gethashcode/_index.md b/english/nodejs/maxicodestandardsecondmessage/gethashcode/_index.md new file mode 100644 index 000000000..70d354ac5 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/gethashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStandardSecondMessage.getHashCode" +linktitle: "getHashCode" +articleTitle: "getHashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 70 +url: /nodejs/maxicodestandardsecondmessage/gethashcode/ +--- +## getHashCode() {#gethashcode} + +Returns the hash code for this instance. + +```javascript +getHashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/getmessage/_index.md b/english/nodejs/maxicodestandardsecondmessage/getmessage/_index.md new file mode 100644 index 000000000..6e989a5c5 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/getmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardSecondMessage.getMessage" +linktitle: "getMessage" +articleTitle: "getMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets second message." +type: docs +weight: 50 +url: /nodejs/maxicodestandardsecondmessage/getmessage/ +--- +## getMessage() {#getmessage} + +Gets second message + +```javascript +getMessage() +``` + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/init/_index.md b/english/nodejs/maxicodestandardsecondmessage/init/_index.md new file mode 100644 index 000000000..e63ae5c64 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardSecondMessage.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 80 +url: /nodejs/maxicodestandardsecondmessage/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/maxicodestandardsecondmessage/_index.md b/english/nodejs/maxicodestandardsecondmessage/maxicodestandardsecondmessage/_index.md new file mode 100644 index 000000000..f280c6bc0 --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/maxicodestandardsecondmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandardSecondMessage" +linktitle: "MaxiCodeStandardSecondMessage" +articleTitle: "MaxiCodeStandardSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeStandardSecondMessage class." +type: docs +weight: 10 +url: /nodejs/maxicodestandardsecondmessage/maxicodestandardsecondmessage/ +--- +## MaxiCodeStandardSecondMessage() {#constructor} + +Initializes a new instance of the MaxiCodeStandardSecondMessage class. + +```javascript +public MaxiCodeStandardSecondMessage() +``` + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandardsecondmessage/setmessage/_index.md b/english/nodejs/maxicodestandardsecondmessage/setmessage/_index.md new file mode 100644 index 000000000..0fbdf2d6e --- /dev/null +++ b/english/nodejs/maxicodestandardsecondmessage/setmessage/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStandardSecondMessage.setMessage" +linktitle: "setMessage" +articleTitle: "setMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets second message." +type: docs +weight: 40 +url: /nodejs/maxicodestandardsecondmessage/setmessage/ +--- +## setMessage(object) {#setmessage} + +Sets second message + +```javascript +setMessage(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStandardSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestandartsecondmessage/_index.md b/english/nodejs/maxicodestandartsecondmessage/_index.md new file mode 100644 index 000000000..5fa5681ca --- /dev/null +++ b/english/nodejs/maxicodestandartsecondmessage/_index.md @@ -0,0 +1,47 @@ +--- +title: "MaxiCodeStandartSecondMessage Class" +linktitle: "MaxiCodeStandartSecondMessage" +articleTitle: "MaxiCodeStandartSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding standart second message for MaxiCode barcode." +type: docs +weight: 170 +url: /nodejs/maxicodestandartsecondmessage/ +--- +## MaxiCodeStandartSecondMessage class + +> **Deprecated.** + +Class for encoding and decoding standart second message for MaxiCode barcode. + +```javascript +public class MaxiCodeStandartSecondMessage : MaxiCodeStandardSecondMessage +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeStandartSecondMessage](./maxicodestandartsecondmessage/#constructor) | Initializes a new instance of the MaxiCodeStandartSecondMessage class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](../maxicodestandardsecondmessage/construct/)(*object*) | *(Inherited from MaxiCodeStandardSecondMessage)* | +| [equals](../maxicodestandardsecondmessage/equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStandardSecondMessage`](..//maxicodestandardsecondmessage/) value. *(Inherited from MaxiCodeStandardSecondMessage)* | +| [getHashCode](../maxicodestandardsecondmessage/gethashcode/) | Returns the hash code for this instance. *(Inherited from MaxiCodeStandardSecondMessage)* | +| [getMessage](../maxicodestandardsecondmessage/getmessage/) | Gets second message. *(Inherited from MaxiCodeStandardSecondMessage)* | +| [init](../maxicodestandardsecondmessage/init/) | *(Inherited from MaxiCodeStandardSecondMessage)* | +| [setMessage](../maxicodestandardsecondmessage/setmessage/)(*object*) | Sets second message. *(Inherited from MaxiCodeStandardSecondMessage)* | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](../maxicodestandardsecondmessage/java_class_name/) | *(Inherited from MaxiCodeStandardSecondMessage)* | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodestandartsecondmessage/maxicodestandartsecondmessage/_index.md b/english/nodejs/maxicodestandartsecondmessage/maxicodestandartsecondmessage/_index.md new file mode 100644 index 000000000..81c040c05 --- /dev/null +++ b/english/nodejs/maxicodestandartsecondmessage/maxicodestandartsecondmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStandartSecondMessage" +linktitle: "MaxiCodeStandartSecondMessage" +articleTitle: "MaxiCodeStandartSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeStandartSecondMessage class." +type: docs +weight: 10 +url: /nodejs/maxicodestandartsecondmessage/maxicodestandartsecondmessage/ +--- +## MaxiCodeStandartSecondMessage() {#constructor} + +Initializes a new instance of the MaxiCodeStandartSecondMessage class. + +```javascript +public MaxiCodeStandartSecondMessage() +``` + +### See Also + +* class [MaxiCodeStandartSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/_index.md b/english/nodejs/maxicodestructuredcodetext/_index.md new file mode 100644 index 000000000..e418c7f61 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/_index.md @@ -0,0 +1,82 @@ +--- +title: "MaxiCodeStructuredCodetext Class" +linktitle: "MaxiCodeStructuredCodetext" +articleTitle: "MaxiCodeStructuredCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3." +type: docs +weight: 180 +url: /nodejs/maxicodestructuredcodetext/ +--- +## MaxiCodeStructuredCodetext class + +Base class for encoding and decoding the text embedded in the MaxiCode code for modes 2 and 3. + +```javascript +public class MaxiCodeStructuredCodetext : MaxiCodeCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeStructuredCodetext](./maxicodestructuredcodetext/#constructor)(*object*) | Initializes a new instance of the MaxiCodeStructuredCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredCodetext`](..//maxicodestructuredcodetext/) value. | +| [getBarcodeType](../maxicodecodetext/getbarcodetype/) | Gets barcode type. *(Inherited from MaxiCodeCodetext)* | +| [getConstructedCodetext](./getconstructedcodetext/) | Constructs codetext. | +| [getCountryCode](./getcountrycode/) | Identifies 3 digit country code. | +| [getECIEncoding](../maxicodecodetext/geteciencoding/) | Gets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [getEncodeMode](../maxicodecodetext/getencodemode/) | Gets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [getHashCode](./gethashcode/) | Returns the hash code for this instance. | +| [getMaxiCodeEncodeMode](../maxicodecodetext/getmaxicodeencodemode/) | Gets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [getMode](../maxicodecodetext/getmode/) | Gets MaxiCode mode. *(Inherited from MaxiCodeCodetext)* | +| [getPostalCode](./getpostalcode/) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. | +| [getSecondMessage](./getsecondmessage/) | Identifies second message of the barcode. | +| [getServiceCategory](./getservicecategory/) | Identifies 3 digit service category. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes instance from constructed codetext. | +| [setCountryCode](./setcountrycode/)(*object*) | Identifies 3 digit country code. | +| [setECIEncoding](../maxicodecodetext/seteciencoding/)(*object*) | Sets ECI encoding. Used when MaxiCodeEncodeMode is AUTO. *(Inherited from MaxiCodeCodetext)* | +| [setEncodeMode](../maxicodecodetext/setencodemode/)(*object*) | Sets a MaxiCode encode mode. Default value: Auto. *(Inherited from MaxiCodeCodetext)* | +| [setMaxiCodeEncodeMode](../maxicodecodetext/setmaxicodeencodemode/)(*object*) | Sets a MaxiCode encode mode. *(Inherited from MaxiCodeCodetext)* | +| [setPostalCode](./setpostalcode/)(*object*) | Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. | +| [setSecondMessage](./setsecondmessage/)(*object*) | Identifies second message of the barcode. | +| [setServiceCategory](./setservicecategory/)(*object*) | Identifies 3 digit service category. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | +| [maxiCodeSecondMessage](./maxicodesecondmessage/) | | + +## Examples + +This sample shows how to decode raw MaxiCode codetext to MaxiCodeStructuredCodetext instance. + +```javascript +let reader = new BarCodeReader("c:\\test.png", null, DecodeType.MAXI_CODE); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +let resultMaxiCodeCodetext = ComplexCodetextReader.tryDecodeMaxiCode(result.getExtended().getMaxiCode().getMaxiCodeMode(), result.getCodeText()); +if (resultMaxiCodeCodetext instanceof MaxiCodeStructuredCodetext) +{ +let maxiCodeStructuredCodetext = resultMaxiCodeCodetext; +console.log("BarCode Type: " + maxiCodeStructuredCodetext.getPostalCode()); +console.log("MaxiCode mode: " + maxiCodeStructuredCodetext.getCountryCode()); +console.log("BarCode CodeText: " + maxiCodeStructuredCodetext.getServiceCategory()); +} +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodestructuredcodetext/equals/_index.md b/english/nodejs/maxicodestructuredcodetext/equals/_index.md new file mode 100644 index 000000000..dc29be4f0 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "MaxiCodeStructuredCodetext.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified value." +type: docs +weight: 150 +url: /nodejs/maxicodestructuredcodetext/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredCodetext`](../..//maxicodestructuredcodetext/) value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An value to compare to this instance | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/getconstructedcodetext/_index.md b/english/nodejs/maxicodestructuredcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..6506397bd --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStructuredCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Constructs codetext." +type: docs +weight: 130 +url: /nodejs/maxicodestructuredcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Constructs codetext + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/getcountrycode/_index.md b/english/nodejs/maxicodestructuredcodetext/getcountrycode/_index.md new file mode 100644 index 000000000..efdc62823 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/getcountrycode/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredCodetext.getCountryCode" +linktitle: "getCountryCode" +articleTitle: "getCountryCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies 3 digit country code." +type: docs +weight: 70 +url: /nodejs/maxicodestructuredcodetext/getcountrycode/ +--- +## getCountryCode() {#getcountrycode} + +Identifies 3 digit country code. + +```javascript +getCountryCode() +``` + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/gethashcode/_index.md b/english/nodejs/maxicodestructuredcodetext/gethashcode/_index.md new file mode 100644 index 000000000..2d17ac6e5 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/gethashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStructuredCodetext.getHashCode" +linktitle: "getHashCode" +articleTitle: "getHashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 160 +url: /nodejs/maxicodestructuredcodetext/gethashcode/ +--- +## getHashCode() {#gethashcode} + +Returns the hash code for this instance. + +```javascript +getHashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/getpostalcode/_index.md b/english/nodejs/maxicodestructuredcodetext/getpostalcode/_index.md new file mode 100644 index 000000000..771218fd2 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/getpostalcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredCodetext.getPostalCode" +linktitle: "getPostalCode" +articleTitle: "getPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3." +type: docs +weight: 50 +url: /nodejs/maxicodestructuredcodetext/getpostalcode/ +--- +## getPostalCode() {#getpostalcode} + +Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. + +```javascript +getPostalCode() +``` + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/getsecondmessage/_index.md b/english/nodejs/maxicodestructuredcodetext/getsecondmessage/_index.md new file mode 100644 index 000000000..c7337829e --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/getsecondmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredCodetext.getSecondMessage" +linktitle: "getSecondMessage" +articleTitle: "getSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies second message of the barcode." +type: docs +weight: 110 +url: /nodejs/maxicodestructuredcodetext/getsecondmessage/ +--- +## getSecondMessage() {#getsecondmessage} + +Identifies second message of the barcode. + +```javascript +getSecondMessage() +``` + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/getservicecategory/_index.md b/english/nodejs/maxicodestructuredcodetext/getservicecategory/_index.md new file mode 100644 index 000000000..c8864c251 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/getservicecategory/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredCodetext.getServiceCategory" +linktitle: "getServiceCategory" +articleTitle: "getServiceCategory" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies 3 digit service category." +type: docs +weight: 90 +url: /nodejs/maxicodestructuredcodetext/getservicecategory/ +--- +## getServiceCategory() {#getservicecategory} + +Identifies 3 digit service category. + +```javascript +getServiceCategory() +``` + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/init/_index.md b/english/nodejs/maxicodestructuredcodetext/init/_index.md new file mode 100644 index 000000000..87da5c87b --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/maxicodestructuredcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/initfromstring/_index.md b/english/nodejs/maxicodestructuredcodetext/initfromstring/_index.md new file mode 100644 index 000000000..f6ef56101 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes instance from constructed codetext." +type: docs +weight: 140 +url: /nodejs/maxicodestructuredcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes instance from constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/maxicodestructuredcodetext/_index.md b/english/nodejs/maxicodestructuredcodetext/maxicodestructuredcodetext/_index.md new file mode 100644 index 000000000..9efc8dce6 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/maxicodestructuredcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext" +linktitle: "MaxiCodeStructuredCodetext" +articleTitle: "MaxiCodeStructuredCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeStructuredCodetext class." +type: docs +weight: 10 +url: /nodejs/maxicodestructuredcodetext/maxicodestructuredcodetext/ +--- +## MaxiCodeStructuredCodetext(object) {#constructor} + +Initializes a new instance of the MaxiCodeStructuredCodetext class. + +```javascript +public MaxiCodeStructuredCodetext(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/setcountrycode/_index.md b/english/nodejs/maxicodestructuredcodetext/setcountrycode/_index.md new file mode 100644 index 000000000..d0b70ee84 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/setcountrycode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext.setCountryCode" +linktitle: "setCountryCode" +articleTitle: "setCountryCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies 3 digit country code." +type: docs +weight: 80 +url: /nodejs/maxicodestructuredcodetext/setcountrycode/ +--- +## setCountryCode(object) {#setcountrycode} + +Identifies 3 digit country code. + +```javascript +setCountryCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/setpostalcode/_index.md b/english/nodejs/maxicodestructuredcodetext/setpostalcode/_index.md new file mode 100644 index 000000000..031065bac --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/setpostalcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext.setPostalCode" +linktitle: "setPostalCode" +articleTitle: "setPostalCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3." +type: docs +weight: 60 +url: /nodejs/maxicodestructuredcodetext/setpostalcode/ +--- +## setPostalCode(object) {#setpostalcode} + +Identifies the postal code. Must be 9 digits in mode 2 or 6 alphanumeric symbols in mode 3. + +```javascript +setPostalCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/setsecondmessage/_index.md b/english/nodejs/maxicodestructuredcodetext/setsecondmessage/_index.md new file mode 100644 index 000000000..e979d255f --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/setsecondmessage/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext.setSecondMessage" +linktitle: "setSecondMessage" +articleTitle: "setSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies second message of the barcode." +type: docs +weight: 120 +url: /nodejs/maxicodestructuredcodetext/setsecondmessage/ +--- +## setSecondMessage(object) {#setsecondmessage} + +Identifies second message of the barcode. + +```javascript +setSecondMessage(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredcodetext/setservicecategory/_index.md b/english/nodejs/maxicodestructuredcodetext/setservicecategory/_index.md new file mode 100644 index 000000000..4f8e72de3 --- /dev/null +++ b/english/nodejs/maxicodestructuredcodetext/setservicecategory/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredCodetext.setServiceCategory" +linktitle: "setServiceCategory" +articleTitle: "setServiceCategory" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies 3 digit service category." +type: docs +weight: 100 +url: /nodejs/maxicodestructuredcodetext/setservicecategory/ +--- +## setServiceCategory(object) {#setservicecategory} + +Identifies 3 digit service category. + +```javascript +setServiceCategory(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStructuredCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/_index.md b/english/nodejs/maxicodestructuredsecondmessage/_index.md new file mode 100644 index 000000000..3caf0fc39 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/_index.md @@ -0,0 +1,49 @@ +--- +title: "MaxiCodeStructuredSecondMessage Class" +linktitle: "MaxiCodeStructuredSecondMessage" +articleTitle: "MaxiCodeStructuredSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding structured second message for MaxiCode barcode." +type: docs +weight: 210 +url: /nodejs/maxicodestructuredsecondmessage/ +--- +## MaxiCodeStructuredSecondMessage class + +Class for encoding and decoding structured second message for MaxiCode barcode. + +```javascript +public class MaxiCodeStructuredSecondMessage : MaxiCodeSecondMessage +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [MaxiCodeStructuredSecondMessage](./maxicodestructuredsecondmessage/#constructor) | Initializes a new instance of the MaxiCodeStructuredSecondMessage class. | + +## Methods + +| Name | Description | +| --- | --- | +| [add](./add/)(*object*) | Adds new identifier. | +| [clear](./clear/) | Clear identifiers list. | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredSecondMessage`](..//maxicodestructuredsecondmessage/) value. | +| [getHashCode](./gethashcode/) | Returns the hash code for this instance. | +| [getIdentifiers](./getidentifiers/) | Gets identifiers list. | +| [getMessage](./getmessage/) | Gets constructed second message. | +| [getYear](./getyear/) | Gets year. Year must be 2 digit integer value. | +| [init](./init/) | | +| [setYear](./setyear/)(*object*) | Sets year. Year must be 2 digit integer value. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/add/_index.md b/english/nodejs/maxicodestructuredsecondmessage/add/_index.md new file mode 100644 index 000000000..1ff1b6a82 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/add/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredSecondMessage.add" +linktitle: "add" +articleTitle: "add" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds new identifier." +type: docs +weight: 70 +url: /nodejs/maxicodestructuredsecondmessage/add/ +--- +## add(object) {#add} + +Adds new identifier + +```javascript +add(identifier) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| identifier | object | Identifier to be added | + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/clear/_index.md b/english/nodejs/maxicodestructuredsecondmessage/clear/_index.md new file mode 100644 index 000000000..87f22f753 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredSecondMessage.clear" +linktitle: "clear" +articleTitle: "clear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Clear identifiers list." +type: docs +weight: 80 +url: /nodejs/maxicodestructuredsecondmessage/clear/ +--- +## clear() {#clear} + +Clear identifiers list + +```javascript +clear() +``` + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/construct/_index.md b/english/nodejs/maxicodestructuredsecondmessage/construct/_index.md new file mode 100644 index 000000000..def4ebc54 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredSecondMessage.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/maxicodestructuredsecondmessage/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/equals/_index.md b/english/nodejs/maxicodestructuredsecondmessage/equals/_index.md new file mode 100644 index 000000000..7b9aafe47 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "MaxiCodeStructuredSecondMessage.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified value." +type: docs +weight: 100 +url: /nodejs/maxicodestructuredsecondmessage/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified [`MaxiCodeStructuredSecondMessage`](../..//maxicodestructuredsecondmessage/) value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | "obj">An value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/gethashcode/_index.md b/english/nodejs/maxicodestructuredsecondmessage/gethashcode/_index.md new file mode 100644 index 000000000..bb5976e05 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/gethashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStructuredSecondMessage.getHashCode" +linktitle: "getHashCode" +articleTitle: "getHashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 110 +url: /nodejs/maxicodestructuredsecondmessage/gethashcode/ +--- +## getHashCode() {#gethashcode} + +Returns the hash code for this instance. + +```javascript +getHashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/getidentifiers/_index.md b/english/nodejs/maxicodestructuredsecondmessage/getidentifiers/_index.md new file mode 100644 index 000000000..d882107dd --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/getidentifiers/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStructuredSecondMessage.getIdentifiers" +linktitle: "getIdentifiers" +articleTitle: "getIdentifiers" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets identifiers list." +type: docs +weight: 60 +url: /nodejs/maxicodestructuredsecondmessage/getidentifiers/ +--- +## getIdentifiers() {#getidentifiers} + +Gets identifiers list + +```javascript +getIdentifiers() +``` + +### Return Value + +List + +of identifiers + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/getmessage/_index.md b/english/nodejs/maxicodestructuredsecondmessage/getmessage/_index.md new file mode 100644 index 000000000..5b1d06704 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/getmessage/_index.md @@ -0,0 +1,29 @@ +--- +title: "MaxiCodeStructuredSecondMessage.getMessage" +linktitle: "getMessage" +articleTitle: "getMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets constructed second message." +type: docs +weight: 90 +url: /nodejs/maxicodestructuredsecondmessage/getmessage/ +--- +## getMessage() {#getmessage} + +Gets constructed second message + +```javascript +getMessage() +``` + +### Return Value + +Constructed + +second message + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/getyear/_index.md b/english/nodejs/maxicodestructuredsecondmessage/getyear/_index.md new file mode 100644 index 000000000..b3d05b96a --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/getyear/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredSecondMessage.getYear" +linktitle: "getYear" +articleTitle: "getYear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets year. Year must be 2 digit integer value." +type: docs +weight: 40 +url: /nodejs/maxicodestructuredsecondmessage/getyear/ +--- +## getYear() {#getyear} + +Gets year. Year must be 2 digit integer value. + +```javascript +getYear() +``` + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/init/_index.md b/english/nodejs/maxicodestructuredsecondmessage/init/_index.md new file mode 100644 index 000000000..0359c144a --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredSecondMessage.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 120 +url: /nodejs/maxicodestructuredsecondmessage/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/maxicodestructuredsecondmessage/_index.md b/english/nodejs/maxicodestructuredsecondmessage/maxicodestructuredsecondmessage/_index.md new file mode 100644 index 000000000..d56b24c38 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/maxicodestructuredsecondmessage/_index.md @@ -0,0 +1,23 @@ +--- +title: "MaxiCodeStructuredSecondMessage" +linktitle: "MaxiCodeStructuredSecondMessage" +articleTitle: "MaxiCodeStructuredSecondMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the MaxiCodeStructuredSecondMessage class." +type: docs +weight: 10 +url: /nodejs/maxicodestructuredsecondmessage/maxicodestructuredsecondmessage/ +--- +## MaxiCodeStructuredSecondMessage() {#constructor} + +Initializes a new instance of the MaxiCodeStructuredSecondMessage class. + +```javascript +public MaxiCodeStructuredSecondMessage() +``` + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/maxicodestructuredsecondmessage/setyear/_index.md b/english/nodejs/maxicodestructuredsecondmessage/setyear/_index.md new file mode 100644 index 000000000..827f01724 --- /dev/null +++ b/english/nodejs/maxicodestructuredsecondmessage/setyear/_index.md @@ -0,0 +1,27 @@ +--- +title: "MaxiCodeStructuredSecondMessage.setYear" +linktitle: "setYear" +articleTitle: "setYear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets year. Year must be 2 digit integer value." +type: docs +weight: 50 +url: /nodejs/maxicodestructuredsecondmessage/setyear/ +--- +## setYear(object) {#setyear} + +Sets year. Year must be 2 digit integer value. + +```javascript +setYear(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [MaxiCodeStructuredSecondMessage](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/microqrversion/_index.md b/english/nodejs/microqrversion/_index.md new file mode 100644 index 000000000..68fe178cf --- /dev/null +++ b/english/nodejs/microqrversion/_index.md @@ -0,0 +1,32 @@ +--- +title: "MicroQRVersion Enum" +linktitle: "MicroQRVersion" +articleTitle: "MicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of MicroQR Code. From M1 to M4." +type: docs +weight: 1230 +url: /nodejs/microqrversion/ +--- +## MicroQRVersion enumeration + +Version of MicroQR Code. From M1 to M4. + +```javascript +public enum MicroQRVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the best version for MicroQR. This is default value. | +| M1 | `1` | Specifies version M1 for Micro QR with 11 x 11 modules. | +| M2 | `2` | Specifies version M2 for Micro QR with 13 x 13 modules. | +| M3 | `3` | Specifies version M3 for Micro QR with 15 x 15 modules. | +| M4 | `4` | Specifies version M4 for Micro QR with 17 x 17 modules. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/onedextendedparameters/_index.md b/english/nodejs/onedextendedparameters/_index.md new file mode 100644 index 000000000..793dc2408 --- /dev/null +++ b/english/nodejs/onedextendedparameters/_index.md @@ -0,0 +1,58 @@ +--- +title: "OneDExtendedParameters Class" +linktitle: "OneDExtendedParameters" +articleTitle: "OneDExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores special data of 1D recognized barcode like separate codetext and checksum." +type: docs +weight: 1300 +url: /nodejs/onedextendedparameters/ +--- +## OneDExtendedParameters class + +Stores special data of 1D recognized barcode like separate codetext and checksum + +```javascript +public class OneDExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [OneDExtendedParameters](./onedextendedparameters/#constructor)(*object*) | Initializes a new instance of the OneDExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified OneDExtendedParameters value. | +| [getCheckSum](./getchecksum/) | Gets the checksum for 1D barcodes. Value: The checksum for 1D barcode. | +| [getValue](./getvalue/) | Gets the codetext of 1D barcodes without checksum. Value: The codetext of 1D barcodes without checksum. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isEmpty](./isempty/) | Tests whether all parameters has only default values Value: Returns true if all parameters has only default values; otherwise, false. | +| [toString](./tostring/) | Returns a human-readable string representation of this OneDExtendedParameters. | + +## Examples + +```javascript +//This sample shows how to get 1D barcode value and checksum +let generator = new BarcodeGenerator(EncodeTypes.EAN_13, "1234567890128"); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, DecodeType.EAN_13); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("BarCode Value: " + result.getExtended().getOneD().getValue()); +console.log("BarCode Checksum: " + result.getExtended().getOneD().getCheckSum()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/onedextendedparameters/equals/_index.md b/english/nodejs/onedextendedparameters/equals/_index.md new file mode 100644 index 000000000..c174e7e0f --- /dev/null +++ b/english/nodejs/onedextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "OneDExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified OneDExtendedParameters value." +type: docs +weight: 60 +url: /nodejs/onedextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified OneDExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/getchecksum/_index.md b/english/nodejs/onedextendedparameters/getchecksum/_index.md new file mode 100644 index 000000000..d6a2702a3 --- /dev/null +++ b/english/nodejs/onedextendedparameters/getchecksum/_index.md @@ -0,0 +1,23 @@ +--- +title: "OneDExtendedParameters.getCheckSum" +linktitle: "getCheckSum" +articleTitle: "getCheckSum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the checksum for 1D barcodes. Value: The checksum for 1D barcode." +type: docs +weight: 40 +url: /nodejs/onedextendedparameters/getchecksum/ +--- +## getCheckSum() {#getchecksum} + +Gets the checksum for 1D barcodes. Value: The checksum for 1D barcode. + +```javascript +getCheckSum() +``` + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/getvalue/_index.md b/english/nodejs/onedextendedparameters/getvalue/_index.md new file mode 100644 index 000000000..1151a06bf --- /dev/null +++ b/english/nodejs/onedextendedparameters/getvalue/_index.md @@ -0,0 +1,23 @@ +--- +title: "OneDExtendedParameters.getValue" +linktitle: "getValue" +articleTitle: "getValue" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the codetext of 1D barcodes without checksum. Value: The codetext of 1D barcodes without checksum." +type: docs +weight: 30 +url: /nodejs/onedextendedparameters/getvalue/ +--- +## getValue() {#getvalue} + +Gets the codetext of 1D barcodes without checksum. Value: The codetext of 1D barcodes without checksum. + +```javascript +getValue() +``` + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/hashcode/_index.md b/english/nodejs/onedextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..d1e13cd9d --- /dev/null +++ b/english/nodejs/onedextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "OneDExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 70 +url: /nodejs/onedextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/init/_index.md b/english/nodejs/onedextendedparameters/init/_index.md new file mode 100644 index 000000000..c6618eaf9 --- /dev/null +++ b/english/nodejs/onedextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "OneDExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/onedextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/isempty/_index.md b/english/nodejs/onedextendedparameters/isempty/_index.md new file mode 100644 index 000000000..3dd200462 --- /dev/null +++ b/english/nodejs/onedextendedparameters/isempty/_index.md @@ -0,0 +1,23 @@ +--- +title: "OneDExtendedParameters.isEmpty" +linktitle: "isEmpty" +articleTitle: "isEmpty" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Tests whether all parameters has only default values Value: Returns true if all parameters has only default values; otherwise, false." +type: docs +weight: 50 +url: /nodejs/onedextendedparameters/isempty/ +--- +## isEmpty() {#isempty} + +Tests whether all parameters has only default values Value: Returns `true` if all parameters has only default values; otherwise, `false`. + +```javascript +isEmpty() +``` + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/onedextendedparameters/_index.md b/english/nodejs/onedextendedparameters/onedextendedparameters/_index.md new file mode 100644 index 000000000..59f880d12 --- /dev/null +++ b/english/nodejs/onedextendedparameters/onedextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "OneDExtendedParameters" +linktitle: "OneDExtendedParameters" +articleTitle: "OneDExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the OneDExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/onedextendedparameters/onedextendedparameters/ +--- +## OneDExtendedParameters(object) {#constructor} + +Initializes a new instance of the OneDExtendedParameters class. + +```javascript +public OneDExtendedParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/onedextendedparameters/tostring/_index.md b/english/nodejs/onedextendedparameters/tostring/_index.md new file mode 100644 index 000000000..663c50065 --- /dev/null +++ b/english/nodejs/onedextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "OneDExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this OneDExtendedParameters." +type: docs +weight: 80 +url: /nodejs/onedextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this OneDExtendedParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this OneDExtendedParameters. + +### See Also + +* class [OneDExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/_index.md b/english/nodejs/optionalfields/_index.md new file mode 100644 index 000000000..cd9bc81e4 --- /dev/null +++ b/english/nodejs/optionalfields/_index.md @@ -0,0 +1,88 @@ +--- +title: "OptionalFields Class" +linktitle: "OptionalFields" +articleTitle: "OptionalFields" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional elements (fields) of the card." +type: docs +weight: 390 +url: /nodejs/optionalfields/ +--- +## OptionalFields class + +Optional elements (fields) of the card + +```javascript +public class OptionalFields : BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [OptionalFields](./optionalfields/#constructor)(*object*) | Initializes a new instance of the OptionalFields class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAddressStreet2](./getaddressstreet2/) | | +| [getAliasAKAFamilyName](./getaliasakafamilyname/) | DBN, Other family name by which cardholder is known, DL/ID, V10ANS. | +| [getAliasAKAGivenName](./getaliasakagivenname/) | DBG, Other given name by which cardholder is known, DL/ID, V15ANS. | +| [getAliasAKASuffixName](./getaliasakasuffixname/) | DBS, Other suffix by which cardholder is known, DL/ID, V5ANS. | +| [getAuditInformation](./getauditinformation/) | DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the card or the MRT, it must be included in the driver record, DL/ID, V25ANS. | +| [getCardRevisionDate](./getcardrevisiondate/) | DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [getComplianceType](./getcompliancetype/) | DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A. | +| [getEndorsementCodeDescription](./getendorsementcodedescription/) | DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL, V50ANS. | +| [getHAZMATEndorsementExpDate](./gethazmatendorsementexpdate/) | DDC, Date on which the hazardous material endorsement granted by the document is no longer valid. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL, F8N. | +| [getHairColor](./gethaircolor/) | DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes provided in AAMVA D20 must be used, DL/ID, V12A. | +| [getInventoryControlNumber](./getinventorycontrolnumber/) | DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS recommended field), DL/ID, V25ANS. | +| [getLimitedDurationDocIndicator](./getlimiteddurationdocindicator/) | DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N. | +| [getNameSuffix](./getnamesuffix/) | DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID and in the MRT). JR(Junior), SR(Senior), 1ST or I(First), up to 9TH or IX (Ninth), DL/ID, V5ANS. | +| [getOrganDonorIndicator](./getorgandonorindicator/) | DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N. | +| [getPlaceOfBirth](./getplaceofbirth/) | DCI, Country and municipality and/or state/province, DL/ID, V33A. | +| [getRaceEthnicity](./getraceethnicity/) | DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A. | +| [getRestrictionCodeDescription](./getrestrictioncodedescription/) | DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS. | +| [getStandardEndorsementCode](./getstandardendorsementcode/) | DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL, F5AN. | +| [getStandardRestrictionCode](./getstandardrestrictioncode/) | DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL, F12AN. | +| [getStandardVehClassification](./getstandardvehclassification/) | DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL, F4AN. | +| [getUnder18Until](./getunder18until/) | DDH, Date on which the cardholder turns 18 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [getUnder21Until](./getunder21until/) | DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [getVehClassDescription](./getvehclassdescription/) | DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS. | +| [getVeteranIndicator](./getveteranindicator/) | DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N. | +| [getWeightKilograms](./getweightkilograms/) | DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N. | +| [getWeightPounds](./getweightpounds/) | DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N. | +| [getWeightRange](./getweightrange/) | DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 = 60 - 70 kg(131 – 160 lbs), 4 = 71 - 86 kg(161 – 190 lbs), 5 = 87 - 100 kg(191 – 220 lbs), 6 = 101 - 113 kg(221 – 250 lbs), 7 = 114 - 127... | +| [init](./init/) | | +| [setAddressStreet2](./setaddressstreet2/)(*object*) | DAH, Second line of street portion of the cardholder address, DL/ID, V35ANS. | +| [setAliasAKAFamilyName](./setaliasakafamilyname/)(*object*) | DBN, Other family name by which cardholder is known, DL/ID, V10ANS. | +| [setAliasAKAGivenName](./setaliasakagivenname/)(*object*) | DBG, Other given name by which cardholder is known, DL/ID, V15ANS. | +| [setAliasAKASuffixName](./setaliasakasuffixname/)(*object*) | DBS, Other suffix by which cardholder is known, DL/ID, V5ANS. | +| [setAuditInformation](./setauditinformation/)(*object*) | DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the card or the MRT, it must be included in the driver record, DL/ID, V25ANS. | +| [setCardRevisionDate](./setcardrevisiondate/)(*object*) | DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [setComplianceType](./setcompliancetype/)(*object*) | DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A. | +| [setEndorsementCodeDescription](./setendorsementcodedescription/)(*object*) | DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL, V50ANS. | +| [setHairColor](./sethaircolor/)(*object*) | DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes provided in AAMVA D20 must be used, DL/ID, V12A. | +| [setInventoryControlNumber](./setinventorycontrolnumber/)(*object*) | DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS recommended field), DL/ID, V25ANS. | +| [setLimitedDurationDocIndicator](./setlimiteddurationdocindicator/)(*object*) | DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N. | +| [setNameSuffix](./setnamesuffix/)(*object*) | DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID and in the MRT). JR(Junior), SR(Senior), 1ST or I(First), up to 9TH or IX (Ninth), DL/ID, V5ANS. | +| [setOrganDonorIndicator](./setorgandonorindicator/)(*object*) | DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N. | +| [setPlaceOfBirth](./setplaceofbirth/)(*object*) | DCI, Country and municipality and/or state/province, DL/ID, V33A. | +| [setRaceEthnicity](./setraceethnicity/)(*object*) | DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A. | +| [setRestrictionCodeDescription](./setrestrictioncodedescription/)(*object*) | DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS. | +| [setStandardEndorsementCode](./setstandardendorsementcode/)(*object*) | DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL, F5AN. | +| [setStandardRestrictionCode](./setstandardrestrictioncode/)(*object*) | DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL, F12AN. | +| [setStandardVehClassification](./setstandardvehclassification/)(*object*) | DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL, F4AN. | +| [setUnder18Until](./setunder18until/)(*object*) | DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [setUnder19Until](./setunder19until/)(*object*) | DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [setUnder21Until](./setunder21until/)(*object*) | DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N. | +| [setVehClassDescription](./setvehclassdescription/)(*object*) | DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS. | +| [setVeteranIndicator](./setveteranindicator/)(*object*) | DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N. | +| [setWeightKilograms](./setweightkilograms/)(*object*) | DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N. | +| [setWeightPounds](./setweightpounds/)(*object*) | DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N. | +| [setWeightRange](./setweightrange/)(*object*) | DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 = 60 - 70 kg(131 – 160 lbs), 4 = 71 - 86 kg(161 – 190 lbs), 5 = 87 - 100 kg(191 – 220 lbs), 6 = 101 - 113 kg(221 – 250 lbs), 7 = 114 - 127... | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/optionalfields/getaddressstreet2/_index.md b/english/nodejs/optionalfields/getaddressstreet2/_index.md new file mode 100644 index 000000000..19cfded60 --- /dev/null +++ b/english/nodejs/optionalfields/getaddressstreet2/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getAddressStreet2" +linktitle: "getAddressStreet2" +articleTitle: "getAddressStreet2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/optionalfields/getaddressstreet2/ +--- +## getAddressStreet2() {#getaddressstreet2} + + + +```javascript +getAddressStreet2() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getaliasakafamilyname/_index.md b/english/nodejs/optionalfields/getaliasakafamilyname/_index.md new file mode 100644 index 000000000..1c5f7760e --- /dev/null +++ b/english/nodejs/optionalfields/getaliasakafamilyname/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getAliasAKAFamilyName" +linktitle: "getAliasAKAFamilyName" +articleTitle: "getAliasAKAFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBN, Other family name by which cardholder is known, DL/ID, V10ANS." +type: docs +weight: 130 +url: /nodejs/optionalfields/getaliasakafamilyname/ +--- +## getAliasAKAFamilyName() {#getaliasakafamilyname} + +DBN, Other family name by which cardholder is known, DL/ID, V10ANS + +```javascript +getAliasAKAFamilyName() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getaliasakagivenname/_index.md b/english/nodejs/optionalfields/getaliasakagivenname/_index.md new file mode 100644 index 000000000..5b3c8e2e0 --- /dev/null +++ b/english/nodejs/optionalfields/getaliasakagivenname/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getAliasAKAGivenName" +linktitle: "getAliasAKAGivenName" +articleTitle: "getAliasAKAGivenName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBG, Other given name by which cardholder is known, DL/ID, V15ANS." +type: docs +weight: 150 +url: /nodejs/optionalfields/getaliasakagivenname/ +--- +## getAliasAKAGivenName() {#getaliasakagivenname} + +DBG, Other given name by which cardholder is known, DL/ID, V15ANS + +```javascript +getAliasAKAGivenName() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getaliasakasuffixname/_index.md b/english/nodejs/optionalfields/getaliasakasuffixname/_index.md new file mode 100644 index 000000000..0d0012a54 --- /dev/null +++ b/english/nodejs/optionalfields/getaliasakasuffixname/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getAliasAKASuffixName" +linktitle: "getAliasAKASuffixName" +articleTitle: "getAliasAKASuffixName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBS, Other suffix by which cardholder is known, DL/ID, V5ANS." +type: docs +weight: 170 +url: /nodejs/optionalfields/getaliasakasuffixname/ +--- +## getAliasAKASuffixName() {#getaliasakasuffixname} + +DBS, Other suffix by which cardholder is known, DL/ID, V5ANS + +```javascript +getAliasAKASuffixName() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getauditinformation/_index.md b/english/nodejs/optionalfields/getauditinformation/_index.md new file mode 100644 index 000000000..5121ab4bf --- /dev/null +++ b/english/nodejs/optionalfields/getauditinformation/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getAuditInformation" +linktitle: "getAuditInformation" +articleTitle: "getAuditInformation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the c..." +type: docs +weight: 90 +url: /nodejs/optionalfields/getauditinformation/ +--- +## getAuditInformation() {#getauditinformation} + +DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the card or the MRT, it must be included in the driver record, DL/ID, V25ANS + +```javascript +getAuditInformation() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getcardrevisiondate/_index.md b/english/nodejs/optionalfields/getcardrevisiondate/_index.md new file mode 100644 index 000000000..54115a36e --- /dev/null +++ b/english/nodejs/optionalfields/getcardrevisiondate/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getCardRevisionDate" +linktitle: "getCardRevisionDate" +articleTitle: "getCardRevisionDate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMD..." +type: docs +weight: 390 +url: /nodejs/optionalfields/getcardrevisiondate/ +--- +## getCardRevisionDate() {#getcardrevisiondate} + +DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +getCardRevisionDate() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getcompliancetype/_index.md b/english/nodejs/optionalfields/getcompliancetype/_index.md new file mode 100644 index 000000000..38a8a4f24 --- /dev/null +++ b/english/nodejs/optionalfields/getcompliancetype/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getComplianceType" +linktitle: "getComplianceType" +articleTitle: "getComplianceType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A." +type: docs +weight: 370 +url: /nodejs/optionalfields/getcompliancetype/ +--- +## getComplianceType() {#getcompliancetype} + +DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A + +```javascript +getComplianceType() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getendorsementcodedescription/_index.md b/english/nodejs/optionalfields/getendorsementcodedescription/_index.md new file mode 100644 index 000000000..cfc72d622 --- /dev/null +++ b/english/nodejs/optionalfields/getendorsementcodedescription/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getEndorsementCodeDescription" +linktitle: "getEndorsementCodeDescription" +articleTitle: "getEndorsementCodeDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL..." +type: docs +weight: 330 +url: /nodejs/optionalfields/getendorsementcodedescription/ +--- +## getEndorsementCodeDescription() {#getendorsementcodedescription} + +DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL, V50ANS + +```javascript +getEndorsementCodeDescription() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/gethaircolor/_index.md b/english/nodejs/optionalfields/gethaircolor/_index.md new file mode 100644 index 000000000..d7d34cf0e --- /dev/null +++ b/english/nodejs/optionalfields/gethaircolor/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getHairColor" +linktitle: "getHairColor" +articleTitle: "getHairColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes ..." +type: docs +weight: 50 +url: /nodejs/optionalfields/gethaircolor/ +--- +## getHairColor() {#gethaircolor} + +DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes provided in AAMVA D20 must be used, DL/ID, V12A + +```javascript +getHairColor() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/gethazmatendorsementexpdate/_index.md b/english/nodejs/optionalfields/gethazmatendorsementexpdate/_index.md new file mode 100644 index 000000000..cc9620a6b --- /dev/null +++ b/english/nodejs/optionalfields/gethazmatendorsementexpdate/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getHAZMATEndorsementExpDate" +linktitle: "getHAZMATEndorsementExpDate" +articleTitle: "getHAZMATEndorsementExpDate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDC, Date on which the hazardous material endorsement granted by the document is no longer valid. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL, F8N." +type: docs +weight: 410 +url: /nodejs/optionalfields/gethazmatendorsementexpdate/ +--- +## getHAZMATEndorsementExpDate() {#gethazmatendorsementexpdate} + +DDC, Date on which the hazardous material endorsement granted by the document is no longer valid. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL, F8N + +```javascript +getHAZMATEndorsementExpDate() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getinventorycontrolnumber/_index.md b/english/nodejs/optionalfields/getinventorycontrolnumber/_index.md new file mode 100644 index 000000000..fb8e19321 --- /dev/null +++ b/english/nodejs/optionalfields/getinventorycontrolnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getInventoryControlNumber" +linktitle: "getInventoryControlNumber" +articleTitle: "getInventoryControlNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS..." +type: docs +weight: 110 +url: /nodejs/optionalfields/getinventorycontrolnumber/ +--- +## getInventoryControlNumber() {#getinventorycontrolnumber} + +DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS recommended field), DL/ID, V25ANS + +```javascript +getInventoryControlNumber() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getlimiteddurationdocindicator/_index.md b/english/nodejs/optionalfields/getlimiteddurationdocindicator/_index.md new file mode 100644 index 000000000..746de2929 --- /dev/null +++ b/english/nodejs/optionalfields/getlimiteddurationdocindicator/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getLimitedDurationDocIndicator" +linktitle: "getLimitedDurationDocIndicator" +articleTitle: "getLimitedDurationDocIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N." +type: docs +weight: 420 +url: /nodejs/optionalfields/getlimiteddurationdocindicator/ +--- +## getLimitedDurationDocIndicator() {#getlimiteddurationdocindicator} + +DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N + +```javascript +getLimitedDurationDocIndicator() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getnamesuffix/_index.md b/english/nodejs/optionalfields/getnamesuffix/_index.md new file mode 100644 index 000000000..6772218dd --- /dev/null +++ b/english/nodejs/optionalfields/getnamesuffix/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getNameSuffix" +linktitle: "getNameSuffix" +articleTitle: "getNameSuffix" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID ..." +type: docs +weight: 190 +url: /nodejs/optionalfields/getnamesuffix/ +--- +## getNameSuffix() {#getnamesuffix} + +DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID and in the MRT). JR(Junior), SR(Senior), 1ST or I(First), up to 9TH or IX (Ninth), DL/ID, V5ANS + +```javascript +getNameSuffix() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getorgandonorindicator/_index.md b/english/nodejs/optionalfields/getorgandonorindicator/_index.md new file mode 100644 index 000000000..a437d3249 --- /dev/null +++ b/english/nodejs/optionalfields/getorgandonorindicator/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getOrganDonorIndicator" +linktitle: "getOrganDonorIndicator" +articleTitle: "getOrganDonorIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N." +type: docs +weight: 530 +url: /nodejs/optionalfields/getorgandonorindicator/ +--- +## getOrganDonorIndicator() {#getorgandonorindicator} + +DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N + +```javascript +getOrganDonorIndicator() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getplaceofbirth/_index.md b/english/nodejs/optionalfields/getplaceofbirth/_index.md new file mode 100644 index 000000000..3e58c4763 --- /dev/null +++ b/english/nodejs/optionalfields/getplaceofbirth/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getPlaceOfBirth" +linktitle: "getPlaceOfBirth" +articleTitle: "getPlaceOfBirth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCI, Country and municipality and/or state/province, DL/ID, V33A." +type: docs +weight: 70 +url: /nodejs/optionalfields/getplaceofbirth/ +--- +## getPlaceOfBirth() {#getplaceofbirth} + +DCI, Country and municipality and/or state/province, DL/ID, V33A + +```javascript +getPlaceOfBirth() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getraceethnicity/_index.md b/english/nodejs/optionalfields/getraceethnicity/_index.md new file mode 100644 index 000000000..d0f84efbd --- /dev/null +++ b/english/nodejs/optionalfields/getraceethnicity/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getRaceEthnicity" +linktitle: "getRaceEthnicity" +articleTitle: "getRaceEthnicity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A." +type: docs +weight: 230 +url: /nodejs/optionalfields/getraceethnicity/ +--- +## getRaceEthnicity() {#getraceethnicity} + +DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A + +```javascript +getRaceEthnicity() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getrestrictioncodedescription/_index.md b/english/nodejs/optionalfields/getrestrictioncodedescription/_index.md new file mode 100644 index 000000000..e31c1b343 --- /dev/null +++ b/english/nodejs/optionalfields/getrestrictioncodedescription/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getRestrictionCodeDescription" +linktitle: "getRestrictionCodeDescription" +articleTitle: "getRestrictionCodeDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS." +type: docs +weight: 350 +url: /nodejs/optionalfields/getrestrictioncodedescription/ +--- +## getRestrictionCodeDescription() {#getrestrictioncodedescription} + +DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS + +```javascript +getRestrictionCodeDescription() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getstandardendorsementcode/_index.md b/english/nodejs/optionalfields/getstandardendorsementcode/_index.md new file mode 100644 index 000000000..98f13f8b9 --- /dev/null +++ b/english/nodejs/optionalfields/getstandardendorsementcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getStandardEndorsementCode" +linktitle: "getStandardEndorsementCode" +articleTitle: "getStandardEndorsementCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL..." +type: docs +weight: 270 +url: /nodejs/optionalfields/getstandardendorsementcode/ +--- +## getStandardEndorsementCode() {#getstandardendorsementcode} + +DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL, F5AN + +```javascript +getStandardEndorsementCode() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getstandardrestrictioncode/_index.md b/english/nodejs/optionalfields/getstandardrestrictioncode/_index.md new file mode 100644 index 000000000..b85edd05b --- /dev/null +++ b/english/nodejs/optionalfields/getstandardrestrictioncode/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getStandardRestrictionCode" +linktitle: "getStandardRestrictionCode" +articleTitle: "getStandardRestrictionCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL..." +type: docs +weight: 290 +url: /nodejs/optionalfields/getstandardrestrictioncode/ +--- +## getStandardRestrictionCode() {#getstandardrestrictioncode} + +DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL, F12AN + +```javascript +getStandardRestrictionCode() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getstandardvehclassification/_index.md b/english/nodejs/optionalfields/getstandardvehclassification/_index.md new file mode 100644 index 000000000..4b85c4525 --- /dev/null +++ b/english/nodejs/optionalfields/getstandardvehclassification/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getStandardVehClassification" +linktitle: "getStandardVehClassification" +articleTitle: "getStandardVehClassification" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL..." +type: docs +weight: 250 +url: /nodejs/optionalfields/getstandardvehclassification/ +--- +## getStandardVehClassification() {#getstandardvehclassification} + +DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL, F4AN + +```javascript +getStandardVehClassification() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getunder18until/_index.md b/english/nodejs/optionalfields/getunder18until/_index.md new file mode 100644 index 000000000..98420ad76 --- /dev/null +++ b/english/nodejs/optionalfields/getunder18until/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getUnder18Until" +linktitle: "getUnder18Until" +articleTitle: "getUnder18Until" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDH, Date on which the cardholder turns 18 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N." +type: docs +weight: 490 +url: /nodejs/optionalfields/getunder18until/ +--- +## getUnder18Until() {#getunder18until} + +DDH, Date on which the cardholder turns 18 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +getUnder18Until() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getunder21until/_index.md b/english/nodejs/optionalfields/getunder21until/_index.md new file mode 100644 index 000000000..126bc5579 --- /dev/null +++ b/english/nodejs/optionalfields/getunder21until/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getUnder21Until" +linktitle: "getUnder21Until" +articleTitle: "getUnder21Until" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N." +type: docs +weight: 510 +url: /nodejs/optionalfields/getunder21until/ +--- +## getUnder21Until() {#getunder21until} + +DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +getUnder21Until() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getvehclassdescription/_index.md b/english/nodejs/optionalfields/getvehclassdescription/_index.md new file mode 100644 index 000000000..cc101bedf --- /dev/null +++ b/english/nodejs/optionalfields/getvehclassdescription/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getVehClassDescription" +linktitle: "getVehClassDescription" +articleTitle: "getVehClassDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS." +type: docs +weight: 310 +url: /nodejs/optionalfields/getvehclassdescription/ +--- +## getVehClassDescription() {#getvehclassdescription} + +DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS + +```javascript +getVehClassDescription() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getveteranindicator/_index.md b/english/nodejs/optionalfields/getveteranindicator/_index.md new file mode 100644 index 000000000..1b10b32aa --- /dev/null +++ b/english/nodejs/optionalfields/getveteranindicator/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getVeteranIndicator" +linktitle: "getVeteranIndicator" +articleTitle: "getVeteranIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N." +type: docs +weight: 550 +url: /nodejs/optionalfields/getveteranindicator/ +--- +## getVeteranIndicator() {#getveteranindicator} + +DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N + +```javascript +getVeteranIndicator() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getweightkilograms/_index.md b/english/nodejs/optionalfields/getweightkilograms/_index.md new file mode 100644 index 000000000..5edaafbaf --- /dev/null +++ b/english/nodejs/optionalfields/getweightkilograms/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getWeightKilograms" +linktitle: "getWeightKilograms" +articleTitle: "getWeightKilograms" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N." +type: docs +weight: 460 +url: /nodejs/optionalfields/getweightkilograms/ +--- +## getWeightKilograms() {#getweightkilograms} + +DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N + +```javascript +getWeightKilograms() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getweightpounds/_index.md b/english/nodejs/optionalfields/getweightpounds/_index.md new file mode 100644 index 000000000..d011a2f75 --- /dev/null +++ b/english/nodejs/optionalfields/getweightpounds/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getWeightPounds" +linktitle: "getWeightPounds" +articleTitle: "getWeightPounds" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N." +type: docs +weight: 440 +url: /nodejs/optionalfields/getweightpounds/ +--- +## getWeightPounds() {#getweightpounds} + +DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N + +```javascript +getWeightPounds() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/getweightrange/_index.md b/english/nodejs/optionalfields/getweightrange/_index.md new file mode 100644 index 000000000..cd45d217a --- /dev/null +++ b/english/nodejs/optionalfields/getweightrange/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.getWeightRange" +linktitle: "getWeightRange" +articleTitle: "getWeightRange" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 ..." +type: docs +weight: 210 +url: /nodejs/optionalfields/getweightrange/ +--- +## getWeightRange() {#getweightrange} + +DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 = 60 - 70 kg(131 – 160 lbs), 4 = 71 - 86 kg(161 – 190 lbs), 5 = 87 - 100 kg(191 – 220 lbs), 6 = 101 - 113 kg(221 – 250 lbs), 7 = 114 - 127 kg(251 – 280 lbs), 8 = 128 – 145 kg(281 – 320 lbs), 9 = 146+ kg(321+ lbs), DL/ID, F1N + +```javascript +getWeightRange() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/init/_index.md b/english/nodejs/optionalfields/init/_index.md new file mode 100644 index 000000000..83fc06f78 --- /dev/null +++ b/english/nodejs/optionalfields/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "OptionalFields.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/optionalfields/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/optionalfields/_index.md b/english/nodejs/optionalfields/optionalfields/_index.md new file mode 100644 index 000000000..df25d6285 --- /dev/null +++ b/english/nodejs/optionalfields/optionalfields/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields" +linktitle: "OptionalFields" +articleTitle: "OptionalFields" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the OptionalFields class." +type: docs +weight: 10 +url: /nodejs/optionalfields/optionalfields/ +--- +## OptionalFields(object) {#constructor} + +Initializes a new instance of the OptionalFields class. + +```javascript +public OptionalFields(object nativeObject) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| nativeObject | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setaddressstreet2/_index.md b/english/nodejs/optionalfields/setaddressstreet2/_index.md new file mode 100644 index 000000000..6e7027a84 --- /dev/null +++ b/english/nodejs/optionalfields/setaddressstreet2/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setAddressStreet2" +linktitle: "setAddressStreet2" +articleTitle: "setAddressStreet2" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAH, Second line of street portion of the cardholder address, DL/ID, V35ANS." +type: docs +weight: 40 +url: /nodejs/optionalfields/setaddressstreet2/ +--- +## setAddressStreet2(object) {#setaddressstreet2} + +DAH, Second line of street portion of the cardholder address, DL/ID, V35ANS + +```javascript +setAddressStreet2(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setaliasakafamilyname/_index.md b/english/nodejs/optionalfields/setaliasakafamilyname/_index.md new file mode 100644 index 000000000..ad60da42a --- /dev/null +++ b/english/nodejs/optionalfields/setaliasakafamilyname/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setAliasAKAFamilyName" +linktitle: "setAliasAKAFamilyName" +articleTitle: "setAliasAKAFamilyName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBN, Other family name by which cardholder is known, DL/ID, V10ANS." +type: docs +weight: 140 +url: /nodejs/optionalfields/setaliasakafamilyname/ +--- +## setAliasAKAFamilyName(object) {#setaliasakafamilyname} + +DBN, Other family name by which cardholder is known, DL/ID, V10ANS + +```javascript +setAliasAKAFamilyName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setaliasakagivenname/_index.md b/english/nodejs/optionalfields/setaliasakagivenname/_index.md new file mode 100644 index 000000000..97fbe46cd --- /dev/null +++ b/english/nodejs/optionalfields/setaliasakagivenname/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setAliasAKAGivenName" +linktitle: "setAliasAKAGivenName" +articleTitle: "setAliasAKAGivenName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBG, Other given name by which cardholder is known, DL/ID, V15ANS." +type: docs +weight: 160 +url: /nodejs/optionalfields/setaliasakagivenname/ +--- +## setAliasAKAGivenName(object) {#setaliasakagivenname} + +DBG, Other given name by which cardholder is known, DL/ID, V15ANS + +```javascript +setAliasAKAGivenName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setaliasakasuffixname/_index.md b/english/nodejs/optionalfields/setaliasakasuffixname/_index.md new file mode 100644 index 000000000..611877b76 --- /dev/null +++ b/english/nodejs/optionalfields/setaliasakasuffixname/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setAliasAKASuffixName" +linktitle: "setAliasAKASuffixName" +articleTitle: "setAliasAKASuffixName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DBS, Other suffix by which cardholder is known, DL/ID, V5ANS." +type: docs +weight: 180 +url: /nodejs/optionalfields/setaliasakasuffixname/ +--- +## setAliasAKASuffixName(object) {#setaliasakasuffixname} + +DBS, Other suffix by which cardholder is known, DL/ID, V5ANS + +```javascript +setAliasAKASuffixName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setauditinformation/_index.md b/english/nodejs/optionalfields/setauditinformation/_index.md new file mode 100644 index 000000000..a609752aa --- /dev/null +++ b/english/nodejs/optionalfields/setauditinformation/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setAuditInformation" +linktitle: "setAuditInformation" +articleTitle: "setAuditInformation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the c..." +type: docs +weight: 100 +url: /nodejs/optionalfields/setauditinformation/ +--- +## setAuditInformation(object) {#setauditinformation} + +DCJ, A string of letters and/or numbers that identifies when, where, and by whom a driver license/ID card was made. If audit information is not used on the card or the MRT, it must be included in the driver record, DL/ID, V25ANS + +```javascript +setAuditInformation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setcardrevisiondate/_index.md b/english/nodejs/optionalfields/setcardrevisiondate/_index.md new file mode 100644 index 000000000..5cbc421b1 --- /dev/null +++ b/english/nodejs/optionalfields/setcardrevisiondate/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setCardRevisionDate" +linktitle: "setCardRevisionDate" +articleTitle: "setCardRevisionDate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMD..." +type: docs +weight: 400 +url: /nodejs/optionalfields/setcardrevisiondate/ +--- +## setCardRevisionDate(object) {#setcardrevisiondate} + +DDB, DHS required field that indicates date of the most recent version change or modification to the visible format of the DL/ID. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +setCardRevisionDate(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setcompliancetype/_index.md b/english/nodejs/optionalfields/setcompliancetype/_index.md new file mode 100644 index 000000000..410d95bf7 --- /dev/null +++ b/english/nodejs/optionalfields/setcompliancetype/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setComplianceType" +linktitle: "setComplianceType" +articleTitle: "setComplianceType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A." +type: docs +weight: 380 +url: /nodejs/optionalfields/setcompliancetype/ +--- +## setComplianceType(object) {#setcompliancetype} + +DDA, DHS required field that indicates compliance: “F” = compliant; and, “N” = non-compliant, DL/ID, F1A + +```javascript +setComplianceType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setendorsementcodedescription/_index.md b/english/nodejs/optionalfields/setendorsementcodedescription/_index.md new file mode 100644 index 000000000..69d0d19e7 --- /dev/null +++ b/english/nodejs/optionalfields/setendorsementcodedescription/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setEndorsementCodeDescription" +linktitle: "setEndorsementCodeDescription" +articleTitle: "setEndorsementCodeDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL..." +type: docs +weight: 340 +url: /nodejs/optionalfields/setendorsementcodedescription/ +--- +## setEndorsementCodeDescription(object) {#setendorsementcodedescription} + +DCQ, Text that explains the jurisdiction-specific code(s) that indicates additional driving privileges granted to the cardholder beyond the vehicle class, DL, V50ANS + +```javascript +setEndorsementCodeDescription(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/sethaircolor/_index.md b/english/nodejs/optionalfields/sethaircolor/_index.md new file mode 100644 index 000000000..6f9455284 --- /dev/null +++ b/english/nodejs/optionalfields/sethaircolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setHairColor" +linktitle: "setHairColor" +articleTitle: "setHairColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes ..." +type: docs +weight: 60 +url: /nodejs/optionalfields/sethaircolor/ +--- +## setHairColor(object) {#sethaircolor} + +DAZ, Bald, black, blonde, brown, gray, red/auburn, sandy, white, unknown. If the issuing jurisdiction wishes to abbreviate colors, the three-character codes provided in AAMVA D20 must be used, DL/ID, V12A + +```javascript +setHairColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setinventorycontrolnumber/_index.md b/english/nodejs/optionalfields/setinventorycontrolnumber/_index.md new file mode 100644 index 000000000..887f0730c --- /dev/null +++ b/english/nodejs/optionalfields/setinventorycontrolnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setInventoryControlNumber" +linktitle: "setInventoryControlNumber" +articleTitle: "setInventoryControlNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS..." +type: docs +weight: 120 +url: /nodejs/optionalfields/setinventorycontrolnumber/ +--- +## setInventoryControlNumber(object) {#setinventorycontrolnumber} + +DCK, A string of letters and/or numbers that is affixed to the raw materials(card stock, laminate, etc.) used in producing driver licenses and ID cards. (DHS recommended field), DL/ID, V25ANS + +```javascript +setInventoryControlNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setlimiteddurationdocindicator/_index.md b/english/nodejs/optionalfields/setlimiteddurationdocindicator/_index.md new file mode 100644 index 000000000..ee8b5673d --- /dev/null +++ b/english/nodejs/optionalfields/setlimiteddurationdocindicator/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setLimitedDurationDocIndicator" +linktitle: "setLimitedDurationDocIndicator" +articleTitle: "setLimitedDurationDocIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N." +type: docs +weight: 430 +url: /nodejs/optionalfields/setlimiteddurationdocindicator/ +--- +## setLimitedDurationDocIndicator(object) {#setlimiteddurationdocindicator} + +DDD, DHS required field that indicates that the cardholder has temporary lawful status = “1”, DL/ID, F1N + +```javascript +setLimitedDurationDocIndicator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setnamesuffix/_index.md b/english/nodejs/optionalfields/setnamesuffix/_index.md new file mode 100644 index 000000000..ee0014c55 --- /dev/null +++ b/english/nodejs/optionalfields/setnamesuffix/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setNameSuffix" +linktitle: "setNameSuffix" +articleTitle: "setNameSuffix" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID ..." +type: docs +weight: 200 +url: /nodejs/optionalfields/setnamesuffix/ +--- +## setNameSuffix(object) {#setnamesuffix} + +DCU, Name Suffix (If jurisdiction participates in systems requiring name suffix (PDPS, CDLIS, etc.), the suffix must be collected and displayed on the DL/ID and in the MRT). JR(Junior), SR(Senior), 1ST or I(First), up to 9TH or IX (Ninth), DL/ID, V5ANS + +```javascript +setNameSuffix(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setorgandonorindicator/_index.md b/english/nodejs/optionalfields/setorgandonorindicator/_index.md new file mode 100644 index 000000000..a57690f1d --- /dev/null +++ b/english/nodejs/optionalfields/setorgandonorindicator/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setOrganDonorIndicator" +linktitle: "setOrganDonorIndicator" +articleTitle: "setOrganDonorIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N." +type: docs +weight: 540 +url: /nodejs/optionalfields/setorgandonorindicator/ +--- +## setOrganDonorIndicator(object) {#setorgandonorindicator} + +DDK, Field that indicates that the cardholder is an organ donor = “1”, DL/ID, F1N + +```javascript +setOrganDonorIndicator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setplaceofbirth/_index.md b/english/nodejs/optionalfields/setplaceofbirth/_index.md new file mode 100644 index 000000000..82233e6a0 --- /dev/null +++ b/english/nodejs/optionalfields/setplaceofbirth/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setPlaceOfBirth" +linktitle: "setPlaceOfBirth" +articleTitle: "setPlaceOfBirth" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCI, Country and municipality and/or state/province, DL/ID, V33A." +type: docs +weight: 80 +url: /nodejs/optionalfields/setplaceofbirth/ +--- +## setPlaceOfBirth(object) {#setplaceofbirth} + +DCI, Country and municipality and/or state/province, DL/ID, V33A + +```javascript +setPlaceOfBirth(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setraceethnicity/_index.md b/english/nodejs/optionalfields/setraceethnicity/_index.md new file mode 100644 index 000000000..cb5fed012 --- /dev/null +++ b/english/nodejs/optionalfields/setraceethnicity/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setRaceEthnicity" +linktitle: "setRaceEthnicity" +articleTitle: "setRaceEthnicity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A." +type: docs +weight: 240 +url: /nodejs/optionalfields/setraceethnicity/ +--- +## setRaceEthnicity(object) {#setraceethnicity} + +DCL, Codes for race or ethnicity of the cardholder, as defined in AAMVA D20, DL/ID, V3A + +```javascript +setRaceEthnicity(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setrestrictioncodedescription/_index.md b/english/nodejs/optionalfields/setrestrictioncodedescription/_index.md new file mode 100644 index 000000000..356aa15c2 --- /dev/null +++ b/english/nodejs/optionalfields/setrestrictioncodedescription/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setRestrictionCodeDescription" +linktitle: "setRestrictionCodeDescription" +articleTitle: "setRestrictionCodeDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS." +type: docs +weight: 360 +url: /nodejs/optionalfields/setrestrictioncodedescription/ +--- +## setRestrictionCodeDescription(object) {#setrestrictioncodedescription} + +DCR, Text describing the jurisdiction-specific restriction code(s) that curtail driving privileges, DL, V50ANS + +```javascript +setRestrictionCodeDescription(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setstandardendorsementcode/_index.md b/english/nodejs/optionalfields/setstandardendorsementcode/_index.md new file mode 100644 index 000000000..f8f0dd876 --- /dev/null +++ b/english/nodejs/optionalfields/setstandardendorsementcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setStandardEndorsementCode" +linktitle: "setStandardEndorsementCode" +articleTitle: "setStandardEndorsementCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL..." +type: docs +weight: 280 +url: /nodejs/optionalfields/setstandardendorsementcode/ +--- +## setStandardEndorsementCode(object) {#setstandardendorsementcode} + +DCN, Standard endorsement code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize endorsement codes, DL, F5AN + +```javascript +setStandardEndorsementCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setstandardrestrictioncode/_index.md b/english/nodejs/optionalfields/setstandardrestrictioncode/_index.md new file mode 100644 index 000000000..1ab3346cc --- /dev/null +++ b/english/nodejs/optionalfields/setstandardrestrictioncode/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setStandardRestrictionCode" +linktitle: "setStandardRestrictionCode" +articleTitle: "setStandardRestrictionCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL..." +type: docs +weight: 300 +url: /nodejs/optionalfields/setstandardrestrictioncode/ +--- +## setStandardRestrictionCode(object) {#setstandardrestrictioncode} + +DCO, Standard restriction code(s) for cardholder. See codes in D20.This data element is a placeholder for future efforts to standardize restriction codes, DL, F12AN + +```javascript +setStandardRestrictionCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setstandardvehclassification/_index.md b/english/nodejs/optionalfields/setstandardvehclassification/_index.md new file mode 100644 index 000000000..aa48351a6 --- /dev/null +++ b/english/nodejs/optionalfields/setstandardvehclassification/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setStandardVehClassification" +linktitle: "setStandardVehClassification" +articleTitle: "setStandardVehClassification" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL..." +type: docs +weight: 260 +url: /nodejs/optionalfields/setstandardvehclassification/ +--- +## setStandardVehClassification(object) {#setstandardvehclassification} + +DCM, Standard vehicle classification code(s) for cardholder. This data element is a placeholder for future efforts to standardize vehicle classifications, DL, F4AN + +```javascript +setStandardVehClassification(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setunder18until/_index.md b/english/nodejs/optionalfields/setunder18until/_index.md new file mode 100644 index 000000000..563950d2d --- /dev/null +++ b/english/nodejs/optionalfields/setunder18until/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setUnder18Until" +linktitle: "setUnder18Until" +articleTitle: "setUnder18Until" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N." +type: docs +weight: 480 +url: /nodejs/optionalfields/setunder18until/ +--- +## setUnder18Until(object) {#setunder18until} + +DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +setUnder18Until(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setunder19until/_index.md b/english/nodejs/optionalfields/setunder19until/_index.md new file mode 100644 index 000000000..4e1c2b990 --- /dev/null +++ b/english/nodejs/optionalfields/setunder19until/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setUnder19Until" +linktitle: "setUnder19Until" +articleTitle: "setUnder19Until" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N." +type: docs +weight: 500 +url: /nodejs/optionalfields/setunder19until/ +--- +## setUnder19Until(object) {#setunder19until} + +DDI, Date on which the cardholder turns 19 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +setUnder19Until(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setunder21until/_index.md b/english/nodejs/optionalfields/setunder21until/_index.md new file mode 100644 index 000000000..380650432 --- /dev/null +++ b/english/nodejs/optionalfields/setunder21until/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setUnder21Until" +linktitle: "setUnder21Until" +articleTitle: "setUnder21Until" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N." +type: docs +weight: 520 +url: /nodejs/optionalfields/setunder21until/ +--- +## setUnder21Until(object) {#setunder21until} + +DDJ, Date on which the cardholder turns 21 years old. (MMDDCCYY for U.S., CCYYMMDD for Canada), DL/ID, F8N + +```javascript +setUnder21Until(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setvehclassdescription/_index.md b/english/nodejs/optionalfields/setvehclassdescription/_index.md new file mode 100644 index 000000000..1f2e69f8e --- /dev/null +++ b/english/nodejs/optionalfields/setvehclassdescription/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setVehClassDescription" +linktitle: "setVehClassDescription" +articleTitle: "setVehClassDescription" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS." +type: docs +weight: 320 +url: /nodejs/optionalfields/setvehclassdescription/ +--- +## setVehClassDescription(object) {#setvehclassdescription} + +DCP, Text that explains the jurisdiction-specific code(s) for classifications of vehicles cardholder is authorized to drive, DL, V50ANS + +```javascript +setVehClassDescription(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setveteranindicator/_index.md b/english/nodejs/optionalfields/setveteranindicator/_index.md new file mode 100644 index 000000000..a6e7cfdc3 --- /dev/null +++ b/english/nodejs/optionalfields/setveteranindicator/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setVeteranIndicator" +linktitle: "setVeteranIndicator" +articleTitle: "setVeteranIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N." +type: docs +weight: 560 +url: /nodejs/optionalfields/setveteranindicator/ +--- +## setVeteranIndicator(object) {#setveteranindicator} + +DDL, Field that indicates that the cardholder is a veteran = “1”, DL/ID, F1N + +```javascript +setVeteranIndicator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setweightkilograms/_index.md b/english/nodejs/optionalfields/setweightkilograms/_index.md new file mode 100644 index 000000000..5abe60ebd --- /dev/null +++ b/english/nodejs/optionalfields/setweightkilograms/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setWeightKilograms" +linktitle: "setWeightKilograms" +articleTitle: "setWeightKilograms" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N." +type: docs +weight: 470 +url: /nodejs/optionalfields/setweightkilograms/ +--- +## setWeightKilograms(object) {#setweightkilograms} + +DAX, Cardholder weight in kilograms, Ex. 84 kg = “084”, DL/ID, F3N + +```javascript +setWeightKilograms(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setweightpounds/_index.md b/english/nodejs/optionalfields/setweightpounds/_index.md new file mode 100644 index 000000000..5f16f0ed9 --- /dev/null +++ b/english/nodejs/optionalfields/setweightpounds/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setWeightPounds" +linktitle: "setWeightPounds" +articleTitle: "setWeightPounds" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N." +type: docs +weight: 450 +url: /nodejs/optionalfields/setweightpounds/ +--- +## setWeightPounds(object) {#setweightpounds} + +DAW, Cardholder weight in pounds, Ex. 185 lb = “185”, DL/ID, F3N + +```javascript +setWeightPounds(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/optionalfields/setweightrange/_index.md b/english/nodejs/optionalfields/setweightrange/_index.md new file mode 100644 index 000000000..16964a8e7 --- /dev/null +++ b/english/nodejs/optionalfields/setweightrange/_index.md @@ -0,0 +1,27 @@ +--- +title: "OptionalFields.setWeightRange" +linktitle: "setWeightRange" +articleTitle: "setWeightRange" +second_title: "Aspose.BarCode for Node.js via Java" +description: "DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 ..." +type: docs +weight: 220 +url: /nodejs/optionalfields/setweightrange/ +--- +## setWeightRange(object) {#setweightrange} + +DCE, Indicates the approximate weight range of the cardholder: 0 = up to 31 kg(up to 70 lbs), 1 = 32 – 45 kg(71 – 100 lbs), 2 = 46 - 59 kg(101 – 130 lbs), 3 = 60 - 70 kg(131 – 160 lbs), 4 = 71 - 86 kg(161 – 190 lbs), 5 = 87 - 100 kg(191 – 220 lbs), 6 = 101 - 113 kg(221 – 250 lbs), 7 = 114 - 127 kg(251 – 280 lbs), 8 = 128 – 145 kg(281 – 320 lbs), 9 = 146+ kg(321+ lbs), DL/ID, F1N + +```javascript +setWeightRange(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [OptionalFields](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/_index.md b/english/nodejs/padding/_index.md new file mode 100644 index 000000000..40f9aa1aa --- /dev/null +++ b/english/nodejs/padding/_index.md @@ -0,0 +1,52 @@ +--- +title: "Padding Class" +linktitle: "Padding" +articleTitle: "Padding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Paddings parameters." +type: docs +weight: 500 +url: /nodejs/padding/ +--- +## Padding class + +Paddings parameters. + +```javascript +public class Padding : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Padding](./padding/#constructor)(*object*) | Initializes a new instance of the Padding class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getBottom](./getbottom/) | Bottom padding. | +| [getLeft](./getleft/) | Left padding. | +| [getRight](./getright/) | Right padding. | +| [getTop](./gettop/) | Top padding. | +| [init](./init/) | | +| [setBottom](./setbottom/)(*object*) | Bottom padding. | +| [setLeft](./setleft/)(*object*) | Left padding. | +| [setRight](./setright/)(*object*) | Right padding. | +| [setTop](./settop/)(*object*) | Top padding. | +| [toString](./tostring/) | Returns a human-readable string representation of this Padding. | + +## Fields + +| Name | Description | +| --- | --- | +| [bottom](./bottom/) | | +| [left](./left/) | | +| [right](./right/) | | +| [top](./top/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/padding/getbottom/_index.md b/english/nodejs/padding/getbottom/_index.md new file mode 100644 index 000000000..04372e3b2 --- /dev/null +++ b/english/nodejs/padding/getbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: "Padding.getBottom" +linktitle: "getBottom" +articleTitle: "getBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Bottom padding." +type: docs +weight: 90 +url: /nodejs/padding/getbottom/ +--- +## getBottom() {#getbottom} + +Bottom padding. + +```javascript +getBottom() +``` + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/getleft/_index.md b/english/nodejs/padding/getleft/_index.md new file mode 100644 index 000000000..567af8f2a --- /dev/null +++ b/english/nodejs/padding/getleft/_index.md @@ -0,0 +1,23 @@ +--- +title: "Padding.getLeft" +linktitle: "getLeft" +articleTitle: "getLeft" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Left padding." +type: docs +weight: 130 +url: /nodejs/padding/getleft/ +--- +## getLeft() {#getleft} + +Left padding. + +```javascript +getLeft() +``` + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/getright/_index.md b/english/nodejs/padding/getright/_index.md new file mode 100644 index 000000000..c8768d3ab --- /dev/null +++ b/english/nodejs/padding/getright/_index.md @@ -0,0 +1,23 @@ +--- +title: "Padding.getRight" +linktitle: "getRight" +articleTitle: "getRight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Right padding." +type: docs +weight: 110 +url: /nodejs/padding/getright/ +--- +## getRight() {#getright} + +Right padding. + +```javascript +getRight() +``` + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/gettop/_index.md b/english/nodejs/padding/gettop/_index.md new file mode 100644 index 000000000..8dfc6a1c8 --- /dev/null +++ b/english/nodejs/padding/gettop/_index.md @@ -0,0 +1,23 @@ +--- +title: "Padding.getTop" +linktitle: "getTop" +articleTitle: "getTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Top padding." +type: docs +weight: 70 +url: /nodejs/padding/gettop/ +--- +## getTop() {#gettop} + +Top padding. + +```javascript +getTop() +``` + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/init/_index.md b/english/nodejs/padding/init/_index.md new file mode 100644 index 000000000..4561400ee --- /dev/null +++ b/english/nodejs/padding/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Padding.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/padding/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/padding/_index.md b/english/nodejs/padding/padding/_index.md new file mode 100644 index 000000000..0e5a7c7d2 --- /dev/null +++ b/english/nodejs/padding/padding/_index.md @@ -0,0 +1,27 @@ +--- +title: "Padding" +linktitle: "Padding" +articleTitle: "Padding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Padding class." +type: docs +weight: 10 +url: /nodejs/padding/padding/ +--- +## Padding(object) {#constructor} + +Initializes a new instance of the Padding class. + +```javascript +public Padding(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/setbottom/_index.md b/english/nodejs/padding/setbottom/_index.md new file mode 100644 index 000000000..445eabd5f --- /dev/null +++ b/english/nodejs/padding/setbottom/_index.md @@ -0,0 +1,27 @@ +--- +title: "Padding.setBottom" +linktitle: "setBottom" +articleTitle: "setBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Bottom padding." +type: docs +weight: 100 +url: /nodejs/padding/setbottom/ +--- +## setBottom(object) {#setbottom} + +Bottom padding. + +```javascript +setBottom(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/setleft/_index.md b/english/nodejs/padding/setleft/_index.md new file mode 100644 index 000000000..ac71576b9 --- /dev/null +++ b/english/nodejs/padding/setleft/_index.md @@ -0,0 +1,27 @@ +--- +title: "Padding.setLeft" +linktitle: "setLeft" +articleTitle: "setLeft" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Left padding." +type: docs +weight: 140 +url: /nodejs/padding/setleft/ +--- +## setLeft(object) {#setleft} + +Left padding. + +```javascript +setLeft(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/setright/_index.md b/english/nodejs/padding/setright/_index.md new file mode 100644 index 000000000..1e1881928 --- /dev/null +++ b/english/nodejs/padding/setright/_index.md @@ -0,0 +1,27 @@ +--- +title: "Padding.setRight" +linktitle: "setRight" +articleTitle: "setRight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Right padding." +type: docs +weight: 120 +url: /nodejs/padding/setright/ +--- +## setRight(object) {#setright} + +Right padding. + +```javascript +setRight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/settop/_index.md b/english/nodejs/padding/settop/_index.md new file mode 100644 index 000000000..b5e5e111b --- /dev/null +++ b/english/nodejs/padding/settop/_index.md @@ -0,0 +1,27 @@ +--- +title: "Padding.setTop" +linktitle: "setTop" +articleTitle: "setTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Top padding." +type: docs +weight: 80 +url: /nodejs/padding/settop/ +--- +## setTop(object) {#settop} + +Top padding. + +```javascript +setTop(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/padding/tostring/_index.md b/english/nodejs/padding/tostring/_index.md new file mode 100644 index 000000000..a7ee92b84 --- /dev/null +++ b/english/nodejs/padding/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Padding.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Padding." +type: docs +weight: 150 +url: /nodejs/padding/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Padding. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Padding. + +### See Also + +* class [Padding](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/_index.md b/english/nodejs/patchcodeparameters/_index.md new file mode 100644 index 000000000..304044fbd --- /dev/null +++ b/english/nodejs/patchcodeparameters/_index.md @@ -0,0 +1,41 @@ +--- +title: "PatchCodeParameters Class" +linktitle: "PatchCodeParameters" +articleTitle: "PatchCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode parameters." +type: docs +weight: 570 +url: /nodejs/patchcodeparameters/ +--- +## PatchCodeParameters class + +PatchCode parameters. + +```javascript +public class PatchCodeParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [PatchCodeParameters](./patchcodeparameters/#constructor)(*object*) | Initializes a new instance of the PatchCodeParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getExtraBarcodeText](./getextrabarcodetext/) | Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. | +| [getFormat](./getformat/) | PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly. | +| [getPatchFormat](./getpatchformat/) | PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH_ONLY. | +| [init](./init/) | | +| [setExtraBarcodeText](./setextrabarcodetext/)(*object*) | Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. | +| [setFormat](./setformat/)(*object*) | PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly. | +| [setPatchFormat](./setpatchformat/)(*object*) | PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH_ONLY. | +| [toString](./tostring/) | Returns a human-readable string representation of this {PatchCodeParameters}. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/patchcodeparameters/getextrabarcodetext/_index.md b/english/nodejs/patchcodeparameters/getextrabarcodetext/_index.md new file mode 100644 index 000000000..a1453abab --- /dev/null +++ b/english/nodejs/patchcodeparameters/getextrabarcodetext/_index.md @@ -0,0 +1,23 @@ +--- +title: "PatchCodeParameters.getExtraBarcodeText" +linktitle: "getExtraBarcodeText" +articleTitle: "getExtraBarcodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode." +type: docs +weight: 30 +url: /nodejs/patchcodeparameters/getextrabarcodetext/ +--- +## getExtraBarcodeText() {#getextrabarcodetext} + +Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. + +```javascript +getExtraBarcodeText() +``` + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/getformat/_index.md b/english/nodejs/patchcodeparameters/getformat/_index.md new file mode 100644 index 000000000..4a2f067dc --- /dev/null +++ b/english/nodejs/patchcodeparameters/getformat/_index.md @@ -0,0 +1,23 @@ +--- +title: "PatchCodeParameters.getFormat" +linktitle: "getFormat" +articleTitle: "getFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchForma..." +type: docs +weight: 50 +url: /nodejs/patchcodeparameters/getformat/ +--- +## getFormat() {#getformat} + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly + +```javascript +getFormat() +``` + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/getpatchformat/_index.md b/english/nodejs/patchcodeparameters/getpatchformat/_index.md new file mode 100644 index 000000000..ceecf7b93 --- /dev/null +++ b/english/nodejs/patchcodeparameters/getpatchformat/_index.md @@ -0,0 +1,32 @@ +--- +title: "PatchCodeParameters.getPatchFormat" +linktitle: "getPatchFormat" +articleTitle: "getPatchFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchForma..." +type: docs +weight: 70 +url: /nodejs/patchcodeparameters/getpatchformat/ +--- +## getPatchFormat() {#getpatchformat} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getFormat(). + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH_ONLY + +```javascript +getPatchFormat() +``` + +### Return Value + +[PatchFormat](../../..//patchformat/) + +@deprecated This property is obsolete and will be removed in future releases. Instead, use the getFormat(). + +### See Also + +* class [PatchFormat](../../patchformat/) +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/init/_index.md b/english/nodejs/patchcodeparameters/init/_index.md new file mode 100644 index 000000000..8eb6f2a28 --- /dev/null +++ b/english/nodejs/patchcodeparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "PatchCodeParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/patchcodeparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/patchcodeparameters/_index.md b/english/nodejs/patchcodeparameters/patchcodeparameters/_index.md new file mode 100644 index 000000000..cd322fc5e --- /dev/null +++ b/english/nodejs/patchcodeparameters/patchcodeparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "PatchCodeParameters" +linktitle: "PatchCodeParameters" +articleTitle: "PatchCodeParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the PatchCodeParameters class." +type: docs +weight: 10 +url: /nodejs/patchcodeparameters/patchcodeparameters/ +--- +## PatchCodeParameters(object) {#constructor} + +Initializes a new instance of the PatchCodeParameters class. + +```javascript +public PatchCodeParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/setextrabarcodetext/_index.md b/english/nodejs/patchcodeparameters/setextrabarcodetext/_index.md new file mode 100644 index 000000000..d47fba269 --- /dev/null +++ b/english/nodejs/patchcodeparameters/setextrabarcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "PatchCodeParameters.setExtraBarcodeText" +linktitle: "setExtraBarcodeText" +articleTitle: "setExtraBarcodeText" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode." +type: docs +weight: 40 +url: /nodejs/patchcodeparameters/setextrabarcodetext/ +--- +## setExtraBarcodeText(object) {#setextrabarcodetext} + +Specifies codetext for an extra QR barcode, when PatchCode is generated in page mode. + +```javascript +setExtraBarcodeText(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/setformat/_index.md b/english/nodejs/patchcodeparameters/setformat/_index.md new file mode 100644 index 000000000..3003a5a4e --- /dev/null +++ b/english/nodejs/patchcodeparameters/setformat/_index.md @@ -0,0 +1,27 @@ +--- +title: "PatchCodeParameters.setFormat" +linktitle: "setFormat" +articleTitle: "setFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchForma..." +type: docs +weight: 60 +url: /nodejs/patchcodeparameters/setformat/ +--- +## setFormat(object) {#setformat} + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PatchOnly + +```javascript +setFormat(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/setpatchformat/_index.md b/english/nodejs/patchcodeparameters/setpatchformat/_index.md new file mode 100644 index 000000000..57019e4fe --- /dev/null +++ b/english/nodejs/patchcodeparameters/setpatchformat/_index.md @@ -0,0 +1,29 @@ +--- +title: "PatchCodeParameters.setPatchFormat" +linktitle: "setPatchFormat" +articleTitle: "setPatchFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchForma..." +type: docs +weight: 80 +url: /nodejs/patchcodeparameters/setpatchformat/ +--- +## setPatchFormat(object) {#setpatchformat} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setFormat(). + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders. Default value: PatchFormat.PATCH_ONLY + +```javascript +setPatchFormat(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchcodeparameters/tostring/_index.md b/english/nodejs/patchcodeparameters/tostring/_index.md new file mode 100644 index 000000000..5b254b3c4 --- /dev/null +++ b/english/nodejs/patchcodeparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "PatchCodeParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this {PatchCodeParameters}." +type: docs +weight: 90 +url: /nodejs/patchcodeparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this {PatchCodeParameters} + +```javascript +toString() +``` + +### Return Value + +string + +value that represents PatchCodeParameters + +### See Also + +* class [PatchCodeParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/patchformat/_index.md b/english/nodejs/patchformat/_index.md new file mode 100644 index 000000000..b0c91cd1d --- /dev/null +++ b/english/nodejs/patchformat/_index.md @@ -0,0 +1,32 @@ +--- +title: "PatchFormat Enum" +linktitle: "PatchFormat" +articleTitle: "PatchFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders." +type: docs +weight: 1070 +url: /nodejs/patchformat/ +--- +## PatchFormat enumeration + +PatchCode format. Choose PatchOnly to generate single PatchCode. Use page format to generate Patch page with PatchCodes as borders + +```javascript +public enum PatchFormat +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| PATCH_ONLY | `0` | Generates PatchCode only | +| A4 | `1` | Generates A4 format page with PatchCodes as borders and optional QR in the center | +| A4_LANDSCAPE | `2` | Generates A4 landscape format page with PatchCodes as borders and optional QR in the center | +| US_LETTER | `3` | Generates US letter format page with PatchCodes as borders and optional QR in the center | +| US_LETTER_LANDSCAPE | `4` | Generates US letter landscape format page with PatchCodes as borders and optional QR in the center | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417compactionmode/_index.md b/english/nodejs/pdf417compactionmode/_index.md new file mode 100644 index 000000000..a5f34449d --- /dev/null +++ b/english/nodejs/pdf417compactionmode/_index.md @@ -0,0 +1,31 @@ +--- +title: "Pdf417CompactionMode Enum" +linktitle: "Pdf417CompactionMode" +articleTitle: "Pdf417CompactionMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Pdf417 barcode's compation mode." +type: docs +weight: 950 +url: /nodejs/pdf417compactionmode/ +--- +## Pdf417CompactionMode enumeration + +Pdf417 barcode's compation mode + +```javascript +public enum Pdf417CompactionMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | auto detect compation mode | +| TEXT | `1` | text compaction | +| NUMERIC | `2` | numeric compaction mode | +| BINARY | `3` | binary compaction mode | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417encodemode/_index.md b/english/nodejs/pdf417encodemode/_index.md new file mode 100644 index 000000000..75e3897a5 --- /dev/null +++ b/english/nodejs/pdf417encodemode/_index.md @@ -0,0 +1,31 @@ +--- +title: "Pdf417EncodeMode Enum" +linktitle: "Pdf417EncodeMode" +articleTitle: "Pdf417EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Pdf417 barcode encode mode." +type: docs +weight: 1160 +url: /nodejs/pdf417encodemode/ +--- +## Pdf417EncodeMode enumeration + +Pdf417 barcode encode mode + +```javascript +public enum Pdf417EncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | In Auto mode, the CodeText is encoded with maximum data compactness. Unicode characters are re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. | +| BINARY | `1` | In Binary mode, the CodeText is encoded with maximum data compactness. If a Unicode character is found, an exception is thrown. | +| ECI | `2` | In ECI mode, the entire message is re-encoded in the ECIEncoding specified encoding with the insertion of an ECI identifier. If a character is found that is not supported by the selected ECI encoding, an exception is thrown. Please note that some old (pre 2006) scanners may not support this mode. | +| EXTENDED | `3` | Extended mode which supports multi ECI modes. It is better to use Pdf417ExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier All unicode characters after ECI identifier are automatically encoded into correct character codeset. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417errorlevel/_index.md b/english/nodejs/pdf417errorlevel/_index.md new file mode 100644 index 000000000..4c8085973 --- /dev/null +++ b/english/nodejs/pdf417errorlevel/_index.md @@ -0,0 +1,36 @@ +--- +title: "Pdf417ErrorLevel Enum" +linktitle: "Pdf417ErrorLevel" +articleTitle: "Pdf417ErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction." +type: docs +weight: 940 +url: /nodejs/pdf417errorlevel/ +--- +## Pdf417ErrorLevel enumeration + +pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction + +```javascript +public enum Pdf417ErrorLevel +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| LEVEL_0 | `0` | level = 0. | +| LEVEL_1 | `1` | level = 1. | +| LEVEL_2 | `2` | level = 2. | +| LEVEL_3 | `3` | level = 3. | +| LEVEL_4 | `4` | level = 4. | +| LEVEL_5 | `5` | level = 5. | +| LEVEL_6 | `6` | level = 6. | +| LEVEL_7 | `7` | level = 7. | +| LEVEL_8 | `8` | level = 8. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417extendedparameters/_index.md b/english/nodejs/pdf417extendedparameters/_index.md new file mode 100644 index 000000000..c39875f0c --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/_index.md @@ -0,0 +1,72 @@ +--- +title: "Pdf417ExtendedParameters Class" +linktitle: "Pdf417ExtendedParameters" +articleTitle: "Pdf417ExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a MacroPdf417 metadata information of recognized barcode." +type: docs +weight: 1290 +url: /nodejs/pdf417extendedparameters/ +--- +## Pdf417ExtendedParameters class + +Stores a MacroPdf417 metadata information of recognized barcode + +```javascript +public class Pdf417ExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Pdf417ExtendedParameters](./pdf417extendedparameters/#constructor)(*object*) | Initializes a new instance of the Pdf417ExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified Pdf417ExtendedParameters value. | +| [getMacroPdf417Addressee](./getmacropdf417addressee/) | Macro PDF417 addressee name (optional). | +| [getMacroPdf417Checksum](./getmacropdf417checksum/) | Macro PDF417 checksum (optional). | +| [getMacroPdf417FileID](./getmacropdf417fileid/) | Gets the file ID of the barcode, only available with MacroPdf417.Value: The file ID for MacroPdf417. | +| [getMacroPdf417FileName](./getmacropdf417filename/) | Macro PDF417 file name (optional). | +| [getMacroPdf417FileSize](./getmacropdf417filesize/) | Macro PDF417 file size (optional). | +| [getMacroPdf417SegmentID](./getmacropdf417segmentid/) | Gets the segment ID of the barcode,only available with MacroPdf417.Value: The segment ID of the barcode. | +| [getMacroPdf417SegmentsCount](./getmacropdf417segmentscount/) | Gets macro pdf417 barcode segments count. Default value is -1.Value: Segments count. | +| [getMacroPdf417Sender](./getmacropdf417sender/) | Macro PDF417 sender name (optional). | +| [getMacroPdf417Terminator](./getmacropdf417terminator/) | | +| [getMacroPdf417TimeStamp](./getmacropdf417timestamp/) | Macro PDF417 time stamp (optional). | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isCode128Emulation](./iscode128emulation/) | Flag that indicates that the MicroPdf417 barcode encoded with 908, 909, 910 or 911 Code 128 emulation codewords. | +| [isLinked](./islinked/) | | +| [isReaderInitialization](./isreaderinitialization/) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | +| [toString](./tostring/) | Returns a human-readable string representation of this Pdf417ExtendedParameters. | + +## Examples + +```javascript +//This sample shows how to get Macro Pdf417 metadata +let generator = new BarcodeGenerator(EncodeTypes.MacroPdf417, "12345"); +generator.getParameters().getBarcode().getPdf417().setPdf417MacroFileID(10); +generator.getParameters().getBarcode().getPdf417().setPdf417MacroSegmentsCount(2); +generator.getParameters().getBarcode().getPdf417().setPdf417MacroSegmentID(1); +generator.save("test.png"); +let reader = new BarCodeReader("test.png", null, DecodeType.MACRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("Macro Pdf417 FileID: " + result.getExtended().getPdf417().getMacroPdf417FileID()); +console.log("Macro Pdf417 Segments: " + result.getExtended().getPdf417().getMacroPdf417SegmentsCount()); +console.log("Macro Pdf417 SegmentID: " + result.getExtended().getPdf417().getMacroPdf417SegmentID()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417extendedparameters/equals/_index.md b/english/nodejs/pdf417extendedparameters/equals/_index.md new file mode 100644 index 000000000..2faac87dc --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "Pdf417ExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified Pdf417ExtendedParameters value." +type: docs +weight: 160 +url: /nodejs/pdf417extendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified Pdf417ExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An System.Object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417addressee/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417addressee/_index.md new file mode 100644 index 000000000..2edb60de4 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417addressee/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417Addressee" +linktitle: "getMacroPdf417Addressee" +articleTitle: "getMacroPdf417Addressee" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 addressee name (optional)." +type: docs +weight: 90 +url: /nodejs/pdf417extendedparameters/getmacropdf417addressee/ +--- +## getMacroPdf417Addressee() {#getmacropdf417addressee} + +Macro PDF417 addressee name (optional). + +```javascript +getMacroPdf417Addressee() +``` + +### Return Value + +Addressee + +name. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417checksum/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417checksum/_index.md new file mode 100644 index 000000000..3ecd84190 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417checksum/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417Checksum" +linktitle: "getMacroPdf417Checksum" +articleTitle: "getMacroPdf417Checksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 checksum (optional)." +type: docs +weight: 110 +url: /nodejs/pdf417extendedparameters/getmacropdf417checksum/ +--- +## getMacroPdf417Checksum() {#getmacropdf417checksum} + +Macro PDF417 checksum (optional). + +```javascript +getMacroPdf417Checksum() +``` + +### Return Value + + + +Checksum. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417fileid/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417fileid/_index.md new file mode 100644 index 000000000..d277553f0 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417fileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417FileID" +linktitle: "getMacroPdf417FileID" +articleTitle: "getMacroPdf417FileID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the file ID of the barcode, only available with MacroPdf417.Value: The file ID for MacroPdf417." +type: docs +weight: 30 +url: /nodejs/pdf417extendedparameters/getmacropdf417fileid/ +--- +## getMacroPdf417FileID() {#getmacropdf417fileid} + +Gets the file ID of the barcode, only available with MacroPdf417.Value: The file ID for MacroPdf417 + +```javascript +getMacroPdf417FileID() +``` + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417filename/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417filename/_index.md new file mode 100644 index 000000000..d202f65bf --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417filename/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417FileName" +linktitle: "getMacroPdf417FileName" +articleTitle: "getMacroPdf417FileName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 file name (optional)." +type: docs +weight: 60 +url: /nodejs/pdf417extendedparameters/getmacropdf417filename/ +--- +## getMacroPdf417FileName() {#getmacropdf417filename} + +Macro PDF417 file name (optional). + +```javascript +getMacroPdf417FileName() +``` + +### Return Value + +File + +name. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417filesize/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417filesize/_index.md new file mode 100644 index 000000000..c96cdccab --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417filesize/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417FileSize" +linktitle: "getMacroPdf417FileSize" +articleTitle: "getMacroPdf417FileSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 file size (optional)." +type: docs +weight: 70 +url: /nodejs/pdf417extendedparameters/getmacropdf417filesize/ +--- +## getMacroPdf417FileSize() {#getmacropdf417filesize} + +Macro PDF417 file size (optional). + +```javascript +getMacroPdf417FileSize() +``` + +### Return Value + +File + +size. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417segmentid/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417segmentid/_index.md new file mode 100644 index 000000000..8596a6f82 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417segmentid/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417SegmentID" +linktitle: "getMacroPdf417SegmentID" +articleTitle: "getMacroPdf417SegmentID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the segment ID of the barcode,only available with MacroPdf417.Value: The segment ID of the barcode." +type: docs +weight: 40 +url: /nodejs/pdf417extendedparameters/getmacropdf417segmentid/ +--- +## getMacroPdf417SegmentID() {#getmacropdf417segmentid} + +Gets the segment ID of the barcode,only available with MacroPdf417.Value: The segment ID of the barcode. + +```javascript +getMacroPdf417SegmentID() +``` + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417segmentscount/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417segmentscount/_index.md new file mode 100644 index 000000000..ae42302bb --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417segmentscount/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417SegmentsCount" +linktitle: "getMacroPdf417SegmentsCount" +articleTitle: "getMacroPdf417SegmentsCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro pdf417 barcode segments count. Default value is -1.Value: Segments count." +type: docs +weight: 50 +url: /nodejs/pdf417extendedparameters/getmacropdf417segmentscount/ +--- +## getMacroPdf417SegmentsCount() {#getmacropdf417segmentscount} + +Gets macro pdf417 barcode segments count. Default value is -1.Value: Segments count. + +```javascript +getMacroPdf417SegmentsCount() +``` + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417sender/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417sender/_index.md new file mode 100644 index 000000000..e3a8cf66f --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417sender/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417Sender" +linktitle: "getMacroPdf417Sender" +articleTitle: "getMacroPdf417Sender" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 sender name (optional)." +type: docs +weight: 80 +url: /nodejs/pdf417extendedparameters/getmacropdf417sender/ +--- +## getMacroPdf417Sender() {#getmacropdf417sender} + +Macro PDF417 sender name (optional). + +```javascript +getMacroPdf417Sender() +``` + +### Return Value + +Sender + +name + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417terminator/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417terminator/_index.md new file mode 100644 index 000000000..d1247a20b --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417terminator/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417Terminator" +linktitle: "getMacroPdf417Terminator" +articleTitle: "getMacroPdf417Terminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 120 +url: /nodejs/pdf417extendedparameters/getmacropdf417terminator/ +--- +## getMacroPdf417Terminator() {#getmacropdf417terminator} + + + +```javascript +getMacroPdf417Terminator() +``` + +### Return Value + +Reader + +initialization flag + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/getmacropdf417timestamp/_index.md b/english/nodejs/pdf417extendedparameters/getmacropdf417timestamp/_index.md new file mode 100644 index 000000000..aa368bae0 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/getmacropdf417timestamp/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.getMacroPdf417TimeStamp" +linktitle: "getMacroPdf417TimeStamp" +articleTitle: "getMacroPdf417TimeStamp" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro PDF417 time stamp (optional)." +type: docs +weight: 100 +url: /nodejs/pdf417extendedparameters/getmacropdf417timestamp/ +--- +## getMacroPdf417TimeStamp() {#getmacropdf417timestamp} + +Macro PDF417 time stamp (optional). + +```javascript +getMacroPdf417TimeStamp() +``` + +### Return Value + +Time + +stamp. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/hashcode/_index.md b/english/nodejs/pdf417extendedparameters/hashcode/_index.md new file mode 100644 index 000000000..9df266668 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 170 +url: /nodejs/pdf417extendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/init/_index.md b/english/nodejs/pdf417extendedparameters/init/_index.md new file mode 100644 index 000000000..ce8e4d095 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417ExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/pdf417extendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/iscode128emulation/_index.md b/english/nodejs/pdf417extendedparameters/iscode128emulation/_index.md new file mode 100644 index 000000000..4a3fbbbbc --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/iscode128emulation/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.isCode128Emulation" +linktitle: "isCode128Emulation" +articleTitle: "isCode128Emulation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Flag that indicates that the MicroPdf417 barcode encoded with 908, 909, 910 or 911 Code 128 emulation codewords." +type: docs +weight: 150 +url: /nodejs/pdf417extendedparameters/iscode128emulation/ +--- +## isCode128Emulation() {#iscode128emulation} + +Flag that indicates that the MicroPdf417 barcode encoded with 908, 909, 910 or 911 Code 128 emulation codewords. + +```javascript +isCode128Emulation() +``` + +### Return Value + +Code + +128 emulation flag + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/islinked/_index.md b/english/nodejs/pdf417extendedparameters/islinked/_index.md new file mode 100644 index 000000000..c02d01c0a --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/islinked/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417ExtendedParameters.isLinked" +linktitle: "isLinked" +articleTitle: "isLinked" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 140 +url: /nodejs/pdf417extendedparameters/islinked/ +--- +## isLinked() {#islinked} + + + +```javascript +isLinked() +``` + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/isreaderinitialization/_index.md b/english/nodejs/pdf417extendedparameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..d821d7734 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/isreaderinitialization/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization." +type: docs +weight: 130 +url: /nodejs/pdf417extendedparameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. + +```javascript +isReaderInitialization() +``` + +### Return Value + +Reader + +initialization flag + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/pdf417extendedparameters/_index.md b/english/nodejs/pdf417extendedparameters/pdf417extendedparameters/_index.md new file mode 100644 index 000000000..801a66a02 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/pdf417extendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417ExtendedParameters" +linktitle: "Pdf417ExtendedParameters" +articleTitle: "Pdf417ExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Pdf417ExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/pdf417extendedparameters/pdf417extendedparameters/ +--- +## Pdf417ExtendedParameters(object) {#constructor} + +Initializes a new instance of the Pdf417ExtendedParameters class. + +```javascript +public Pdf417ExtendedParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417extendedparameters/tostring/_index.md b/english/nodejs/pdf417extendedparameters/tostring/_index.md new file mode 100644 index 000000000..ea501fb25 --- /dev/null +++ b/english/nodejs/pdf417extendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417ExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Pdf417ExtendedParameters." +type: docs +weight: 180 +url: /nodejs/pdf417extendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Pdf417ExtendedParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Pdf417ExtendedParameters. + +### See Also + +* class [Pdf417ExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417macroterminator/_index.md b/english/nodejs/pdf417macroterminator/_index.md new file mode 100644 index 000000000..e57e81675 --- /dev/null +++ b/english/nodejs/pdf417macroterminator/_index.md @@ -0,0 +1,30 @@ +--- +title: "Pdf417MacroTerminator Enum" +linktitle: "Pdf417MacroTerminator" +articleTitle: "Pdf417MacroTerminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417." +type: docs +weight: 1120 +url: /nodejs/pdf417macroterminator/ +--- +## Pdf417MacroTerminator enumeration + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +```javascript +public enum Pdf417MacroTerminator +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | The terminator will be added automatically if the number of segments is provided and the current segment is the last one. In other cases, the terminator will not be added. | +| NONE | `1` | The terminator will not be added. | +| SET | `2` | The terminator will be added. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417parameters/_index.md b/english/nodejs/pdf417parameters/_index.md new file mode 100644 index 000000000..32121a6ae --- /dev/null +++ b/english/nodejs/pdf417parameters/_index.md @@ -0,0 +1,144 @@ +--- +title: "Pdf417Parameters Class" +linktitle: "Pdf417Parameters" +articleTitle: "Pdf417Parameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PDF417 parameters. Contains PDF417, MacroPDF417, MicroPDF417 and GS1MicroPdf417 parameters. MacroPDF417 requires two fields: Pdf417MacroFileID and Pdf417Macr..." +type: docs +weight: 630 +url: /nodejs/pdf417parameters/ +--- +## Pdf417Parameters class + +PDF417 parameters. Contains PDF417, MacroPDF417, MicroPDF417 and GS1MicroPdf417 parameters. MacroPDF417 requires two fields: Pdf417MacroFileID and Pdf417MacroSegmentID. All other fields are optional. MicroPDF417 in Structured Append mode (same as MacroPDF417 mode) requires two fields: Pdf417MacroFileID and Pdf417MacroSegmentID. All other fields are optional. + +```javascript +public class Pdf417Parameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Pdf417Parameters](./pdf417parameters/#constructor)(*object*) | Initializes a new instance of the Pdf417Parameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getColumns](./getcolumns/) | Columns count. | +| [getECIEncoding](./geteciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. | +| [getEncodeMode](./getencodemode/) | Identifies Pdf417 encode mode. Default value: Auto. | +| [getErrorLevel](./geterrorlevel/) | Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | +| [getMacroCharacters](./getmacrocharacters/) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. | +| [getMacroPdf417Addressee](./getmacropdf417addressee/) | MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode). | +| [getMacroPdf417Checksum](./getmacropdf417checksum/) | MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1. | +| [getMacroPdf417ECIEncoding](./getmacropdf417eciencoding/) | Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. | +| [getMacroPdf417FileID](./getmacropdf417fileid/) | MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode). | +| [getMacroPdf417FileName](./getmacropdf417filename/) | MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode). | +| [getMacroPdf417FileSize](./getmacropdf417filesize/) | MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. | +| [getMacroPdf417SegmentID](./getmacropdf417segmentid/) | MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode). | +| [getMacroPdf417SegmentsCount](./getmacropdf417segmentscount/) | MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode). | +| [getMacroPdf417Sender](./getmacropdf417sender/) | MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode). | +| [getMacroPdf417Terminator](./getmacropdf417terminator/) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. | +| [getMacroPdf417TimeStamp](./getmacropdf417timestamp/) | MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode). | +| [getPdf417CompactionMode](./getpdf417compactionmode/) | Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. | +| [getPdf417ECIEncoding](./getpdf417eciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [getPdf417EncodeMode](./getpdf417encodemode/) | Identifies Pdf417 encode mode. Default value: Auto. | +| [getPdf417ErrorLevel](./getpdf417errorlevel/) | Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | +| [getPdf417MacroAddressee](./getpdf417macroaddressee/) | Gets macro Pdf417 barcode addressee name. | +| [getPdf417MacroChecksum](./getpdf417macrochecksum/) | Gets macro Pdf417 barcode checksum. | +| [getPdf417MacroECIEncoding](./getpdf417macroeciencoding/) | Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. | +| [getPdf417MacroFileID](./getpdf417macrofileid/) | Getsmacro Pdf417 barcode's file ID. Used for MacroPdf417. | +| [getPdf417MacroFileName](./getpdf417macrofilename/) | Gets macro Pdf417 barcode file name. | +| [getPdf417MacroFileSize](./getpdf417macrofilesize/) | Gets macro Pdf417 file size. | +| [getPdf417MacroSegmentID](./getpdf417macrosegmentid/) | Gets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1. | +| [getPdf417MacroSegmentsCount](./getpdf417macrosegmentscount/) | Gets macro Pdf417 barcode segments count. | +| [getPdf417MacroSender](./getpdf417macrosender/) | Gets macro Pdf417 barcode sender name. | +| [getPdf417MacroTerminator](./getpdf417macroterminator/) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. | +| [getPdf417MacroTimeStamp](./getpdf417macrotimestamp/) | Gets macro Pdf417 barcode time stamp. | +| [getPdf417Truncate](./getpdf417truncate/) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | +| [getRows](./getrows/) | Rows count. | +| [getStructuredAppendModeBarcodeId](./getstructuredappendmodebarcodeid/) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [getTruncate](./gettruncate/) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. | +| [init](./init/) | | +| [isCode128Emulation](./iscode128emulation/) | Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128. | +| [isLinked](./islinked/) | Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC. | +| [isReaderInitialization](./isreaderinitialization/) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setCode128Emulation](./setcode128emulation/)(*object*) | Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128. | +| [setColumns](./setcolumns/)(*object*) | Columns count. | +| [setECIEncoding](./seteciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. | +| [setEncodeMode](./setencodemode/)(*object*) | Identifies Pdf417 encode mode. Default value: Auto. | +| [setErrorLevel](./seterrorlevel/)(*object*) | Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | +| [setLinked](./setlinked/)(*object*) | Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC. | +| [setMacroCharacters](./setmacrocharacters/)(*object*) | Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. | +| [setMacroPdf417Addressee](./setmacropdf417addressee/)(*object*) | MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode). | +| [setMacroPdf417Checksum](./setmacropdf417checksum/)(*object*) | MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1. | +| [setMacroPdf417ECIEncoding](./setmacropdf417eciencoding/)(*object*) | Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. | +| [setMacroPdf417FileID](./setmacropdf417fileid/)(*object*) | MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode). | +| [setMacroPdf417FileName](./setmacropdf417filename/)(*object*) | MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode). | +| [setMacroPdf417FileSize](./setmacropdf417filesize/)(*object*) | MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. | +| [setMacroPdf417SegmentID](./setmacropdf417segmentid/)(*object*) | MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode). | +| [setMacroPdf417SegmentsCount](./setmacropdf417segmentscount/)(*object*) | MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode). | +| [setMacroPdf417Sender](./setmacropdf417sender/)(*object*) | MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode). | +| [setMacroPdf417Terminator](./setmacropdf417terminator/)(*object*) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. | +| [setMacroPdf417TimeStamp](./setmacropdf417timestamp/)(*object*) | MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode). | +| [setPdf417CompactionMode](./setpdf417compactionmode/)(*object*) | Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. | +| [setPdf417ECIEncoding](./setpdf417eciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [setPdf417EncodeMode](./setpdf417encodemode/)(*object*) | Identifies Pdf417 encode mode. Default value: Auto. | +| [setPdf417ErrorLevel](./setpdf417errorlevel/)(*object*) | Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. | +| [setPdf417MacroAddressee](./setpdf417macroaddressee/)(*object*) | Sets macro Pdf417 barcode addressee name. | +| [setPdf417MacroChecksum](./setpdf417macrochecksum/)(*object*) | Sets macro Pdf417 barcode checksum. | +| [setPdf417MacroECIEncoding](./setpdf417macroeciencoding/)(*object*) | Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. | +| [setPdf417MacroFileID](./setpdf417macrofileid/)(*object*) | Sets macro Pdf417 barcode's file ID. Used for MacroPdf417. | +| [setPdf417MacroFileName](./setpdf417macrofilename/)(*object*) | Sets macro Pdf417 barcode file name. | +| [setPdf417MacroFileSize](./setpdf417macrofilesize/)(*object*) | Sets macro Pdf417 file size. | +| [setPdf417MacroSegmentID](./setpdf417macrosegmentid/)(*object*) | Sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1. | +| [setPdf417MacroSegmentsCount](./setpdf417macrosegmentscount/)(*object*) | Sets macro Pdf417 barcode segments count. | +| [setPdf417MacroSender](./setpdf417macrosender/)(*object*) | Sets macro Pdf417 barcode sender name. | +| [setPdf417MacroTerminator](./setpdf417macroterminator/)(*object*) | Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. | +| [setPdf417MacroTimeStamp](./setpdf417macrotimestamp/)(*object*) | Sets macro Pdf417 barcode time stamp. | +| [setPdf417Truncate](./setpdf417truncate/)(*object*) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). | +| [setReaderInitialization](./setreaderinitialization/)(*object*) | Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization. | +| [setRows](./setrows/)(*object*) | Rows count. | +| [setStructuredAppendModeBarcodeId](./setstructuredappendmodebarcodeid/)(*object*) | Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. | +| [setTruncate](./settruncate/)(*object*) | Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. | +| [toString](./tostring/) | Returns a human-readable string representation of this Pdf417Parameters. | + +## Examples + +# Encodes GS1 UCC/EAN-128 non Linked mode 905 with AI 01 (GTIN) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(01)12345678901231"); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} +``` + +# Encodes GS1 UCC/EAN-128 non Linked modes 903, 904 with any AI + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(241)123456789012345(241)ABCD123456789012345"); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} + + +

+``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdf417parameters/getaspectratio/_index.md b/english/nodejs/pdf417parameters/getaspectratio/_index.md new file mode 100644 index 000000000..932eda758 --- /dev/null +++ b/english/nodejs/pdf417parameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 210 +url: /nodejs/pdf417parameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getcolumns/_index.md b/english/nodejs/pdf417parameters/getcolumns/_index.md new file mode 100644 index 000000000..1a2dd543c --- /dev/null +++ b/english/nodejs/pdf417parameters/getcolumns/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getColumns" +linktitle: "getColumns" +articleTitle: "getColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 170 +url: /nodejs/pdf417parameters/getcolumns/ +--- +## getColumns() {#getcolumns} + +Columns count. + +```javascript +getColumns() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/geteciencoding/_index.md b/english/nodejs/pdf417parameters/geteciencoding/_index.md new file mode 100644 index 000000000..0672b267a --- /dev/null +++ b/english/nodejs/pdf417parameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not..." +type: docs +weight: 70 +url: /nodejs/pdf417parameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. + +```javascript +getECIEncoding() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getencodemode/_index.md b/english/nodejs/pdf417parameters/getencodemode/_index.md new file mode 100644 index 000000000..5ff974aad --- /dev/null +++ b/english/nodejs/pdf417parameters/getencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies Pdf417 encode mode. Default value: Auto." +type: docs +weight: 590 +url: /nodejs/pdf417parameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +Identifies Pdf417 encode mode. Default value: Auto. + +```javascript +getEncodeMode() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/geterrorlevel/_index.md b/english/nodejs/pdf417parameters/geterrorlevel/_index.md new file mode 100644 index 000000000..8f5dd9947 --- /dev/null +++ b/english/nodejs/pdf417parameters/geterrorlevel/_index.md @@ -0,0 +1,31 @@ +--- +title: "Pdf417Parameters.getErrorLevel" +linktitle: "getErrorLevel" +articleTitle: "getErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error ..." +type: docs +weight: 90 +url: /nodejs/pdf417parameters/geterrorlevel/ +--- +## getErrorLevel() {#geterrorlevel} + +Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +```javascript +getErrorLevel() +``` + +### Return Value + +Pdf417 + +symbology type of BarCode's error correction level +ranging from level0 to level8, level0 means no error correction info, +level8 means best error correction which means a larger picture. + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacrocharacters/_index.md b/english/nodejs/pdf417parameters/getmacrocharacters/_index.md new file mode 100644 index 000000000..1606970e5 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacrocharacters/_index.md @@ -0,0 +1,55 @@ +--- +title: "Pdf417Parameters.getMacroCharacters" +linktitle: "getMacroCharacters" +articleTitle: "getMacroCharacters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroP..." +type: docs +weight: 750 +url: /nodejs/pdf417parameters/getmacrocharacters/ +--- +## getMacroCharacters() {#getmacrocharacters} + +Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. + +```javascript +getMacroCharacters() +``` + +## Examples + +# Encodes MicroPdf417 with 05 Macro the string: "[)>\u001E05\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} +``` + +# Encodes MicroPdf417 with 06 Macro the string: "[)>\u001E06\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText()); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417addressee/_index.md b/english/nodejs/pdf417parameters/getmacropdf417addressee/_index.md new file mode 100644 index 000000000..270ddb428 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417addressee/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417Addressee" +linktitle: "getMacroPdf417Addressee" +articleTitle: "getMacroPdf417Addressee" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode)." +type: docs +weight: 470 +url: /nodejs/pdf417parameters/getmacropdf417addressee/ +--- +## getMacroPdf417Addressee() {#getmacropdf417addressee} + +MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode) + +```javascript +getMacroPdf417Addressee() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417checksum/_index.md b/english/nodejs/pdf417parameters/getmacropdf417checksum/_index.md new file mode 100644 index 000000000..b0d2494b5 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417checksum/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417Checksum" +linktitle: "getMacroPdf417Checksum" +articleTitle: "getMacroPdf417Checksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value..." +type: docs +weight: 550 +url: /nodejs/pdf417parameters/getmacropdf417checksum/ +--- +## getMacroPdf417Checksum() {#getmacropdf417checksum} + +MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1 + +```javascript +getMacroPdf417Checksum() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417eciencoding/_index.md b/english/nodejs/pdf417parameters/getmacropdf417eciencoding/_index.md new file mode 100644 index 000000000..14a0bbcb1 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417eciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417ECIEncoding" +linktitle: "getMacroPdf417ECIEncoding" +articleTitle: "getMacroPdf417ECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields." +type: docs +weight: 630 +url: /nodejs/pdf417parameters/getmacropdf417eciencoding/ +--- +## getMacroPdf417ECIEncoding() {#getmacropdf417eciencoding} + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +```javascript +getMacroPdf417ECIEncoding() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417fileid/_index.md b/english/nodejs/pdf417parameters/getmacropdf417fileid/_index.md new file mode 100644 index 000000000..04be4773a --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417fileid/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417FileID" +linktitle: "getMacroPdf417FileID" +articleTitle: "getMacroPdf417FileID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode)." +type: docs +weight: 230 +url: /nodejs/pdf417parameters/getmacropdf417fileid/ +--- +## getMacroPdf417FileID() {#getmacropdf417fileid} + +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) + +```javascript +getMacroPdf417FileID() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417filename/_index.md b/english/nodejs/pdf417parameters/getmacropdf417filename/_index.md new file mode 100644 index 000000000..eebf45bdd --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417filename/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417FileName" +linktitle: "getMacroPdf417FileName" +articleTitle: "getMacroPdf417FileName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode)." +type: docs +weight: 350 +url: /nodejs/pdf417parameters/getmacropdf417filename/ +--- +## getMacroPdf417FileName() {#getmacropdf417filename} + +MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode) + +```javascript +getMacroPdf417FileName() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417filesize/_index.md b/english/nodejs/pdf417parameters/getmacropdf417filesize/_index.md new file mode 100644 index 000000000..b5bf79894 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417filesize/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417FileSize" +linktitle: "getMacroPdf417FileSize" +articleTitle: "getMacroPdf417FileSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of t..." +type: docs +weight: 510 +url: /nodejs/pdf417parameters/getmacropdf417filesize/ +--- +## getMacroPdf417FileSize() {#getmacropdf417filesize} + +MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. + +```javascript +getMacroPdf417FileSize() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417segmentid/_index.md b/english/nodejs/pdf417parameters/getmacropdf417segmentid/_index.md new file mode 100644 index 000000000..5d49997f9 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417segmentid/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417SegmentID" +linktitle: "getMacroPdf417SegmentID" +articleTitle: "getMacroPdf417SegmentID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Struc..." +type: docs +weight: 270 +url: /nodejs/pdf417parameters/getmacropdf417segmentid/ +--- +## getMacroPdf417SegmentID() {#getmacropdf417segmentid} + +MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode) + +```javascript +getMacroPdf417SegmentID() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417segmentscount/_index.md b/english/nodejs/pdf417parameters/getmacropdf417segmentscount/_index.md new file mode 100644 index 000000000..a57c57afd --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417segmentscount/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417SegmentsCount" +linktitle: "getMacroPdf417SegmentsCount" +articleTitle: "getMacroPdf417SegmentsCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode)." +type: docs +weight: 320 +url: /nodejs/pdf417parameters/getmacropdf417segmentscount/ +--- +## getMacroPdf417SegmentsCount() {#getmacropdf417segmentscount} + +MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode) + +```javascript +getMacroPdf417SegmentsCount() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417sender/_index.md b/english/nodejs/pdf417parameters/getmacropdf417sender/_index.md new file mode 100644 index 000000000..82b80739c --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417sender/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417Sender" +linktitle: "getMacroPdf417Sender" +articleTitle: "getMacroPdf417Sender" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode)." +type: docs +weight: 430 +url: /nodejs/pdf417parameters/getmacropdf417sender/ +--- +## getMacroPdf417Sender() {#getmacropdf417sender} + +MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode) + +```javascript +getMacroPdf417Sender() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417terminator/_index.md b/english/nodejs/pdf417parameters/getmacropdf417terminator/_index.md new file mode 100644 index 000000000..73ffc69b8 --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417terminator/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417Terminator" +linktitle: "getMacroPdf417Terminator" +articleTitle: "getMacroPdf417Terminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417." +type: docs +weight: 670 +url: /nodejs/pdf417parameters/getmacropdf417terminator/ +--- +## getMacroPdf417Terminator() {#getmacropdf417terminator} + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +```javascript +getMacroPdf417Terminator() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getmacropdf417timestamp/_index.md b/english/nodejs/pdf417parameters/getmacropdf417timestamp/_index.md new file mode 100644 index 000000000..732f13cce --- /dev/null +++ b/english/nodejs/pdf417parameters/getmacropdf417timestamp/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getMacroPdf417TimeStamp" +linktitle: "getMacroPdf417TimeStamp" +articleTitle: "getMacroPdf417TimeStamp" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode)." +type: docs +weight: 390 +url: /nodejs/pdf417parameters/getmacropdf417timestamp/ +--- +## getMacroPdf417TimeStamp() {#getmacropdf417timestamp} + +MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode) + +```javascript +getMacroPdf417TimeStamp() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417compactionmode/_index.md b/english/nodejs/pdf417parameters/getpdf417compactionmode/_index.md new file mode 100644 index 000000000..bdefdd004 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417compactionmode/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getPdf417CompactionMode" +linktitle: "getPdf417CompactionMode" +articleTitle: "getPdf417CompactionMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO." +type: docs +weight: 30 +url: /nodejs/pdf417parameters/getpdf417compactionmode/ +--- +## getPdf417CompactionMode() {#getpdf417compactionmode} + +Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. + +```javascript +getPdf417CompactionMode() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417eciencoding/_index.md b/english/nodejs/pdf417parameters/getpdf417eciencoding/_index.md new file mode 100644 index 000000000..f94b83358 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417eciencoding/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417ECIEncoding" +linktitle: "getPdf417ECIEncoding" +articleTitle: "getPdf417ECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 610 +url: /nodejs/pdf417parameters/getpdf417eciencoding/ +--- +## getPdf417ECIEncoding() {#getpdf417eciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +getPdf417ECIEncoding() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417encodemode/_index.md b/english/nodejs/pdf417parameters/getpdf417encodemode/_index.md new file mode 100644 index 000000000..4fc3d5504 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417encodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getPdf417EncodeMode" +linktitle: "getPdf417EncodeMode" +articleTitle: "getPdf417EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies Pdf417 encode mode. Default value: Auto." +type: docs +weight: 50 +url: /nodejs/pdf417parameters/getpdf417encodemode/ +--- +## getPdf417EncodeMode() {#getpdf417encodemode} + +Identifies Pdf417 encode mode. Default value: Auto. + +```javascript +getPdf417EncodeMode() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417errorlevel/_index.md b/english/nodejs/pdf417parameters/getpdf417errorlevel/_index.md new file mode 100644 index 000000000..c224fc3d9 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417errorlevel/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417ErrorLevel" +linktitle: "getPdf417ErrorLevel" +articleTitle: "getPdf417ErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error ..." +type: docs +weight: 110 +url: /nodejs/pdf417parameters/getpdf417errorlevel/ +--- +## getPdf417ErrorLevel() {#getpdf417errorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel(). + +Gets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +```javascript +getPdf417ErrorLevel() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macroaddressee/_index.md b/english/nodejs/pdf417parameters/getpdf417macroaddressee/_index.md new file mode 100644 index 000000000..edb65bdb6 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macroaddressee/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroAddressee" +linktitle: "getPdf417MacroAddressee" +articleTitle: "getPdf417MacroAddressee" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode addressee name." +type: docs +weight: 490 +url: /nodejs/pdf417parameters/getpdf417macroaddressee/ +--- +## getPdf417MacroAddressee() {#getpdf417macroaddressee} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Addressee(). + +Gets macro Pdf417 barcode addressee name. + +```javascript +getPdf417MacroAddressee() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrochecksum/_index.md b/english/nodejs/pdf417parameters/getpdf417macrochecksum/_index.md new file mode 100644 index 000000000..3fede5ab2 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrochecksum/_index.md @@ -0,0 +1,31 @@ +--- +title: "Pdf417Parameters.getPdf417MacroChecksum" +linktitle: "getPdf417MacroChecksum" +articleTitle: "getPdf417MacroChecksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode checksum." +type: docs +weight: 570 +url: /nodejs/pdf417parameters/getpdf417macrochecksum/ +--- +## getPdf417MacroChecksum() {#getpdf417macrochecksum} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Checksum(). + +Gets macro Pdf417 barcode checksum. + +```javascript +getPdf417MacroChecksum() +``` + +### Return Value + +The + +checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macroeciencoding/_index.md b/english/nodejs/pdf417parameters/getpdf417macroeciencoding/_index.md new file mode 100644 index 000000000..9462c633f --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macroeciencoding/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroECIEncoding" +linktitle: "getPdf417MacroECIEncoding" +articleTitle: "getPdf417MacroECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields." +type: docs +weight: 650 +url: /nodejs/pdf417parameters/getpdf417macroeciencoding/ +--- +## getPdf417MacroECIEncoding() {#getpdf417macroeciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417ECIEncoding(). + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +```javascript +getPdf417MacroECIEncoding() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrofileid/_index.md b/english/nodejs/pdf417parameters/getpdf417macrofileid/_index.md new file mode 100644 index 000000000..5e2129f9a --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrofileid/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroFileID" +linktitle: "getPdf417MacroFileID" +articleTitle: "getPdf417MacroFileID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Getsmacro Pdf417 barcode's file ID. Used for MacroPdf417." +type: docs +weight: 250 +url: /nodejs/pdf417parameters/getpdf417macrofileid/ +--- +## getPdf417MacroFileID() {#getpdf417macrofileid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileID(). + +Getsmacro Pdf417 barcode's file ID. Used for MacroPdf417. + +```javascript +getPdf417MacroFileID() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrofilename/_index.md b/english/nodejs/pdf417parameters/getpdf417macrofilename/_index.md new file mode 100644 index 000000000..479d210ed --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrofilename/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroFileName" +linktitle: "getPdf417MacroFileName" +articleTitle: "getPdf417MacroFileName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode file name." +type: docs +weight: 370 +url: /nodejs/pdf417parameters/getpdf417macrofilename/ +--- +## getPdf417MacroFileName() {#getpdf417macrofilename} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileName(). + +Gets macro Pdf417 barcode file name. + +```javascript +getPdf417MacroFileName() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrofilesize/_index.md b/english/nodejs/pdf417parameters/getpdf417macrofilesize/_index.md new file mode 100644 index 000000000..568fbbf53 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrofilesize/_index.md @@ -0,0 +1,31 @@ +--- +title: "Pdf417Parameters.getPdf417MacroFileSize" +linktitle: "getPdf417MacroFileSize" +articleTitle: "getPdf417MacroFileSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 file size." +type: docs +weight: 530 +url: /nodejs/pdf417parameters/getpdf417macrofilesize/ +--- +## getPdf417MacroFileSize() {#getpdf417macrofilesize} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417FileSize(). + +Gets macro Pdf417 file size. + +```javascript +getPdf417MacroFileSize() +``` + +### Return Value + +The + +file size field contains the size in bytes of the entire source file. + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrosegmentid/_index.md b/english/nodejs/pdf417parameters/getpdf417macrosegmentid/_index.md new file mode 100644 index 000000000..09fac3888 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrosegmentid/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroSegmentID" +linktitle: "getPdf417MacroSegmentID" +articleTitle: "getPdf417MacroSegmentID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1." +type: docs +weight: 290 +url: /nodejs/pdf417parameters/getpdf417macrosegmentid/ +--- +## getPdf417MacroSegmentID() {#getpdf417macrosegmentid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417SegmentID(). + +Gets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1. + +```javascript +getPdf417MacroSegmentID() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrosegmentscount/_index.md b/english/nodejs/pdf417parameters/getpdf417macrosegmentscount/_index.md new file mode 100644 index 000000000..9d58cbeae --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrosegmentscount/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroSegmentsCount" +linktitle: "getPdf417MacroSegmentsCount" +articleTitle: "getPdf417MacroSegmentsCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode segments count." +type: docs +weight: 310 +url: /nodejs/pdf417parameters/getpdf417macrosegmentscount/ +--- +## getPdf417MacroSegmentsCount() {#getpdf417macrosegmentscount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417SegmentsCount(). + +Gets macro Pdf417 barcode segments count. + +```javascript +getPdf417MacroSegmentsCount() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrosender/_index.md b/english/nodejs/pdf417parameters/getpdf417macrosender/_index.md new file mode 100644 index 000000000..f44bbc519 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrosender/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroSender" +linktitle: "getPdf417MacroSender" +articleTitle: "getPdf417MacroSender" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode sender name." +type: docs +weight: 450 +url: /nodejs/pdf417parameters/getpdf417macrosender/ +--- +## getPdf417MacroSender() {#getpdf417macrosender} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Sender(). + +Gets macro Pdf417 barcode sender name. + +```javascript +getPdf417MacroSender() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macroterminator/_index.md b/english/nodejs/pdf417parameters/getpdf417macroterminator/_index.md new file mode 100644 index 000000000..401c4dc04 --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macroterminator/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroTerminator" +linktitle: "getPdf417MacroTerminator" +articleTitle: "getPdf417MacroTerminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417." +type: docs +weight: 690 +url: /nodejs/pdf417parameters/getpdf417macroterminator/ +--- +## getPdf417MacroTerminator() {#getpdf417macroterminator} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417Terminator(). + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +```javascript +getPdf417MacroTerminator() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417macrotimestamp/_index.md b/english/nodejs/pdf417parameters/getpdf417macrotimestamp/_index.md new file mode 100644 index 000000000..e2f6cfb4c --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417macrotimestamp/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417MacroTimeStamp" +linktitle: "getPdf417MacroTimeStamp" +articleTitle: "getPdf417MacroTimeStamp" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets macro Pdf417 barcode time stamp." +type: docs +weight: 410 +url: /nodejs/pdf417parameters/getpdf417macrotimestamp/ +--- +## getPdf417MacroTimeStamp() {#getpdf417macrotimestamp} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getMacroPdf417TimeStamp(). + +Gets macro Pdf417 barcode time stamp. + +```javascript +getPdf417MacroTimeStamp() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getpdf417truncate/_index.md b/english/nodejs/pdf417parameters/getpdf417truncate/_index.md new file mode 100644 index 000000000..5731c9cbb --- /dev/null +++ b/english/nodejs/pdf417parameters/getpdf417truncate/_index.md @@ -0,0 +1,25 @@ +--- +title: "Pdf417Parameters.getPdf417Truncate" +linktitle: "getPdf417Truncate" +articleTitle: "getPdf417Truncate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Whether Pdf417 symbology type of BarCode is truncated (to reduce space)." +type: docs +weight: 150 +url: /nodejs/pdf417parameters/getpdf417truncate/ +--- +## getPdf417Truncate() {#getpdf417truncate} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getTruncate(). + +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). + +```javascript +getPdf417Truncate() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getrows/_index.md b/english/nodejs/pdf417parameters/getrows/_index.md new file mode 100644 index 000000000..c70cd17fa --- /dev/null +++ b/english/nodejs/pdf417parameters/getrows/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getRows" +linktitle: "getRows" +articleTitle: "getRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 190 +url: /nodejs/pdf417parameters/getrows/ +--- +## getRows() {#getrows} + +Rows count. + +```javascript +getRows() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/getstructuredappendmodebarcodeid/_index.md b/english/nodejs/pdf417parameters/getstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..7eaaa0ccb --- /dev/null +++ b/english/nodejs/pdf417parameters/getstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getStructuredAppendModeBarcodeId" +linktitle: "getStructuredAppendModeBarcodeId" +articleTitle: "getStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 730 +url: /nodejs/pdf417parameters/getstructuredappendmodebarcodeid/ +--- +## getStructuredAppendModeBarcodeId() {#getstructuredappendmodebarcodeid} + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +getStructuredAppendModeBarcodeId() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/gettruncate/_index.md b/english/nodejs/pdf417parameters/gettruncate/_index.md new file mode 100644 index 000000000..7d7d2164a --- /dev/null +++ b/english/nodejs/pdf417parameters/gettruncate/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.getTruncate" +linktitle: "getTruncate" +articleTitle: "getTruncate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed ..." +type: docs +weight: 130 +url: /nodejs/pdf417parameters/gettruncate/ +--- +## getTruncate() {#gettruncate} + +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. + +```javascript +getTruncate() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/init/_index.md b/english/nodejs/pdf417parameters/init/_index.md new file mode 100644 index 000000000..cdc639e76 --- /dev/null +++ b/english/nodejs/pdf417parameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Pdf417Parameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/pdf417parameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/iscode128emulation/_index.md b/english/nodejs/pdf417parameters/iscode128emulation/_index.md new file mode 100644 index 000000000..93c5904fa --- /dev/null +++ b/english/nodejs/pdf417parameters/iscode128emulation/_index.md @@ -0,0 +1,69 @@ +--- +title: "Pdf417Parameters.isCode128Emulation" +linktitle: "isCode128Emulation" +articleTitle: "isCode128Emulation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 whic..." +type: docs +weight: 790 +url: /nodejs/pdf417parameters/iscode128emulation/ +--- +## isCode128Emulation() {#iscode128emulation} + +Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 + +```javascript +isCode128Emulation() +``` + +## Examples + +# Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "a\u001d1222322323"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} +``` + +# Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "99\u001d1222322323"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} +``` + +# Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/islinked/_index.md b/english/nodejs/pdf417parameters/islinked/_index.md new file mode 100644 index 000000000..c488d95ce --- /dev/null +++ b/english/nodejs/pdf417parameters/islinked/_index.md @@ -0,0 +1,153 @@ +--- +title: "Pdf417Parameters.isLinked" +linktitle: "isLinked" +articleTitle: "isLinked" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN..." +type: docs +weight: 770 +url: /nodejs/pdf417parameters/islinked/ +--- +## isLinked() {#islinked} + +Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC + +```javascript +isLinked() +``` + +## Examples + +# Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(11)991231(10)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(13)991231(21)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(15)991231(10)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(17)991231(21)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 914 with AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(10)ABCD12345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 915 with AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(21)ABCD12345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked modes 906, 907 with any AI + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(240)123456789012345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "ABCDE123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes Pdf417 NON EAN.UCC Linked mode 918 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.PDF_417, "ABCDE123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/isreaderinitialization/_index.md b/english/nodejs/pdf417parameters/isreaderinitialization/_index.md new file mode 100644 index 000000000..174c40d22 --- /dev/null +++ b/english/nodejs/pdf417parameters/isreaderinitialization/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.isReaderInitialization" +linktitle: "isReaderInitialization" +articleTitle: "isReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization." +type: docs +weight: 710 +url: /nodejs/pdf417parameters/isreaderinitialization/ +--- +## isReaderInitialization() {#isreaderinitialization} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization + +```javascript +isReaderInitialization() +``` + +### Return Value + +boolean + +value + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/pdf417parameters/_index.md b/english/nodejs/pdf417parameters/pdf417parameters/_index.md new file mode 100644 index 000000000..47ca478dd --- /dev/null +++ b/english/nodejs/pdf417parameters/pdf417parameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters" +linktitle: "Pdf417Parameters" +articleTitle: "Pdf417Parameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Pdf417Parameters class." +type: docs +weight: 10 +url: /nodejs/pdf417parameters/pdf417parameters/ +--- +## Pdf417Parameters(object) {#constructor} + +Initializes a new instance of the Pdf417Parameters class. + +```javascript +public Pdf417Parameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setaspectratio/_index.md b/english/nodejs/pdf417parameters/setaspectratio/_index.md new file mode 100644 index 000000000..aeba46e7d --- /dev/null +++ b/english/nodejs/pdf417parameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 220 +url: /nodejs/pdf417parameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setcode128emulation/_index.md b/english/nodejs/pdf417parameters/setcode128emulation/_index.md new file mode 100644 index 000000000..78d7ae11c --- /dev/null +++ b/english/nodejs/pdf417parameters/setcode128emulation/_index.md @@ -0,0 +1,73 @@ +--- +title: "Pdf417Parameters.setCode128Emulation" +linktitle: "setCode128Emulation" +articleTitle: "setCode128Emulation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 whic..." +type: docs +weight: 800 +url: /nodejs/pdf417parameters/setcode128emulation/ +--- +## setCode128Emulation(object) {#setcode128emulation} + +Can be used only with MicroPdf417 and encodes Code 128 emulation modes Can encode FNC1 in second position modes 908 and 909, also can encode 910 and 911 which just indicate that recognized MicroPdf417 can be interpret as Code 128 + +```javascript +setCode128Emulation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +# Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "a", mode 908. + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "a\u001d1222322323"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} +``` + +# Encodes MicroPdf417 in Code 128 emulation mode with FNC1 in second position and Application Indicator "99", mode 909. + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "99\u001d1222322323"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} +``` + +# Encodes MicroPdf417 in Code 128 emulation mode, modes 910, 911 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setCode128Emulation(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsCode128Emulation:" + result.getExtended().getPdf417().isCode128Emulation()); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setcolumns/_index.md b/english/nodejs/pdf417parameters/setcolumns/_index.md new file mode 100644 index 000000000..487666cf5 --- /dev/null +++ b/english/nodejs/pdf417parameters/setcolumns/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setColumns" +linktitle: "setColumns" +articleTitle: "setColumns" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Columns count." +type: docs +weight: 180 +url: /nodejs/pdf417parameters/setcolumns/ +--- +## setColumns(object) {#setcolumns} + +Columns count. + +```javascript +setColumns(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/seteciencoding/_index.md b/english/nodejs/pdf417parameters/seteciencoding/_index.md new file mode 100644 index 000000000..73d20f229 --- /dev/null +++ b/english/nodejs/pdf417parameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not..." +type: docs +weight: 80 +url: /nodejs/pdf417parameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Not applied for Macro PDF417 text fields. Current implementation consists all well known charset encodings. + +```javascript +setECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setencodemode/_index.md b/english/nodejs/pdf417parameters/setencodemode/_index.md new file mode 100644 index 000000000..d6d4f9d1c --- /dev/null +++ b/english/nodejs/pdf417parameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies Pdf417 encode mode. Default value: Auto." +type: docs +weight: 600 +url: /nodejs/pdf417parameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +Identifies Pdf417 encode mode. Default value: Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/seterrorlevel/_index.md b/english/nodejs/pdf417parameters/seterrorlevel/_index.md new file mode 100644 index 000000000..a1ca6e686 --- /dev/null +++ b/english/nodejs/pdf417parameters/seterrorlevel/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setErrorLevel" +linktitle: "setErrorLevel" +articleTitle: "setErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error ..." +type: docs +weight: 100 +url: /nodejs/pdf417parameters/seterrorlevel/ +--- +## setErrorLevel(object) {#seterrorlevel} + +Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +```javascript +setErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Pdf417 symbology type of BarCode's error correction level +ranging from level0 to level8, level0 means no error correction info, +level8 means best error correction which means a larger picture. | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setlinked/_index.md b/english/nodejs/pdf417parameters/setlinked/_index.md new file mode 100644 index 000000000..f856f24bf --- /dev/null +++ b/english/nodejs/pdf417parameters/setlinked/_index.md @@ -0,0 +1,157 @@ +--- +title: "Pdf417Parameters.setLinked" +linktitle: "setLinked" +articleTitle: "setLinked" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN..." +type: docs +weight: 780 +url: /nodejs/pdf417parameters/setlinked/ +--- +## setLinked(object) {#setlinked} + +Defines linked modes with GS1MicroPdf417, MicroPdf417 and Pdf417 barcodes With GS1MicroPdf417 symbology encodes 906, 907, 912, 913, 914, 915 “Linked” UCC/EAN-128 modes With MicroPdf417 and Pdf417 symbologies encodes 918 linkage flag to associated linear component other than an EAN.UCC + +```javascript +setLinked(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +# Encodes GS1 Linked mode 912 with date field AI 11 (Production date) and AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(11)991231(10)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 13 (Packaging date) and AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(13)991231(21)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 15 (Sell-by date) and AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(15)991231(10)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 912 with date field AI 17 (Expiration date) and AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(17)991231(21)ABCD"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log(result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 914 with AI 10 (Lot number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(10)ABCD12345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked mode 915 with AI 21 (Serial number) + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(21)ABCD12345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes GS1 Linked modes 906, 907 with any AI + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.GS_1_MICRO_PDF_417, "(240)123456789012345"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.GS_1_MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes MicroPdf417 NON EAN.UCC Linked mode 918 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "ABCDE123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} +``` + +# Encodes Pdf417 NON EAN.UCC Linked mode 918 + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.PDF_417, "ABCDE123456789012345678"); +generator.getParameters().getBarcode().getPdf417().setLinked(true); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +result.getCodeText() + " IsLinked:" + result.getExtended().getPdf417().isLinked(); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacrocharacters/_index.md b/english/nodejs/pdf417parameters/setmacrocharacters/_index.md new file mode 100644 index 000000000..75cf96444 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacrocharacters/_index.md @@ -0,0 +1,59 @@ +--- +title: "Pdf417Parameters.setMacroCharacters" +linktitle: "setMacroCharacters" +articleTitle: "setMacroCharacters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroP..." +type: docs +weight: 760 +url: /nodejs/pdf417parameters/setmacrocharacters/ +--- +## setMacroCharacters(object) {#setmacrocharacters} + +Macro Characters 05 and 06 values are used to obtain more compact encoding in special modes. Can be used only with MicroPdf417 and encodes 916 and 917 MicroPdf417 modes Default value: MacroCharacters.None. + +```javascript +setMacroCharacters(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +## Examples + +# Encodes MicroPdf417 with 05 Macro the string: "[)>\u001E05\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_05); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} +``` + +# Encodes MicroPdf417 with 06 Macro the string: "[)>\u001E06\u001Dabcde1234\u001E\u0004" + +```javascript +let generator = new BarcodeGenerator(EncodeTypes.MICRO_PDF_417, "abcde1234"); +generator.getParameters().getBarcode().getPdf417().setMacroCharacters(MacroCharacter.MACRO_06); +let reader = new BarCodeReader(generator.generateBarCodeImage(BarcodeImageFormat.PNG), null, DecodeType.MICRO_PDF_417); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log( result.getCodeText()); +} + +

+``` + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417addressee/_index.md b/english/nodejs/pdf417parameters/setmacropdf417addressee/_index.md new file mode 100644 index 000000000..e160c4527 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417addressee/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417Addressee" +linktitle: "setMacroPdf417Addressee" +articleTitle: "setMacroPdf417Addressee" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode)." +type: docs +weight: 480 +url: /nodejs/pdf417parameters/setmacropdf417addressee/ +--- +## setMacroPdf417Addressee(object) {#setmacropdf417addressee} + +MacroPdf417 barcode addressee name (optional field). MicroPDF417 barcode addressee name (optional field for Structured Append mode) + +```javascript +setMacroPdf417Addressee(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417checksum/_index.md b/english/nodejs/pdf417parameters/setmacropdf417checksum/_index.md new file mode 100644 index 000000000..fdac6b99e --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417checksum/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417Checksum" +linktitle: "setMacroPdf417Checksum" +articleTitle: "setMacroPdf417Checksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value..." +type: docs +weight: 560 +url: /nodejs/pdf417parameters/setmacropdf417checksum/ +--- +## setMacroPdf417Checksum(object) {#setmacropdf417checksum} + +MacroPdf417 barcode checksum (optional field). MicroPDF417 barcode checksum (optional field for Structured Append mode) The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. x^16 + x^12 + x^5 + 1 + +```javascript +setMacroPdf417Checksum(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417eciencoding/_index.md b/english/nodejs/pdf417parameters/setmacropdf417eciencoding/_index.md new file mode 100644 index 000000000..57f2cdd56 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417eciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417ECIEncoding" +linktitle: "setMacroPdf417ECIEncoding" +articleTitle: "setMacroPdf417ECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields." +type: docs +weight: 640 +url: /nodejs/pdf417parameters/setmacropdf417eciencoding/ +--- +## setMacroPdf417ECIEncoding(object) {#setmacropdf417eciencoding} + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +```javascript +setMacroPdf417ECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417fileid/_index.md b/english/nodejs/pdf417parameters/setmacropdf417fileid/_index.md new file mode 100644 index 000000000..77aac73c5 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417fileid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417FileID" +linktitle: "setMacroPdf417FileID" +articleTitle: "setMacroPdf417FileID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode)." +type: docs +weight: 240 +url: /nodejs/pdf417parameters/setmacropdf417fileid/ +--- +## setMacroPdf417FileID(object) {#setmacropdf417fileid} + +MacroPdf417 barcode's file ID (Required field). MicroPDF417 barcode's file ID (Required field for Structured Append mode) + +```javascript +setMacroPdf417FileID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417filename/_index.md b/english/nodejs/pdf417parameters/setmacropdf417filename/_index.md new file mode 100644 index 000000000..7e843483f --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417filename/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417FileName" +linktitle: "setMacroPdf417FileName" +articleTitle: "setMacroPdf417FileName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode)." +type: docs +weight: 360 +url: /nodejs/pdf417parameters/setmacropdf417filename/ +--- +## setMacroPdf417FileName(object) {#setmacropdf417filename} + +MacroPdf417 barcode file name (optional field). MicroPDF417 barcode file name (optional field for Structured Append mode) + +```javascript +setMacroPdf417FileName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417filesize/_index.md b/english/nodejs/pdf417parameters/setmacropdf417filesize/_index.md new file mode 100644 index 000000000..c473be4ff --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417filesize/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417FileSize" +linktitle: "setMacroPdf417FileSize" +articleTitle: "setMacroPdf417FileSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of t..." +type: docs +weight: 520 +url: /nodejs/pdf417parameters/setmacropdf417filesize/ +--- +## setMacroPdf417FileSize(object) {#setmacropdf417filesize} + +MacroPdf417 file size (optional field). MicroPDF417 file size (optional field for Structured Append mode) The file size field contains the size in bytes of the entire source file. + +```javascript +setMacroPdf417FileSize(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417segmentid/_index.md b/english/nodejs/pdf417parameters/setmacropdf417segmentid/_index.md new file mode 100644 index 000000000..e76d6f9fa --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417segmentid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417SegmentID" +linktitle: "setMacroPdf417SegmentID" +articleTitle: "setMacroPdf417SegmentID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Struc..." +type: docs +weight: 280 +url: /nodejs/pdf417parameters/setmacropdf417segmentid/ +--- +## setMacroPdf417SegmentID(object) {#setmacropdf417segmentid} + +MacroPdf417 barcode's segment ID (Required field), which starts from 0, to MacroSegmentsCount - 1. MicroPDF417 barcode's segment ID (Required field for Structured Append mode) + +```javascript +setMacroPdf417SegmentID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417segmentscount/_index.md b/english/nodejs/pdf417parameters/setmacropdf417segmentscount/_index.md new file mode 100644 index 000000000..304bc0e09 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417segmentscount/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417SegmentsCount" +linktitle: "setMacroPdf417SegmentsCount" +articleTitle: "setMacroPdf417SegmentsCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode)." +type: docs +weight: 330 +url: /nodejs/pdf417parameters/setmacropdf417segmentscount/ +--- +## setMacroPdf417SegmentsCount(object) {#setmacropdf417segmentscount} + +MacroPdf417 barcode segments count (optional field). MicroPDF417 barcode segments count (optional field for Structured Append mode) + +```javascript +setMacroPdf417SegmentsCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417sender/_index.md b/english/nodejs/pdf417parameters/setmacropdf417sender/_index.md new file mode 100644 index 000000000..481afbdd2 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417sender/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417Sender" +linktitle: "setMacroPdf417Sender" +articleTitle: "setMacroPdf417Sender" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode)." +type: docs +weight: 440 +url: /nodejs/pdf417parameters/setmacropdf417sender/ +--- +## setMacroPdf417Sender(object) {#setmacropdf417sender} + +MacroPdf417 barcode sender name (optional field). MicroPDF417 barcode sender name (optional field for Structured Append mode) + +```javascript +setMacroPdf417Sender(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417terminator/_index.md b/english/nodejs/pdf417parameters/setmacropdf417terminator/_index.md new file mode 100644 index 000000000..6abf230da --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417terminator/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417Terminator" +linktitle: "setMacroPdf417Terminator" +articleTitle: "setMacroPdf417Terminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417." +type: docs +weight: 680 +url: /nodejs/pdf417parameters/setmacropdf417terminator/ +--- +## setMacroPdf417Terminator(object) {#setmacropdf417terminator} + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +```javascript +setMacroPdf417Terminator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setmacropdf417timestamp/_index.md b/english/nodejs/pdf417parameters/setmacropdf417timestamp/_index.md new file mode 100644 index 000000000..d7e2f8613 --- /dev/null +++ b/english/nodejs/pdf417parameters/setmacropdf417timestamp/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setMacroPdf417TimeStamp" +linktitle: "setMacroPdf417TimeStamp" +articleTitle: "setMacroPdf417TimeStamp" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode)." +type: docs +weight: 400 +url: /nodejs/pdf417parameters/setmacropdf417timestamp/ +--- +## setMacroPdf417TimeStamp(object) {#setmacropdf417timestamp} + +MacroPdf417 barcode time stamp (optional field). MicroPDF417 barcode time stamp (optional field for Structured Append mode) + +```javascript +setMacroPdf417TimeStamp(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417compactionmode/_index.md b/english/nodejs/pdf417parameters/setpdf417compactionmode/_index.md new file mode 100644 index 000000000..9ecb75c54 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417compactionmode/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setPdf417CompactionMode" +linktitle: "setPdf417CompactionMode" +articleTitle: "setPdf417CompactionMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO." +type: docs +weight: 40 +url: /nodejs/pdf417parameters/setpdf417compactionmode/ +--- +## setPdf417CompactionMode(object) {#setpdf417compactionmode} + +Pdf417 symbology type of BarCode's compaction mode. Default value: Pdf417CompactionMode.AUTO. + +```javascript +setPdf417CompactionMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417eciencoding/_index.md b/english/nodejs/pdf417parameters/setpdf417eciencoding/_index.md new file mode 100644 index 000000000..f8d1269a8 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417eciencoding/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417ECIEncoding" +linktitle: "setPdf417ECIEncoding" +articleTitle: "setPdf417ECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 620 +url: /nodejs/pdf417parameters/setpdf417eciencoding/ +--- +## setPdf417ECIEncoding(object) {#setpdf417eciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +setPdf417ECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417encodemode/_index.md b/english/nodejs/pdf417parameters/setpdf417encodemode/_index.md new file mode 100644 index 000000000..12a4ce0b2 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417encodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417EncodeMode" +linktitle: "setPdf417EncodeMode" +articleTitle: "setPdf417EncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies Pdf417 encode mode. Default value: Auto." +type: docs +weight: 60 +url: /nodejs/pdf417parameters/setpdf417encodemode/ +--- +## setPdf417EncodeMode(object) {#setpdf417encodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +Identifies Pdf417 encode mode. Default value: Auto. + +```javascript +setPdf417EncodeMode(pdf417EncodeMode) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| pdf417EncodeMode | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417errorlevel/_index.md b/english/nodejs/pdf417parameters/setpdf417errorlevel/_index.md new file mode 100644 index 000000000..9c2aab9f3 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417errorlevel/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417ErrorLevel" +linktitle: "setPdf417ErrorLevel" +articleTitle: "setPdf417ErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error ..." +type: docs +weight: 120 +url: /nodejs/pdf417parameters/setpdf417errorlevel/ +--- +## setPdf417ErrorLevel(object) {#setpdf417errorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel(). + +Sets Pdf417 symbology type of BarCode's error correction level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture. + +```javascript +setPdf417ErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macroaddressee/_index.md b/english/nodejs/pdf417parameters/setpdf417macroaddressee/_index.md new file mode 100644 index 000000000..4e3f2083d --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macroaddressee/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroAddressee" +linktitle: "setPdf417MacroAddressee" +articleTitle: "setPdf417MacroAddressee" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode addressee name." +type: docs +weight: 500 +url: /nodejs/pdf417parameters/setpdf417macroaddressee/ +--- +## setPdf417MacroAddressee(object) {#setpdf417macroaddressee} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Addressee(). + +Sets macro Pdf417 barcode addressee name. + +```javascript +setPdf417MacroAddressee(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrochecksum/_index.md b/english/nodejs/pdf417parameters/setpdf417macrochecksum/_index.md new file mode 100644 index 000000000..c9efbf6b2 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrochecksum/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroChecksum" +linktitle: "setPdf417MacroChecksum" +articleTitle: "setPdf417MacroChecksum" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode checksum." +type: docs +weight: 580 +url: /nodejs/pdf417parameters/setpdf417macrochecksum/ +--- +## setPdf417MacroChecksum(object) {#setpdf417macrochecksum} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Checksum(). + +Sets macro Pdf417 barcode checksum. + +```javascript +setPdf417MacroChecksum(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The checksum field contains the value of the 16-bit (2 bytes) CRC checksum using the CCITT-16 polynomial. | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macroeciencoding/_index.md b/english/nodejs/pdf417parameters/setpdf417macroeciencoding/_index.md new file mode 100644 index 000000000..2e0ef76c9 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macroeciencoding/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroECIEncoding" +linktitle: "setPdf417MacroECIEncoding" +articleTitle: "setPdf417MacroECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields." +type: docs +weight: 660 +url: /nodejs/pdf417parameters/setpdf417macroeciencoding/ +--- +## setPdf417MacroECIEncoding(object) {#setpdf417macroeciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417ECIEncoding(). + +Extended Channel Interpretation Identifiers. Applies for Macro PDF417 text fields. + +```javascript +setPdf417MacroECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrofileid/_index.md b/english/nodejs/pdf417parameters/setpdf417macrofileid/_index.md new file mode 100644 index 000000000..90c678e11 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrofileid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroFileID" +linktitle: "setPdf417MacroFileID" +articleTitle: "setPdf417MacroFileID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode's file ID. Used for MacroPdf417." +type: docs +weight: 260 +url: /nodejs/pdf417parameters/setpdf417macrofileid/ +--- +## setPdf417MacroFileID(object) {#setpdf417macrofileid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileID(). + +Sets macro Pdf417 barcode's file ID. Used for MacroPdf417. + +```javascript +setPdf417MacroFileID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrofilename/_index.md b/english/nodejs/pdf417parameters/setpdf417macrofilename/_index.md new file mode 100644 index 000000000..7764ca207 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrofilename/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroFileName" +linktitle: "setPdf417MacroFileName" +articleTitle: "setPdf417MacroFileName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode file name." +type: docs +weight: 380 +url: /nodejs/pdf417parameters/setpdf417macrofilename/ +--- +## setPdf417MacroFileName(object) {#setpdf417macrofilename} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileName(). + +Sets macro Pdf417 barcode file name. + +```javascript +setPdf417MacroFileName(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrofilesize/_index.md b/english/nodejs/pdf417parameters/setpdf417macrofilesize/_index.md new file mode 100644 index 000000000..5ff892fd0 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrofilesize/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroFileSize" +linktitle: "setPdf417MacroFileSize" +articleTitle: "setPdf417MacroFileSize" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 file size." +type: docs +weight: 540 +url: /nodejs/pdf417parameters/setpdf417macrofilesize/ +--- +## setPdf417MacroFileSize(object) {#setpdf417macrofilesize} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417FileSize(). + +Sets macro Pdf417 file size. + +```javascript +setPdf417MacroFileSize(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The file size field contains the size in bytes of the entire source file. | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrosegmentid/_index.md b/english/nodejs/pdf417parameters/setpdf417macrosegmentid/_index.md new file mode 100644 index 000000000..9925b60b9 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrosegmentid/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroSegmentID" +linktitle: "setPdf417MacroSegmentID" +articleTitle: "setPdf417MacroSegmentID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1." +type: docs +weight: 300 +url: /nodejs/pdf417parameters/setpdf417macrosegmentid/ +--- +## setPdf417MacroSegmentID(object) {#setpdf417macrosegmentid} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417SegmentID(). + +Sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1. + +```javascript +setPdf417MacroSegmentID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrosegmentscount/_index.md b/english/nodejs/pdf417parameters/setpdf417macrosegmentscount/_index.md new file mode 100644 index 000000000..caf7670ec --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrosegmentscount/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroSegmentsCount" +linktitle: "setPdf417MacroSegmentsCount" +articleTitle: "setPdf417MacroSegmentsCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode segments count." +type: docs +weight: 340 +url: /nodejs/pdf417parameters/setpdf417macrosegmentscount/ +--- +## setPdf417MacroSegmentsCount(object) {#setpdf417macrosegmentscount} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417SegmentsCount(). + +Sets macro Pdf417 barcode segments count. + +```javascript +setPdf417MacroSegmentsCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrosender/_index.md b/english/nodejs/pdf417parameters/setpdf417macrosender/_index.md new file mode 100644 index 000000000..d7ae73e55 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrosender/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroSender" +linktitle: "setPdf417MacroSender" +articleTitle: "setPdf417MacroSender" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode sender name." +type: docs +weight: 460 +url: /nodejs/pdf417parameters/setpdf417macrosender/ +--- +## setPdf417MacroSender(object) {#setpdf417macrosender} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Sender(). + +Sets macro Pdf417 barcode sender name. + +```javascript +setPdf417MacroSender(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macroterminator/_index.md b/english/nodejs/pdf417parameters/setpdf417macroterminator/_index.md new file mode 100644 index 000000000..fa7725167 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macroterminator/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroTerminator" +linktitle: "setPdf417MacroTerminator" +articleTitle: "setPdf417MacroTerminator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417." +type: docs +weight: 700 +url: /nodejs/pdf417parameters/setpdf417macroterminator/ +--- +## setPdf417MacroTerminator(object) {#setpdf417macroterminator} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417Terminator(). + +Used to tell the encoder whether to add Macro PDF417 Terminator (codeword 922) to the segment. Applied only for Macro PDF417. + +```javascript +setPdf417MacroTerminator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417macrotimestamp/_index.md b/english/nodejs/pdf417parameters/setpdf417macrotimestamp/_index.md new file mode 100644 index 000000000..16700d291 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417macrotimestamp/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417MacroTimeStamp" +linktitle: "setPdf417MacroTimeStamp" +articleTitle: "setPdf417MacroTimeStamp" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets macro Pdf417 barcode time stamp." +type: docs +weight: 420 +url: /nodejs/pdf417parameters/setpdf417macrotimestamp/ +--- +## setPdf417MacroTimeStamp(object) {#setpdf417macrotimestamp} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setMacroPdf417TimeStamp(). + +Sets macro Pdf417 barcode time stamp. + +```javascript +setPdf417MacroTimeStamp(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setpdf417truncate/_index.md b/english/nodejs/pdf417parameters/setpdf417truncate/_index.md new file mode 100644 index 000000000..97872fca5 --- /dev/null +++ b/english/nodejs/pdf417parameters/setpdf417truncate/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.setPdf417Truncate" +linktitle: "setPdf417Truncate" +articleTitle: "setPdf417Truncate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Whether Pdf417 symbology type of BarCode is truncated (to reduce space)." +type: docs +weight: 160 +url: /nodejs/pdf417parameters/setpdf417truncate/ +--- +## setPdf417Truncate(object) {#setpdf417truncate} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setTruncate(). + +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). + +```javascript +setPdf417Truncate(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setreaderinitialization/_index.md b/english/nodejs/pdf417parameters/setreaderinitialization/_index.md new file mode 100644 index 000000000..98c405bb5 --- /dev/null +++ b/english/nodejs/pdf417parameters/setreaderinitialization/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setReaderInitialization" +linktitle: "setReaderInitialization" +articleTitle: "setReaderInitialization" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization." +type: docs +weight: 720 +url: /nodejs/pdf417parameters/setreaderinitialization/ +--- +## setReaderInitialization(object) {#setreaderinitialization} + +Used to instruct the reader to interpret the data contained within the symbol as programming for reader initialization + +```javascript +setReaderInitialization(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setrows/_index.md b/english/nodejs/pdf417parameters/setrows/_index.md new file mode 100644 index 000000000..3d2224be5 --- /dev/null +++ b/english/nodejs/pdf417parameters/setrows/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setRows" +linktitle: "setRows" +articleTitle: "setRows" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Rows count." +type: docs +weight: 200 +url: /nodejs/pdf417parameters/setrows/ +--- +## setRows(object) {#setrows} + +Rows count. + +```javascript +setRows(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/setstructuredappendmodebarcodeid/_index.md b/english/nodejs/pdf417parameters/setstructuredappendmodebarcodeid/_index.md new file mode 100644 index 000000000..d403a8e39 --- /dev/null +++ b/english/nodejs/pdf417parameters/setstructuredappendmodebarcodeid/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setStructuredAppendModeBarcodeId" +linktitle: "setStructuredAppendModeBarcodeId" +articleTitle: "setStructuredAppendModeBarcodeId" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1." +type: docs +weight: 740 +url: /nodejs/pdf417parameters/setstructuredappendmodebarcodeid/ +--- +## setStructuredAppendModeBarcodeId(object) {#setstructuredappendmodebarcodeid} + +Identifies the ID of the DotCode structured append mode barcode. ID starts from 1 and must be less or equal to barcodes count. Default value is -1. + +```javascript +setStructuredAppendModeBarcodeId(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/settruncate/_index.md b/english/nodejs/pdf417parameters/settruncate/_index.md new file mode 100644 index 000000000..8ac5bf7f7 --- /dev/null +++ b/english/nodejs/pdf417parameters/settruncate/_index.md @@ -0,0 +1,27 @@ +--- +title: "Pdf417Parameters.setTruncate" +linktitle: "setTruncate" +articleTitle: "setTruncate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed ..." +type: docs +weight: 140 +url: /nodejs/pdf417parameters/settruncate/ +--- +## setTruncate(object) {#settruncate} + +Whether Pdf417 symbology type of BarCode is truncated (to reduce space). Also known as CompactPDF417. Rigth row indicator and right stop pattern are removed in this mode. + +```javascript +setTruncate(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdf417parameters/tostring/_index.md b/english/nodejs/pdf417parameters/tostring/_index.md new file mode 100644 index 000000000..5b06e45c1 --- /dev/null +++ b/english/nodejs/pdf417parameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Pdf417Parameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Pdf417Parameters." +type: docs +weight: 810 +url: /nodejs/pdf417parameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Pdf417Parameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Pdf417Parameters. + +### See Also + +* class [Pdf417Parameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/_index.md b/english/nodejs/pdfparameters/_index.md new file mode 100644 index 000000000..690be5492 --- /dev/null +++ b/english/nodejs/pdfparameters/_index.md @@ -0,0 +1,46 @@ +--- +title: "PdfParameters Class" +linktitle: "PdfParameters" +articleTitle: "PdfParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "PDF parameters wrapper. Expects an underlying `javaClass` instance that provides the corresponding getter/setter methods returning/accepting CMYK strings lik..." +type: docs +weight: 820 +url: /nodejs/pdfparameters/ +--- +## PdfParameters class + +PDF parameters wrapper. Expects an underlying `javaClass` instance that provides the corresponding getter/setter methods returning/accepting CMYK strings like "30_100_0_30" or `null`. + +```javascript +public class PdfParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [PdfParameters](./pdfparameters/#constructor)(*object*) | Initializes a new instance of the PdfParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getCMYKBackColor](./getcmykbackcolor/) | CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. | +| [getCMYKBarColor](./getcmykbarcolor/) | CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. | +| [getCMYKCaptionAboveColor](./getcmykcaptionabovecolor/) | CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. | +| [getCMYKCaptionBelowColor](./getcmykcaptionbelowcolor/) | CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. | +| [getCMYKCodetextColor](./getcmykcodetextcolor/) | CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. | +| [init](./init/) | no-op initializer. | +| [isTextAsPath](./istextaspath/) | Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. | +| [setCMYKBackColor](./setcmykbackcolor/)(*object*) | CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. | +| [setCMYKBarColor](./setcmykbarcolor/)(*object*) | CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. | +| [setCMYKCaptionAboveColor](./setcmykcaptionabovecolor/)(*object*) | CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. | +| [setCMYKCaptionBelowColor](./setcmykcaptionbelowcolor/)(*object*) | CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. | +| [setCMYKCodetextColor](./setcmykcodetextcolor/)(*object*) | CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. | +| [setTextAsPath](./settextaspath/)(*object*) | Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/pdfparameters/getcmykbackcolor/_index.md b/english/nodejs/pdfparameters/getcmykbackcolor/_index.md new file mode 100644 index 000000000..681c054f5 --- /dev/null +++ b/english/nodejs/pdfparameters/getcmykbackcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.getCMYKBackColor" +linktitle: "getCMYKBackColor" +articleTitle: "getCMYKBackColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 50 +url: /nodejs/pdfparameters/getcmykbackcolor/ +--- +## getCMYKBackColor() {#getcmykbackcolor} + +CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +getCMYKBackColor() +``` + +### Return Value + +CMYKColor|null + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/getcmykbarcolor/_index.md b/english/nodejs/pdfparameters/getcmykbarcolor/_index.md new file mode 100644 index 000000000..80b511d2d --- /dev/null +++ b/english/nodejs/pdfparameters/getcmykbarcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.getCMYKBarColor" +linktitle: "getCMYKBarColor" +articleTitle: "getCMYKBarColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 30 +url: /nodejs/pdfparameters/getcmykbarcolor/ +--- +## getCMYKBarColor() {#getcmykbarcolor} + +CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +getCMYKBarColor() +``` + +### Return Value + +CMYKColor|null + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/getcmykcaptionabovecolor/_index.md b/english/nodejs/pdfparameters/getcmykcaptionabovecolor/_index.md new file mode 100644 index 000000000..308124726 --- /dev/null +++ b/english/nodejs/pdfparameters/getcmykcaptionabovecolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.getCMYKCaptionAboveColor" +linktitle: "getCMYKCaptionAboveColor" +articleTitle: "getCMYKCaptionAboveColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 90 +url: /nodejs/pdfparameters/getcmykcaptionabovecolor/ +--- +## getCMYKCaptionAboveColor() {#getcmykcaptionabovecolor} + +CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +getCMYKCaptionAboveColor() +``` + +### Return Value + +CMYKColor|null + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/getcmykcaptionbelowcolor/_index.md b/english/nodejs/pdfparameters/getcmykcaptionbelowcolor/_index.md new file mode 100644 index 000000000..d32020d86 --- /dev/null +++ b/english/nodejs/pdfparameters/getcmykcaptionbelowcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.getCMYKCaptionBelowColor" +linktitle: "getCMYKCaptionBelowColor" +articleTitle: "getCMYKCaptionBelowColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 110 +url: /nodejs/pdfparameters/getcmykcaptionbelowcolor/ +--- +## getCMYKCaptionBelowColor() {#getcmykcaptionbelowcolor} + +CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +getCMYKCaptionBelowColor() +``` + +### Return Value + +CMYKColor|null + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/getcmykcodetextcolor/_index.md b/english/nodejs/pdfparameters/getcmykcodetextcolor/_index.md new file mode 100644 index 000000000..dd0b8183e --- /dev/null +++ b/english/nodejs/pdfparameters/getcmykcodetextcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.getCMYKCodetextColor" +linktitle: "getCMYKCodetextColor" +articleTitle: "getCMYKCodetextColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 70 +url: /nodejs/pdfparameters/getcmykcodetextcolor/ +--- +## getCMYKCodetextColor() {#getcmykcodetextcolor} + +CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +getCMYKCodetextColor() +``` + +### Return Value + +CMYKColor|null + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/init/_index.md b/english/nodejs/pdfparameters/init/_index.md new file mode 100644 index 000000000..3631e4ca3 --- /dev/null +++ b/english/nodejs/pdfparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "PdfParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "no-op initializer." +type: docs +weight: 20 +url: /nodejs/pdfparameters/init/ +--- +## init() {#init} + +no-op initializer + +```javascript +init() +``` + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/istextaspath/_index.md b/english/nodejs/pdfparameters/istextaspath/_index.md new file mode 100644 index 000000000..b636220a1 --- /dev/null +++ b/english/nodejs/pdfparameters/istextaspath/_index.md @@ -0,0 +1,23 @@ +--- +title: "PdfParameters.isTextAsPath" +linktitle: "isTextAsPath" +articleTitle: "isTextAsPath" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Are paths used instead of text (use if Unicode characters are not displayed) Default value: false." +type: docs +weight: 130 +url: /nodejs/pdfparameters/istextaspath/ +--- +## isTextAsPath() {#istextaspath} + +Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. + +```javascript +isTextAsPath() +``` + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/pdfparameters/_index.md b/english/nodejs/pdfparameters/pdfparameters/_index.md new file mode 100644 index 000000000..236294cbe --- /dev/null +++ b/english/nodejs/pdfparameters/pdfparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters" +linktitle: "PdfParameters" +articleTitle: "PdfParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the PdfParameters class." +type: docs +weight: 10 +url: /nodejs/pdfparameters/pdfparameters/ +--- +## PdfParameters(object) {#constructor} + +Initializes a new instance of the PdfParameters class. + +```javascript +public PdfParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | – instance of the Java PdfParameters class | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/setcmykbackcolor/_index.md b/english/nodejs/pdfparameters/setcmykbackcolor/_index.md new file mode 100644 index 000000000..b4ba8b9a1 --- /dev/null +++ b/english/nodejs/pdfparameters/setcmykbackcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setCMYKBackColor" +linktitle: "setCMYKBackColor" +articleTitle: "setCMYKBackColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 60 +url: /nodejs/pdfparameters/setcmykbackcolor/ +--- +## setCMYKBackColor(object) {#setcmykbackcolor} + +CMYK back color value. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +setCMYKBackColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/setcmykbarcolor/_index.md b/english/nodejs/pdfparameters/setcmykbarcolor/_index.md new file mode 100644 index 000000000..5a4cf2a02 --- /dev/null +++ b/english/nodejs/pdfparameters/setcmykbarcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setCMYKBarColor" +linktitle: "setCMYKBarColor" +articleTitle: "setCMYKBarColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 40 +url: /nodejs/pdfparameters/setcmykbarcolor/ +--- +## setCMYKBarColor(object) {#setcmykbarcolor} + +CMYK color value of bar code. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +setCMYKBarColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/setcmykcaptionabovecolor/_index.md b/english/nodejs/pdfparameters/setcmykcaptionabovecolor/_index.md new file mode 100644 index 000000000..2fa09b21c --- /dev/null +++ b/english/nodejs/pdfparameters/setcmykcaptionabovecolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setCMYKCaptionAboveColor" +linktitle: "setCMYKCaptionAboveColor" +articleTitle: "setCMYKCaptionAboveColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 100 +url: /nodejs/pdfparameters/setcmykcaptionabovecolor/ +--- +## setCMYKCaptionAboveColor(object) {#setcmykcaptionabovecolor} + +CMYK color value of caption above. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +setCMYKCaptionAboveColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/setcmykcaptionbelowcolor/_index.md b/english/nodejs/pdfparameters/setcmykcaptionbelowcolor/_index.md new file mode 100644 index 000000000..72bae80d5 --- /dev/null +++ b/english/nodejs/pdfparameters/setcmykcaptionbelowcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setCMYKCaptionBelowColor" +linktitle: "setCMYKCaptionBelowColor" +articleTitle: "setCMYKCaptionBelowColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 120 +url: /nodejs/pdfparameters/setcmykcaptionbelowcolor/ +--- +## setCMYKCaptionBelowColor(object) {#setcmykcaptionbelowcolor} + +CMYK color value of caption below. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +setCMYKCaptionBelowColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/setcmykcodetextcolor/_index.md b/english/nodejs/pdfparameters/setcmykcodetextcolor/_index.md new file mode 100644 index 000000000..07ef77613 --- /dev/null +++ b/english/nodejs/pdfparameters/setcmykcodetextcolor/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setCMYKCodetextColor" +linktitle: "setCMYKCodetextColor" +articleTitle: "setCMYKCodetextColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used." +type: docs +weight: 80 +url: /nodejs/pdfparameters/setcmykcodetextcolor/ +--- +## setCMYKCodetextColor(object) {#setcmykcodetextcolor} + +CMYK color value of Codetext. Null means CMYK color is not used, instead normal RGB color is used. + +```javascript +setCMYKCodetextColor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/pdfparameters/settextaspath/_index.md b/english/nodejs/pdfparameters/settextaspath/_index.md new file mode 100644 index 000000000..831aad75f --- /dev/null +++ b/english/nodejs/pdfparameters/settextaspath/_index.md @@ -0,0 +1,27 @@ +--- +title: "PdfParameters.setTextAsPath" +linktitle: "setTextAsPath" +articleTitle: "setTextAsPath" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Are paths used instead of text (use if Unicode characters are not displayed) Default value: false." +type: docs +weight: 140 +url: /nodejs/pdfparameters/settextaspath/ +--- +## setTextAsPath(object) {#settextaspath} + +Are paths used instead of text (use if Unicode characters are not displayed) Default value: false. + +```javascript +setTextAsPath(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PdfParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/_index.md b/english/nodejs/postalparameters/_index.md new file mode 100644 index 000000000..5be13f643 --- /dev/null +++ b/english/nodejs/postalparameters/_index.md @@ -0,0 +1,45 @@ +--- +title: "PostalParameters Class" +linktitle: "PostalParameters" +articleTitle: "PostalParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Postal parameters. Used for Postnet, Planet." +type: docs +weight: 520 +url: /nodejs/postalparameters/ +--- +## PostalParameters class + +Postal parameters. Used for Postnet, Planet. + +```javascript +public class PostalParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [PostalParameters](./postalparameters/#constructor)(*object*) | Initializes a new instance of the PostalParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getPostalShortBarHeight](./getpostalshortbarheight/) | Short bar's height of Postal barcodes. | +| [getShortBarHeight](./getshortbarheight/) | Short bar's height of Postal barcodes. | +| [init](./init/) | | +| [setPostalShortBarHeight](./setpostalshortbarheight/)(*object*) | Short bar's height of Postal barcodes. | +| [setShortBarHeight](./setshortbarheight/)(*object*) | Short bar's height of Postal barcodes. | +| [toString](./tostring/) | Returns a human-readable string representation of this PostalParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [postalShortBarHeight](./postalshortbarheight/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/postalparameters/getpostalshortbarheight/_index.md b/english/nodejs/postalparameters/getpostalshortbarheight/_index.md new file mode 100644 index 000000000..27140832c --- /dev/null +++ b/english/nodejs/postalparameters/getpostalshortbarheight/_index.md @@ -0,0 +1,25 @@ +--- +title: "PostalParameters.getPostalShortBarHeight" +linktitle: "getPostalShortBarHeight" +articleTitle: "getPostalShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of Postal barcodes." +type: docs +weight: 60 +url: /nodejs/postalparameters/getpostalshortbarheight/ +--- +## getPostalShortBarHeight() {#getpostalshortbarheight} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getShortBarHeight(). + +Short bar's height of Postal barcodes. + +```javascript +getPostalShortBarHeight() +``` + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/getshortbarheight/_index.md b/english/nodejs/postalparameters/getshortbarheight/_index.md new file mode 100644 index 000000000..04fca4153 --- /dev/null +++ b/english/nodejs/postalparameters/getshortbarheight/_index.md @@ -0,0 +1,23 @@ +--- +title: "PostalParameters.getShortBarHeight" +linktitle: "getShortBarHeight" +articleTitle: "getShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of Postal barcodes." +type: docs +weight: 40 +url: /nodejs/postalparameters/getshortbarheight/ +--- +## getShortBarHeight() {#getshortbarheight} + +Short bar's height of Postal barcodes. + +```javascript +getShortBarHeight() +``` + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/init/_index.md b/english/nodejs/postalparameters/init/_index.md new file mode 100644 index 000000000..9d9b8ef87 --- /dev/null +++ b/english/nodejs/postalparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "PostalParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/postalparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/postalparameters/_index.md b/english/nodejs/postalparameters/postalparameters/_index.md new file mode 100644 index 000000000..1682703e1 --- /dev/null +++ b/english/nodejs/postalparameters/postalparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "PostalParameters" +linktitle: "PostalParameters" +articleTitle: "PostalParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the PostalParameters class." +type: docs +weight: 10 +url: /nodejs/postalparameters/postalparameters/ +--- +## PostalParameters(object) {#constructor} + +Initializes a new instance of the PostalParameters class. + +```javascript +public PostalParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/setpostalshortbarheight/_index.md b/english/nodejs/postalparameters/setpostalshortbarheight/_index.md new file mode 100644 index 000000000..96f0138ab --- /dev/null +++ b/english/nodejs/postalparameters/setpostalshortbarheight/_index.md @@ -0,0 +1,29 @@ +--- +title: "PostalParameters.setPostalShortBarHeight" +linktitle: "setPostalShortBarHeight" +articleTitle: "setPostalShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of Postal barcodes." +type: docs +weight: 70 +url: /nodejs/postalparameters/setpostalshortbarheight/ +--- +## setPostalShortBarHeight(object) {#setpostalshortbarheight} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setShortBarHeight(). + +Short bar's height of Postal barcodes. + +```javascript +setPostalShortBarHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/setshortbarheight/_index.md b/english/nodejs/postalparameters/setshortbarheight/_index.md new file mode 100644 index 000000000..3b0109ca6 --- /dev/null +++ b/english/nodejs/postalparameters/setshortbarheight/_index.md @@ -0,0 +1,27 @@ +--- +title: "PostalParameters.setShortBarHeight" +linktitle: "setShortBarHeight" +articleTitle: "setShortBarHeight" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Short bar's height of Postal barcodes." +type: docs +weight: 50 +url: /nodejs/postalparameters/setshortbarheight/ +--- +## setShortBarHeight(object) {#setshortbarheight} + +Short bar's height of Postal barcodes. + +```javascript +setShortBarHeight(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/postalparameters/tostring/_index.md b/english/nodejs/postalparameters/tostring/_index.md new file mode 100644 index 000000000..e6cc3acb3 --- /dev/null +++ b/english/nodejs/postalparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "PostalParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this PostalParameters." +type: docs +weight: 80 +url: /nodejs/postalparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this PostalParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this PostalParameters. + +### See Also + +* class [PostalParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/_index.md b/english/nodejs/primarydata/_index.md new file mode 100644 index 000000000..15b9f57c0 --- /dev/null +++ b/english/nodejs/primarydata/_index.md @@ -0,0 +1,51 @@ +--- +title: "PrimaryData Class" +linktitle: "PrimaryData" +articleTitle: "PrimaryData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for storing HIBC LIC primary data." +type: docs +weight: 280 +url: /nodejs/primarydata/ +--- +## PrimaryData class + +Class for storing HIBC LIC primary data. + +```javascript +public class PrimaryData : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [PrimaryData](./primarydata/#constructor) | Initializes a new instance of the PrimaryData class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified PrimaryData value. | +| [getLabelerIdentificationCode](./getlabeleridentificationcode/) | Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic. | +| [getProductOrCatalogNumber](./getproductorcatalognumber/) | Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length. | +| [getUnitOfMeasureID](./getunitofmeasureid/) | Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [parseFromString](./parsefromstring/)(*object*) | Instantiates primary data from string format according HIBC LIC specification. | +| [setLabelerIdentificationCode](./setlabeleridentificationcode/)(*object*) | Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic. | +| [setProductOrCatalogNumber](./setproductorcatalognumber/)(*object*) | Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length. | +| [setUnitOfMeasureID](./setunitofmeasureid/)(*object*) | Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9. | +| [toString](./tostring/) | Converts data to string format according HIBC LIC specification. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/primarydata/construct/_index.md b/english/nodejs/primarydata/construct/_index.md new file mode 100644 index 000000000..631ea9790 --- /dev/null +++ b/english/nodejs/primarydata/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "PrimaryData.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/primarydata/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(java_class) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| java_class | object | | + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/equals/_index.md b/english/nodejs/primarydata/equals/_index.md new file mode 100644 index 000000000..548b27e71 --- /dev/null +++ b/english/nodejs/primarydata/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "PrimaryData.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified PrimaryData value." +type: docs +weight: 120 +url: /nodejs/primarydata/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `PrimaryData` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/getlabeleridentificationcode/_index.md b/english/nodejs/primarydata/getlabeleridentificationcode/_index.md new file mode 100644 index 000000000..20849b8ae --- /dev/null +++ b/english/nodejs/primarydata/getlabeleridentificationcode/_index.md @@ -0,0 +1,23 @@ +--- +title: "PrimaryData.getLabelerIdentificationCode" +linktitle: "getLabelerIdentificationCode" +articleTitle: "getLabelerIdentificationCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic." +type: docs +weight: 40 +url: /nodejs/primarydata/getlabeleridentificationcode/ +--- +## getLabelerIdentificationCode() {#getlabeleridentificationcode} + +Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic. + +```javascript +getLabelerIdentificationCode() +``` + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/getproductorcatalognumber/_index.md b/english/nodejs/primarydata/getproductorcatalognumber/_index.md new file mode 100644 index 000000000..ad70d47dc --- /dev/null +++ b/english/nodejs/primarydata/getproductorcatalognumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "PrimaryData.getProductOrCatalogNumber" +linktitle: "getProductOrCatalogNumber" +articleTitle: "getProductOrCatalogNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length." +type: docs +weight: 60 +url: /nodejs/primarydata/getproductorcatalognumber/ +--- +## getProductOrCatalogNumber() {#getproductorcatalognumber} + +Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length. + +```javascript +getProductOrCatalogNumber() +``` + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/getunitofmeasureid/_index.md b/english/nodejs/primarydata/getunitofmeasureid/_index.md new file mode 100644 index 000000000..d3b207064 --- /dev/null +++ b/english/nodejs/primarydata/getunitofmeasureid/_index.md @@ -0,0 +1,23 @@ +--- +title: "PrimaryData.getUnitOfMeasureID" +linktitle: "getUnitOfMeasureID" +articleTitle: "getUnitOfMeasureID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9." +type: docs +weight: 80 +url: /nodejs/primarydata/getunitofmeasureid/ +--- +## getUnitOfMeasureID() {#getunitofmeasureid} + +Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9. + +```javascript +getUnitOfMeasureID() +``` + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/hashcode/_index.md b/english/nodejs/primarydata/hashcode/_index.md new file mode 100644 index 000000000..f17ad02eb --- /dev/null +++ b/english/nodejs/primarydata/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "PrimaryData.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 130 +url: /nodejs/primarydata/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/init/_index.md b/english/nodejs/primarydata/init/_index.md new file mode 100644 index 000000000..e328dbf5b --- /dev/null +++ b/english/nodejs/primarydata/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "PrimaryData.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 140 +url: /nodejs/primarydata/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/parsefromstring/_index.md b/english/nodejs/primarydata/parsefromstring/_index.md new file mode 100644 index 000000000..17179929a --- /dev/null +++ b/english/nodejs/primarydata/parsefromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "PrimaryData.parseFromString" +linktitle: "parseFromString" +articleTitle: "parseFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Instantiates primary data from string format according HIBC LIC specification." +type: docs +weight: 110 +url: /nodejs/primarydata/parsefromstring/ +--- +## parseFromString(object) {#parsefromstring} + +Instantiates primary data from string format according HIBC LIC specification. + +```javascript +parseFromString(primaryDataCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| primaryDataCodetext | object | Formatted string. | + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/primarydata/_index.md b/english/nodejs/primarydata/primarydata/_index.md new file mode 100644 index 000000000..9df02810f --- /dev/null +++ b/english/nodejs/primarydata/primarydata/_index.md @@ -0,0 +1,23 @@ +--- +title: "PrimaryData" +linktitle: "PrimaryData" +articleTitle: "PrimaryData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the PrimaryData class." +type: docs +weight: 10 +url: /nodejs/primarydata/primarydata/ +--- +## PrimaryData() {#constructor} + +Initializes a new instance of the PrimaryData class. + +```javascript +public PrimaryData() +``` + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/setlabeleridentificationcode/_index.md b/english/nodejs/primarydata/setlabeleridentificationcode/_index.md new file mode 100644 index 000000000..a63e43620 --- /dev/null +++ b/english/nodejs/primarydata/setlabeleridentificationcode/_index.md @@ -0,0 +1,27 @@ +--- +title: "PrimaryData.setLabelerIdentificationCode" +linktitle: "setLabelerIdentificationCode" +articleTitle: "setLabelerIdentificationCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic." +type: docs +weight: 50 +url: /nodejs/primarydata/setlabeleridentificationcode/ +--- +## setLabelerIdentificationCode(object) {#setlabeleridentificationcode} + +Identifies date of labeler identification code. Labeler identification code must be 4 symbols alphanumeric string, with first character always being alphabetic. + +```javascript +setLabelerIdentificationCode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/setproductorcatalognumber/_index.md b/english/nodejs/primarydata/setproductorcatalognumber/_index.md new file mode 100644 index 000000000..04f606c25 --- /dev/null +++ b/english/nodejs/primarydata/setproductorcatalognumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "PrimaryData.setProductOrCatalogNumber" +linktitle: "setProductOrCatalogNumber" +articleTitle: "setProductOrCatalogNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length." +type: docs +weight: 70 +url: /nodejs/primarydata/setproductorcatalognumber/ +--- +## setProductOrCatalogNumber(object) {#setproductorcatalognumber} + +Identifies product or catalog number. Product or catalog number must be alphanumeric string up to 18 sybmols length. + +```javascript +setProductOrCatalogNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/setunitofmeasureid/_index.md b/english/nodejs/primarydata/setunitofmeasureid/_index.md new file mode 100644 index 000000000..54a8fa4bc --- /dev/null +++ b/english/nodejs/primarydata/setunitofmeasureid/_index.md @@ -0,0 +1,27 @@ +--- +title: "PrimaryData.setUnitOfMeasureID" +linktitle: "setUnitOfMeasureID" +articleTitle: "setUnitOfMeasureID" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9." +type: docs +weight: 90 +url: /nodejs/primarydata/setunitofmeasureid/ +--- +## setUnitOfMeasureID(object) {#setunitofmeasureid} + +Identifies unit of measure ID. Unit of measure ID must be integer value from 0 to 9. + +```javascript +setUnitOfMeasureID(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/primarydata/tostring/_index.md b/english/nodejs/primarydata/tostring/_index.md new file mode 100644 index 000000000..b85f4b108 --- /dev/null +++ b/english/nodejs/primarydata/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "PrimaryData.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Converts data to string format according HIBC LIC specification." +type: docs +weight: 100 +url: /nodejs/primarydata/tostring/ +--- +## toString() {#tostring} + +Converts data to string format according HIBC LIC specification. + +```javascript +toString() +``` + +### Return Value + +Formatted + +string. + +### See Also + +* class [PrimaryData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrbillstandardversion/_index.md b/english/nodejs/qrbillstandardversion/_index.md new file mode 100644 index 000000000..00beb41d2 --- /dev/null +++ b/english/nodejs/qrbillstandardversion/_index.md @@ -0,0 +1,28 @@ +--- +title: "QrBillStandardVersion Enum" +linktitle: "QrBillStandardVersion" +articleTitle: "QrBillStandardVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SwissQR bill standard version." +type: docs +weight: 80 +url: /nodejs/qrbillstandardversion/ +--- +## QrBillStandardVersion enumeration + +SwissQR bill standard version + +```javascript +public enum QrBillStandardVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| V2_0 | `0` | Version 2.0 | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrencodemode/_index.md b/english/nodejs/qrencodemode/_index.md new file mode 100644 index 000000000..3a4791eb8 --- /dev/null +++ b/english/nodejs/qrencodemode/_index.md @@ -0,0 +1,33 @@ +--- +title: "QREncodeMode Enum" +linktitle: "QREncodeMode" +articleTitle: "QREncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Encoding mode for QR barcodes." +type: docs +weight: 900 +url: /nodejs/qrencodemode/ +--- +## QREncodeMode enumeration + +Encoding mode for QR barcodes. + +```javascript +public enum QREncodeMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Encode codetext as is non-unicode charset. If there is any unicode character, the codetext will be encoded with value which is set in CodeTextEncoding. | +| BYTES | `1` | Encode codetext as plain bytes. If it detects any unicode character, the character will be encoded as two bytes, lower byte first. | +| UTF_8_BOM | `2` | Encode codetext with UTF8 encoding with first ByteOfMark character. | +| UTF_16_BEBOM | `3` | Encode codetext with UTF8 encoding with first ByteOfMark character. It can be problems with some barcode scaners. | +| ECI_ENCODING | `4` | Encode codetext with value set in the ECI_ENCODING property. It can be problems with some old (pre 2006) barcode scaners. | +| EXTENDED_CODETEXT | `5` | Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes. It is better to use QrExtCodetextBuilder for extended codetext generation. Use Display2DText property to set visible text to removing managing characters. Encoding Principles: All symbols "\" must be doubled "\\" in the codetext. FNC1 in first position is set in codetext as as "<FNC1>" FNC1 in second position is set in codetext as as "<FNC1(value)>". The value must be single symbols (a-z, A-Z) or digits from 0 to 99. Group Separator for FNC1 modes is set as 0x1D character '\\u001D' If you need to insert "<FNC1>" string into barcode write it as "<\FNC1>" ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier TO disable current ECI mode and convert to default JIS8 mode zero mode ECI indetifier is set. "\000000" All unicode characters after ECI identifier are automatically encoded into correct character codeset. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrencodetype/_index.md b/english/nodejs/qrencodetype/_index.md new file mode 100644 index 000000000..136a1858c --- /dev/null +++ b/english/nodejs/qrencodetype/_index.md @@ -0,0 +1,30 @@ +--- +title: "QREncodeType Enum" +linktitle: "QREncodeType" +articleTitle: "QREncodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR / MicroQR selector mode. Select FORCE_QR for standard QR symbols, AUTO for MicroQR. FORCE_MICRO_QR is used for strongly MicroQR symbol generation if it is..." +type: docs +weight: 970 +url: /nodejs/qrencodetype/ +--- +## QREncodeType enumeration + +QR / MicroQR selector mode. Select FORCE_QR for standard QR symbols, AUTO for MicroQR. FORCE_MICRO_QR is used for strongly MicroQR symbol generation if it is possible. + +```javascript +public enum QREncodeType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Mode starts barcode version negotiation from MicroQR V1 | +| FORCE_QR | `1` | Mode starts barcode version negotiation from QR V1 | +| FORCE_MICRO_QR | `2` | Mode starts barcode version negotiation from from MicroQR V1 to V4. If data cannot be encoded into MicroQR, exception is thrown. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrerrorlevel/_index.md b/english/nodejs/qrerrorlevel/_index.md new file mode 100644 index 000000000..60c234168 --- /dev/null +++ b/english/nodejs/qrerrorlevel/_index.md @@ -0,0 +1,31 @@ +--- +title: "QRErrorLevel Enum" +linktitle: "QRErrorLevel" +articleTitle: "QRErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H." +type: docs +weight: 960 +url: /nodejs/qrerrorlevel/ +--- +## QRErrorLevel enumeration + +Level of Reed-Solomon error correction. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. + +```javascript +public enum QRErrorLevel +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| LEVEL_L | `0` | Allows recovery of 7% of the code text | +| LEVEL_M | `1` | Allows recovery of 15% of the code text | +| LEVEL_Q | `2` | Allows recovery of 25% of the code text | +| LEVEL_H | `3` | Allows recovery of 30% of the code text | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrextcodetextbuilder/_index.md b/english/nodejs/qrextcodetextbuilder/_index.md new file mode 100644 index 000000000..8d420cd66 --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/_index.md @@ -0,0 +1,78 @@ +--- +title: "QrExtCodetextBuilder Class" +linktitle: "QrExtCodetextBuilder" +articleTitle: "QrExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 710 +url: /nodejs/qrextcodetextbuilder/ +--- +## QrExtCodetextBuilder class + +//Example how to generate FNC1 first position for Extended Mode //create codetext QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); lTextBuilder.addFNC1FirstPosition(); lTextBuilder.addPlainCodetext("000%89%%0"); lTextBuilder.addFNC1GroupSeparator(); lTextBuilder.addPlainCodetext("12345<FNC1>"); //generate codetext String lCodetext = lTextBuilder.getExtendedCodetext(); + +```javascript +public class QrExtCodetextBuilder : ExtCodetextBuilder +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [QrExtCodetextBuilder](./qrextcodetextbuilder/#constructor) | Initializes a new instance of the QrExtCodetextBuilder class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addECICodetext](../extcodetextbuilder/addecicodetext/)(*object, object*) | Adds codetext with Extended Channel Identifier. *(Inherited from ExtCodetextBuilder)* | +| [addFNC1FirstPosition](./addfnc1firstposition/) | Adds FNC1 in first position to the extended codetext items. | +| [addFNC1GroupSeparator](./addfnc1groupseparator/) | Adds Group Separator (GS - '\\u001D') to the extended codetext items. | +| [addFNC1SecondPosition](./addfnc1secondposition/)(*object*) | Adds FNC1 in second position to the extended codetext items. | +| [addPlainCodetext](../extcodetextbuilder/addplaincodetext/)(*object*) | Adds plain codetext to the extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [clear](../extcodetextbuilder/clear/) | Clears extended codetext items. *(Inherited from ExtCodetextBuilder)* | +| [getExtendedCodetext](./getextendedcodetext/) | Generates Extended codetext from the extended codetext list. | +| [init](./init/) | | +| [javaClassName](./javaclassname/) | | + +## Examples + +```javascript +//Example how to generate FNC1 first position for Extended Mode +//create codetext +QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); +lTextBuilder.addFNC1FirstPosition(); +lTextBuilder.addPlainCodetext("000%89%%0"); +lTextBuilder.addFNC1GroupSeparator(); +lTextBuilder.addPlainCodetext("12345<FNC1>"); +//generate codetext +String lCodetext = lTextBuilder.getExtendedCodetext(); +``` + +```javascript +//Example how to generate FNC1 second position for Extended Mode +//create codetext +QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); +lTextBuilder.addFNC1SecondPosition("12"); +lTextBuilder.addPlainCodetext("TRUE3456"); +//generate codetext +String lCodetext = lTextBuilder.getExtendedCodetext(); +``` + +```javascript +//Example how to generate multi ECI mode for Extended Mode +//create codetext +QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder(); +lTextBuilder.addECICodetext(ECIEncodings.Win1251, "Will"); +lTextBuilder.addECICodetext(ECIEncodings.UTF8, "Right"); +lTextBuilder.addECICodetext(ECIEncodings.UTF16BE, "Power"); +lTextBuilder.addPlainCodetext("t\\e\\\\st"); +//generate codetext +String lCodetext = lTextBuilder.getExtendedCodetext(); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrextcodetextbuilder/addfnc1firstposition/_index.md b/english/nodejs/qrextcodetextbuilder/addfnc1firstposition/_index.md new file mode 100644 index 000000000..c9e52d290 --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/addfnc1firstposition/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrExtCodetextBuilder.addFNC1FirstPosition" +linktitle: "addFNC1FirstPosition" +articleTitle: "addFNC1FirstPosition" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds FNC1 in first position to the extended codetext items." +type: docs +weight: 40 +url: /nodejs/qrextcodetextbuilder/addfnc1firstposition/ +--- +## addFNC1FirstPosition() {#addfnc1firstposition} + +Adds FNC1 in first position to the extended codetext items + +```javascript +addFNC1FirstPosition() +``` + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/addfnc1groupseparator/_index.md b/english/nodejs/qrextcodetextbuilder/addfnc1groupseparator/_index.md new file mode 100644 index 000000000..45892576a --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/addfnc1groupseparator/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrExtCodetextBuilder.addFNC1GroupSeparator" +linktitle: "addFNC1GroupSeparator" +articleTitle: "addFNC1GroupSeparator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds Group Separator (GS - '\\\\u001D') to the extended codetext items." +type: docs +weight: 60 +url: /nodejs/qrextcodetextbuilder/addfnc1groupseparator/ +--- +## addFNC1GroupSeparator() {#addfnc1groupseparator} + +Adds Group Separator (GS - '\\u001D') to the extended codetext items + +```javascript +addFNC1GroupSeparator() +``` + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/addfnc1secondposition/_index.md b/english/nodejs/qrextcodetextbuilder/addfnc1secondposition/_index.md new file mode 100644 index 000000000..9c0491d79 --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/addfnc1secondposition/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrExtCodetextBuilder.addFNC1SecondPosition" +linktitle: "addFNC1SecondPosition" +articleTitle: "addFNC1SecondPosition" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds FNC1 in second position to the extended codetext items." +type: docs +weight: 50 +url: /nodejs/qrextcodetextbuilder/addfnc1secondposition/ +--- +## addFNC1SecondPosition(object) {#addfnc1secondposition} + +Adds FNC1 in second position to the extended codetext items + +```javascript +addFNC1SecondPosition(codetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| codetext | object | Value of the FNC1 in the second position | + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/getextendedcodetext/_index.md b/english/nodejs/qrextcodetextbuilder/getextendedcodetext/_index.md new file mode 100644 index 000000000..b0ea21c2a --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/getextendedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrExtCodetextBuilder.getExtendedCodetext" +linktitle: "getExtendedCodetext" +articleTitle: "getExtendedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Generates Extended codetext from the extended codetext list." +type: docs +weight: 70 +url: /nodejs/qrextcodetextbuilder/getextendedcodetext/ +--- +## getExtendedCodetext() {#getextendedcodetext} + +Generates Extended codetext from the extended codetext list. + +```javascript +getExtendedCodetext() +``` + +### Return Value + +Extended + +codetext as string + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/init/_index.md b/english/nodejs/qrextcodetextbuilder/init/_index.md new file mode 100644 index 000000000..eaf6cb20f --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrExtCodetextBuilder.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/qrextcodetextbuilder/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/javaclassname/_index.md b/english/nodejs/qrextcodetextbuilder/javaclassname/_index.md new file mode 100644 index 000000000..583753537 --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrExtCodetextBuilder.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/qrextcodetextbuilder/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextcodetextbuilder/qrextcodetextbuilder/_index.md b/english/nodejs/qrextcodetextbuilder/qrextcodetextbuilder/_index.md new file mode 100644 index 000000000..91536ec46 --- /dev/null +++ b/english/nodejs/qrextcodetextbuilder/qrextcodetextbuilder/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrExtCodetextBuilder" +linktitle: "QrExtCodetextBuilder" +articleTitle: "QrExtCodetextBuilder" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the QrExtCodetextBuilder class." +type: docs +weight: 10 +url: /nodejs/qrextcodetextbuilder/qrextcodetextbuilder/ +--- +## QrExtCodetextBuilder() {#constructor} + +Initializes a new instance of the QrExtCodetextBuilder class. + +```javascript +public QrExtCodetextBuilder() +``` + +### See Also + +* class [QrExtCodetextBuilder](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/_index.md b/english/nodejs/qrextendedparameters/_index.md new file mode 100644 index 000000000..876f7acf2 --- /dev/null +++ b/english/nodejs/qrextendedparameters/_index.md @@ -0,0 +1,67 @@ +--- +title: "QRExtendedParameters Class" +linktitle: "QRExtendedParameters" +articleTitle: "QRExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a QR Structured Append information of recognized barcode." +type: docs +weight: 1280 +url: /nodejs/qrextendedparameters/ +--- +## QRExtendedParameters class + +Stores a QR Structured Append information of recognized barcode + +```javascript +public class QRExtendedParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [QRExtendedParameters](./qrextendedparameters/#constructor)(*object*) | Initializes a new instance of the QRExtendedParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value. | +| [getErrorLevel](./geterrorlevel/) | Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. | +| [getMicroQRVersion](./getmicroqrversion/) | Version of recognized MicroQR Code. From M1 to M4. | +| [getQRErrorLevel](./getqrerrorlevel/) | Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. | +| [getQRStructuredAppendModeBarCodeIndex](./getqrstructuredappendmodebarcodeindex/) | Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.Value: The quantity of the QR structured append mode barcode. | +| [getQRStructuredAppendModeBarCodesQuantity](./getqrstructuredappendmodebarcodesquantity/) | Gets the QR structured append mode barcodes quantity. Default value is -1.Value: The quantity of the QR structured append mode barcode. | +| [getQRStructuredAppendModeParityData](./getqrstructuredappendmodeparitydata/) | Gets the QR structured append mode parity data. Default value is -1.Value: The index of the QR structured append mode barcode. | +| [getQRVersion](./getqrversion/) | Version of recognized QR Code. From Version1 to Version40. | +| [getRectMicroQRVersion](./getrectmicroqrversion/) | Version of recognized RectMicroQR Code. From R7x43 to R17x139. | +| [getStructuredAppendModeBarCodeIndex](./getstructuredappendmodebarcodeindex/) | Value: The quantity of the QR structured append mode barcode. | +| [getStructuredAppendModeBarCodesQuantity](./getstructuredappendmodebarcodesquantity/) | Value: The quantity of the QR structured append mode barcode. | +| [getStructuredAppendModeParityData](./getstructuredappendmodeparitydata/) | Value: The index of the QR structured append mode barcode. | +| [getVersion](./getversion/) | Version of recognized QR Code. From Version1 to Version40. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isEmpty](./isempty/) | | +| [toString](./tostring/) | Returns a human-readable string representation of this QRExtendedParameters. | + +## Examples + +```javascript +//This sample shows how to get QR Structured Append data +let reader = new BarCodeReader("test.png", null, DecodeType.QR); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode Type: " + result.getCodeTypeName()); +console.log("BarCode CodeText: " + result.getCodeText()); +console.log("QR Structured Append Quantity: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodesQuantity()); +console.log("QR Structured Append Index: " + result.getExtended().getQR().getQRStructuredAppendModeBarCodeIndex()); +console.log("QR Structured Append ParityData: " + result.getExtended().getQR().getQRStructuredAppendModeParityData()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrextendedparameters/equals/_index.md b/english/nodejs/qrextendedparameters/equals/_index.md new file mode 100644 index 000000000..e0e4a1c7f --- /dev/null +++ b/english/nodejs/qrextendedparameters/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "QRExtendedParameters.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value." +type: docs +weight: 160 +url: /nodejs/qrextendedparameters/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified QRExtendedParameters value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An object value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/geterrorlevel/_index.md b/english/nodejs/qrextendedparameters/geterrorlevel/_index.md new file mode 100644 index 000000000..207af83ef --- /dev/null +++ b/english/nodejs/qrextendedparameters/geterrorlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: "QRExtendedParameters.getErrorLevel" +linktitle: "getErrorLevel" +articleTitle: "getErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH." +type: docs +weight: 130 +url: /nodejs/qrextendedparameters/geterrorlevel/ +--- +## getErrorLevel() {#geterrorlevel} + +Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. + +```javascript +getErrorLevel() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getmicroqrversion/_index.md b/english/nodejs/qrextendedparameters/getmicroqrversion/_index.md new file mode 100644 index 000000000..fbfd03c6e --- /dev/null +++ b/english/nodejs/qrextendedparameters/getmicroqrversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.getMicroQRVersion" +linktitle: "getMicroQRVersion" +articleTitle: "getMicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of recognized MicroQR Code. From M1 to M4." +type: docs +weight: 110 +url: /nodejs/qrextendedparameters/getmicroqrversion/ +--- +## getMicroQRVersion() {#getmicroqrversion} + +Version of recognized MicroQR Code. From M1 to M4. + +```javascript +getMicroQRVersion() +``` + +### Return Value + +Version + +of recognized MicroQR Code. From M1 to M4. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getqrerrorlevel/_index.md b/english/nodejs/qrextendedparameters/getqrerrorlevel/_index.md new file mode 100644 index 000000000..15df2c5b5 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getqrerrorlevel/_index.md @@ -0,0 +1,31 @@ +--- +title: "QRExtendedParameters.getQRErrorLevel" +linktitle: "getQRErrorLevel" +articleTitle: "getQRErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH." +type: docs +weight: 140 +url: /nodejs/qrextendedparameters/getqrerrorlevel/ +--- +## getQRErrorLevel() {#getqrerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel(). + +Reed-Solomon error correction level of recognized barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. + +```javascript +getQRErrorLevel() +``` + +### Return Value + +Reed-Solomon + +error correction level of recognized barcode. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodeindex/_index.md b/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodeindex/_index.md new file mode 100644 index 000000000..0c5bf82ff --- /dev/null +++ b/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodeindex/_index.md @@ -0,0 +1,25 @@ +--- +title: "QRExtendedParameters.getQRStructuredAppendModeBarCodeIndex" +linktitle: "getQRStructuredAppendModeBarCodeIndex" +articleTitle: "getQRStructuredAppendModeBarCodeIndex" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.Value: The quantity of the QR structured append mode barcode." +type: docs +weight: 60 +url: /nodejs/qrextendedparameters/getqrstructuredappendmodebarcodeindex/ +--- +## getQRStructuredAppendModeBarCodeIndex() {#getqrstructuredappendmodebarcodeindex} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarCodeIndex(). + +Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.Value: The quantity of the QR structured append mode barcode. + +```javascript +getQRStructuredAppendModeBarCodeIndex() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodesquantity/_index.md b/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodesquantity/_index.md new file mode 100644 index 000000000..3960c2720 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getqrstructuredappendmodebarcodesquantity/_index.md @@ -0,0 +1,25 @@ +--- +title: "QRExtendedParameters.getQRStructuredAppendModeBarCodesQuantity" +linktitle: "getQRStructuredAppendModeBarCodesQuantity" +articleTitle: "getQRStructuredAppendModeBarCodesQuantity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the QR structured append mode barcodes quantity. Default value is -1.Value: The quantity of the QR structured append mode barcode." +type: docs +weight: 40 +url: /nodejs/qrextendedparameters/getqrstructuredappendmodebarcodesquantity/ +--- +## getQRStructuredAppendModeBarCodesQuantity() {#getqrstructuredappendmodebarcodesquantity} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeBarCodesQuantity(). + +Gets the QR structured append mode barcodes quantity. Default value is -1.Value: The quantity of the QR structured append mode barcode. + +```javascript +getQRStructuredAppendModeBarCodesQuantity() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getqrstructuredappendmodeparitydata/_index.md b/english/nodejs/qrextendedparameters/getqrstructuredappendmodeparitydata/_index.md new file mode 100644 index 000000000..be493a9c9 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getqrstructuredappendmodeparitydata/_index.md @@ -0,0 +1,25 @@ +--- +title: "QRExtendedParameters.getQRStructuredAppendModeParityData" +linktitle: "getQRStructuredAppendModeParityData" +articleTitle: "getQRStructuredAppendModeParityData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the QR structured append mode parity data. Default value is -1.Value: The index of the QR structured append mode barcode." +type: docs +weight: 80 +url: /nodejs/qrextendedparameters/getqrstructuredappendmodeparitydata/ +--- +## getQRStructuredAppendModeParityData() {#getqrstructuredappendmodeparitydata} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getStructuredAppendModeParityData(). + +Gets the QR structured append mode parity data. Default value is -1.Value: The index of the QR structured append mode barcode. + +```javascript +getQRStructuredAppendModeParityData() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getqrversion/_index.md b/english/nodejs/qrextendedparameters/getqrversion/_index.md new file mode 100644 index 000000000..42e536609 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getqrversion/_index.md @@ -0,0 +1,31 @@ +--- +title: "QRExtendedParameters.getQRVersion" +linktitle: "getQRVersion" +articleTitle: "getQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of recognized QR Code. From Version1 to Version40." +type: docs +weight: 100 +url: /nodejs/qrextendedparameters/getqrversion/ +--- +## getQRVersion() {#getqrversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getVersion(). + +Version of recognized QR Code. From Version1 to Version40. + +```javascript +getQRVersion() +``` + +### Return Value + +Version + +of recognized QR Code + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getrectmicroqrversion/_index.md b/english/nodejs/qrextendedparameters/getrectmicroqrversion/_index.md new file mode 100644 index 000000000..362289db7 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getrectmicroqrversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.getRectMicroQRVersion" +linktitle: "getRectMicroQRVersion" +articleTitle: "getRectMicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of recognized RectMicroQR Code. From R7x43 to R17x139." +type: docs +weight: 120 +url: /nodejs/qrextendedparameters/getrectmicroqrversion/ +--- +## getRectMicroQRVersion() {#getrectmicroqrversion} + +Version of recognized RectMicroQR Code. From R7x43 to R17x139. + +```javascript +getRectMicroQRVersion() +``` + +### Return Value + +Version + +of recognized RectMicroQR Code + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodeindex/_index.md b/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodeindex/_index.md new file mode 100644 index 000000000..844db1d87 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodeindex/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.getStructuredAppendModeBarCodeIndex" +linktitle: "getStructuredAppendModeBarCodeIndex" +articleTitle: "getStructuredAppendModeBarCodeIndex" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Value: The quantity of the QR structured append mode barcode." +type: docs +weight: 50 +url: /nodejs/qrextendedparameters/getstructuredappendmodebarcodeindex/ +--- +## getStructuredAppendModeBarCodeIndex() {#getstructuredappendmodebarcodeindex} + +Value: The quantity of the QR structured append mode barcode. + +```javascript +getStructuredAppendModeBarCodeIndex() +``` + +### Return Value + +the + +index of the QR structured append mode barcode. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodesquantity/_index.md b/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodesquantity/_index.md new file mode 100644 index 000000000..937808a4a --- /dev/null +++ b/english/nodejs/qrextendedparameters/getstructuredappendmodebarcodesquantity/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.getStructuredAppendModeBarCodesQuantity" +linktitle: "getStructuredAppendModeBarCodesQuantity" +articleTitle: "getStructuredAppendModeBarCodesQuantity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Value: The quantity of the QR structured append mode barcode." +type: docs +weight: 30 +url: /nodejs/qrextendedparameters/getstructuredappendmodebarcodesquantity/ +--- +## getStructuredAppendModeBarCodesQuantity() {#getstructuredappendmodebarcodesquantity} + +Value: The quantity of the QR structured append mode barcode. + +```javascript +getStructuredAppendModeBarCodesQuantity() +``` + +### Return Value + +the + +QR structured append mode barcodes quantity. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getstructuredappendmodeparitydata/_index.md b/english/nodejs/qrextendedparameters/getstructuredappendmodeparitydata/_index.md new file mode 100644 index 000000000..a288f01ab --- /dev/null +++ b/english/nodejs/qrextendedparameters/getstructuredappendmodeparitydata/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.getStructuredAppendModeParityData" +linktitle: "getStructuredAppendModeParityData" +articleTitle: "getStructuredAppendModeParityData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Value: The index of the QR structured append mode barcode." +type: docs +weight: 70 +url: /nodejs/qrextendedparameters/getstructuredappendmodeparitydata/ +--- +## getStructuredAppendModeParityData() {#getstructuredappendmodeparitydata} + +Value: The index of the QR structured append mode barcode. + +```javascript +getStructuredAppendModeParityData() +``` + +### Return Value + +the + +QR structured append mode parity data. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/getversion/_index.md b/english/nodejs/qrextendedparameters/getversion/_index.md new file mode 100644 index 000000000..358e40a77 --- /dev/null +++ b/english/nodejs/qrextendedparameters/getversion/_index.md @@ -0,0 +1,23 @@ +--- +title: "QRExtendedParameters.getVersion" +linktitle: "getVersion" +articleTitle: "getVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of recognized QR Code. From Version1 to Version40." +type: docs +weight: 90 +url: /nodejs/qrextendedparameters/getversion/ +--- +## getVersion() {#getversion} + +Version of recognized QR Code. From Version1 to Version40. + +```javascript +getVersion() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/hashcode/_index.md b/english/nodejs/qrextendedparameters/hashcode/_index.md new file mode 100644 index 000000000..6e04dfc1d --- /dev/null +++ b/english/nodejs/qrextendedparameters/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 170 +url: /nodejs/qrextendedparameters/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/init/_index.md b/english/nodejs/qrextendedparameters/init/_index.md new file mode 100644 index 000000000..c8258acf4 --- /dev/null +++ b/english/nodejs/qrextendedparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "QRExtendedParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/qrextendedparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/isempty/_index.md b/english/nodejs/qrextendedparameters/isempty/_index.md new file mode 100644 index 000000000..586aa5217 --- /dev/null +++ b/english/nodejs/qrextendedparameters/isempty/_index.md @@ -0,0 +1,23 @@ +--- +title: "QRExtendedParameters.isEmpty" +linktitle: "isEmpty" +articleTitle: "isEmpty" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 150 +url: /nodejs/qrextendedparameters/isempty/ +--- +## isEmpty() {#isempty} + + + +```javascript +isEmpty() +``` + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/qrextendedparameters/_index.md b/english/nodejs/qrextendedparameters/qrextendedparameters/_index.md new file mode 100644 index 000000000..841681f83 --- /dev/null +++ b/english/nodejs/qrextendedparameters/qrextendedparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "QRExtendedParameters" +linktitle: "QRExtendedParameters" +articleTitle: "QRExtendedParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the QRExtendedParameters class." +type: docs +weight: 10 +url: /nodejs/qrextendedparameters/qrextendedparameters/ +--- +## QRExtendedParameters(object) {#constructor} + +Initializes a new instance of the QRExtendedParameters class. + +```javascript +public QRExtendedParameters(object javaclass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaclass | object | | + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrextendedparameters/tostring/_index.md b/english/nodejs/qrextendedparameters/tostring/_index.md new file mode 100644 index 000000000..aee8475b9 --- /dev/null +++ b/english/nodejs/qrextendedparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "QRExtendedParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this QRExtendedParameters." +type: docs +weight: 180 +url: /nodejs/qrextendedparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this QRExtendedParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this QRExtendedParameters. + +### See Also + +* class [QRExtendedParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/_index.md b/english/nodejs/qrparameters/_index.md new file mode 100644 index 000000000..8ff726fce --- /dev/null +++ b/english/nodejs/qrparameters/_index.md @@ -0,0 +1,67 @@ +--- +title: "QrParameters Class" +linktitle: "QrParameters" +articleTitle: "QrParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR parameters." +type: docs +weight: 620 +url: /nodejs/qrparameters/ +--- +## QrParameters class + +QR parameters. + +```javascript +public class QrParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [QrParameters](./qrparameters/#constructor)(*object*) | Initializes a new instance of the QrParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAspectRatio](./getaspectratio/) | Height/Width ratio of 2D BarCode module. | +| [getECIEncoding](./geteciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. | +| [getEncodeMode](./getencodemode/) | QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. | +| [getErrorLevel](./geterrorlevel/) | Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. | +| [getMicroQRVersion](./getmicroqrversion/) | Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. | +| [getQrECIEncoding](./getqreciencoding/) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [getQrEncodeMode](./getqrencodemode/) | QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. | +| [getQrEncodeType](./getqrencodetype/) | QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. | +| [getQrErrorLevel](./getqrerrorlevel/) | Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel. | +| [getQrVersion](./getqrversion/) | Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO. | +| [getRectMicroQrVersion](./getrectmicroqrversion/) | Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. | +| [getStructuredAppend](./getstructuredappend/) | QR structured append parameters. | +| [getVersion](./getversion/) | Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. | +| [init](./init/) | | +| [setAspectRatio](./setaspectratio/)(*object*) | Height/Width ratio of 2D BarCode module. | +| [setECIEncoding](./seteciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. | +| [setEncodeMode](./setencodemode/)(*object*) | QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. | +| [setErrorLevel](./seterrorlevel/)(*object*) | Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. | +| [setMicroQRVersion](./setmicroqrversion/)(*object*) | Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. | +| [setQrECIEncoding](./setqreciencoding/)(*object*) | Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. | +| [setQrEncodeMode](./setqrencodemode/)(*object*) | QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. | +| [setQrEncodeType](./setqrencodetype/)(*object*) | QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. | +| [setQrErrorLevel](./setqrerrorlevel/)(*object*) | Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel. | +| [setQrVersion](./setqrversion/)(*object*) | Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO. | +| [setRectMicroQrVersion](./setrectmicroqrversion/)(*object*) | Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. | +| [setStructuredAppend](./setstructuredappend/)(*object*) | QR structured append parameters. | +| [setVersion](./setversion/)(*object*) | Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. | +| [toString](./tostring/) | Returns a human-readable string representation of this QrParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [structuredAppend](./structuredappend/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrparameters/getaspectratio/_index.md b/english/nodejs/qrparameters/getaspectratio/_index.md new file mode 100644 index 000000000..f6aa8e66c --- /dev/null +++ b/english/nodejs/qrparameters/getaspectratio/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getAspectRatio" +linktitle: "getAspectRatio" +articleTitle: "getAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 280 +url: /nodejs/qrparameters/getaspectratio/ +--- +## getAspectRatio() {#getaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +getAspectRatio() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/geteciencoding/_index.md b/english/nodejs/qrparameters/geteciencoding/_index.md new file mode 100644 index 000000000..44d5ef96a --- /dev/null +++ b/english/nodejs/qrparameters/geteciencoding/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getECIEncoding" +linktitle: "getECIEncoding" +articleTitle: "getECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 40 +url: /nodejs/qrparameters/geteciencoding/ +--- +## getECIEncoding() {#geteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. + +```javascript +getECIEncoding() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getencodemode/_index.md b/english/nodejs/qrparameters/getencodemode/_index.md new file mode 100644 index 000000000..4a90196a8 --- /dev/null +++ b/english/nodejs/qrparameters/getencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getEncodeMode" +linktitle: "getEncodeMode" +articleTitle: "getEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto." +type: docs +weight: 90 +url: /nodejs/qrparameters/getencodemode/ +--- +## getEncodeMode() {#getencodemode} + +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. + +```javascript +getEncodeMode() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/geterrorlevel/_index.md b/english/nodejs/qrparameters/geterrorlevel/_index.md new file mode 100644 index 000000000..9bc510d62 --- /dev/null +++ b/english/nodejs/qrparameters/geterrorlevel/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getErrorLevel" +linktitle: "getErrorLevel" +articleTitle: "getErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel." +type: docs +weight: 160 +url: /nodejs/qrparameters/geterrorlevel/ +--- +## getErrorLevel() {#geterrorlevel} + +Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. + +```javascript +getErrorLevel() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getmicroqrversion/_index.md b/english/nodejs/qrparameters/getmicroqrversion/_index.md new file mode 100644 index 000000000..f5e3cace2 --- /dev/null +++ b/english/nodejs/qrparameters/getmicroqrversion/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getMicroQRVersion" +linktitle: "getMicroQRVersion" +articleTitle: "getMicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto." +type: docs +weight: 240 +url: /nodejs/qrparameters/getmicroqrversion/ +--- +## getMicroQRVersion() {#getmicroqrversion} + +Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. + +```javascript +getMicroQRVersion() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getqreciencoding/_index.md b/english/nodejs/qrparameters/getqreciencoding/_index.md new file mode 100644 index 000000000..a0d90fa9f --- /dev/null +++ b/english/nodejs/qrparameters/getqreciencoding/_index.md @@ -0,0 +1,25 @@ +--- +title: "QrParameters.getQrECIEncoding" +linktitle: "getQrECIEncoding" +articleTitle: "getQrECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 80 +url: /nodejs/qrparameters/getqreciencoding/ +--- +## getQrECIEncoding() {#getqreciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +getQrECIEncoding() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getqrencodemode/_index.md b/english/nodejs/qrparameters/getqrencodemode/_index.md new file mode 100644 index 000000000..c88147451 --- /dev/null +++ b/english/nodejs/qrparameters/getqrencodemode/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getQrEncodeMode" +linktitle: "getQrEncodeMode" +articleTitle: "getQrEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO." +type: docs +weight: 120 +url: /nodejs/qrparameters/getqrencodemode/ +--- +## getQrEncodeMode() {#getqrencodemode} + +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. + +```javascript +getQrEncodeMode() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getqrencodetype/_index.md b/english/nodejs/qrparameters/getqrencodetype/_index.md new file mode 100644 index 000000000..cf02729df --- /dev/null +++ b/english/nodejs/qrparameters/getqrencodetype/_index.md @@ -0,0 +1,25 @@ +--- +title: "QrParameters.getQrEncodeType" +linktitle: "getQrEncodeType" +articleTitle: "getQrEncodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR." +type: docs +weight: 140 +url: /nodejs/qrparameters/getqrencodetype/ +--- +## getQrEncodeType() {#getqrencodetype} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getEncodeMode(). + +QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. + +```javascript +getQrEncodeType() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getqrerrorlevel/_index.md b/english/nodejs/qrparameters/getqrerrorlevel/_index.md new file mode 100644 index 000000000..34efcbd43 --- /dev/null +++ b/english/nodejs/qrparameters/getqrerrorlevel/_index.md @@ -0,0 +1,25 @@ +--- +title: "QrParameters.getQrErrorLevel" +linktitle: "getQrErrorLevel" +articleTitle: "getQrErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel." +type: docs +weight: 180 +url: /nodejs/qrparameters/getqrerrorlevel/ +--- +## getQrErrorLevel() {#getqrerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getErrorLevel(). + +Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel. + +```javascript +getQrErrorLevel() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getqrversion/_index.md b/english/nodejs/qrparameters/getqrversion/_index.md new file mode 100644 index 000000000..a83c4db1d --- /dev/null +++ b/english/nodejs/qrparameters/getqrversion/_index.md @@ -0,0 +1,25 @@ +--- +title: "QrParameters.getQrVersion" +linktitle: "getQrVersion" +articleTitle: "getQrVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO." +type: docs +weight: 220 +url: /nodejs/qrparameters/getqrversion/ +--- +## getQrVersion() {#getqrversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the getVersion(). + +Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO. + +```javascript +getQrVersion() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getrectmicroqrversion/_index.md b/english/nodejs/qrparameters/getrectmicroqrversion/_index.md new file mode 100644 index 000000000..1a0834985 --- /dev/null +++ b/english/nodejs/qrparameters/getrectmicroqrversion/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getRectMicroQrVersion" +linktitle: "getRectMicroQrVersion" +articleTitle: "getRectMicroQrVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto." +type: docs +weight: 260 +url: /nodejs/qrparameters/getrectmicroqrversion/ +--- +## getRectMicroQrVersion() {#getrectmicroqrversion} + +Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. + +```javascript +getRectMicroQrVersion() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getstructuredappend/_index.md b/english/nodejs/qrparameters/getstructuredappend/_index.md new file mode 100644 index 000000000..61732b9a4 --- /dev/null +++ b/english/nodejs/qrparameters/getstructuredappend/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getStructuredAppend" +linktitle: "getStructuredAppend" +articleTitle: "getStructuredAppend" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR structured append parameters." +type: docs +weight: 60 +url: /nodejs/qrparameters/getstructuredappend/ +--- +## getStructuredAppend() {#getstructuredappend} + +QR structured append parameters. + +```javascript +getStructuredAppend() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/getversion/_index.md b/english/nodejs/qrparameters/getversion/_index.md new file mode 100644 index 000000000..dd36cb290 --- /dev/null +++ b/english/nodejs/qrparameters/getversion/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.getVersion" +linktitle: "getVersion" +articleTitle: "getVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto." +type: docs +weight: 200 +url: /nodejs/qrparameters/getversion/ +--- +## getVersion() {#getversion} + +Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. + +```javascript +getVersion() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/init/_index.md b/english/nodejs/qrparameters/init/_index.md new file mode 100644 index 000000000..6f58e7406 --- /dev/null +++ b/english/nodejs/qrparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/qrparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/qrparameters/_index.md b/english/nodejs/qrparameters/qrparameters/_index.md new file mode 100644 index 000000000..72963e8b0 --- /dev/null +++ b/english/nodejs/qrparameters/qrparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters" +linktitle: "QrParameters" +articleTitle: "QrParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the QrParameters class." +type: docs +weight: 10 +url: /nodejs/qrparameters/qrparameters/ +--- +## QrParameters(object) {#constructor} + +Initializes a new instance of the QrParameters class. + +```javascript +public QrParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setaspectratio/_index.md b/english/nodejs/qrparameters/setaspectratio/_index.md new file mode 100644 index 000000000..f31f90e35 --- /dev/null +++ b/english/nodejs/qrparameters/setaspectratio/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setAspectRatio" +linktitle: "setAspectRatio" +articleTitle: "setAspectRatio" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Height/Width ratio of 2D BarCode module." +type: docs +weight: 290 +url: /nodejs/qrparameters/setaspectratio/ +--- +## setAspectRatio(object) {#setaspectratio} + +Height/Width ratio of 2D BarCode module. + +```javascript +setAspectRatio(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/seteciencoding/_index.md b/english/nodejs/qrparameters/seteciencoding/_index.md new file mode 100644 index 000000000..e7e88965b --- /dev/null +++ b/english/nodejs/qrparameters/seteciencoding/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setECIEncoding" +linktitle: "setECIEncoding" +articleTitle: "setECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 50 +url: /nodejs/qrparameters/seteciencoding/ +--- +## setECIEncoding(object) {#seteciencoding} + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. Not supported by MicroQR. + +```javascript +setECIEncoding( value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setencodemode/_index.md b/english/nodejs/qrparameters/setencodemode/_index.md new file mode 100644 index 000000000..657784a27 --- /dev/null +++ b/english/nodejs/qrparameters/setencodemode/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setEncodeMode" +linktitle: "setEncodeMode" +articleTitle: "setEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto." +type: docs +weight: 100 +url: /nodejs/qrparameters/setencodemode/ +--- +## setEncodeMode(object) {#setencodemode} + +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.Auto. + +```javascript +setEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/seterrorlevel/_index.md b/english/nodejs/qrparameters/seterrorlevel/_index.md new file mode 100644 index 000000000..215c26ae0 --- /dev/null +++ b/english/nodejs/qrparameters/seterrorlevel/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setErrorLevel" +linktitle: "setErrorLevel" +articleTitle: "setErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel." +type: docs +weight: 170 +url: /nodejs/qrparameters/seterrorlevel/ +--- +## setErrorLevel(object) {#seterrorlevel} + +Level of Reed-Solomon error correction for QR, MicroQR and RectMicroQR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. See QRErrorLevel. + +```javascript +setErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setmicroqrversion/_index.md b/english/nodejs/qrparameters/setmicroqrversion/_index.md new file mode 100644 index 000000000..5baebf8c6 --- /dev/null +++ b/english/nodejs/qrparameters/setmicroqrversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setMicroQRVersion" +linktitle: "setMicroQRVersion" +articleTitle: "setMicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto." +type: docs +weight: 250 +url: /nodejs/qrparameters/setmicroqrversion/ +--- +## setMicroQRVersion(object) {#setmicroqrversion} + +Version of MicroQR Code. From version M1 to version M4. Default value is MicroQRVersion.Auto. + +```javascript +setMicroQRVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setqreciencoding/_index.md b/english/nodejs/qrparameters/setqreciencoding/_index.md new file mode 100644 index 000000000..6554febcc --- /dev/null +++ b/english/nodejs/qrparameters/setqreciencoding/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.setQrECIEncoding" +linktitle: "setQrECIEncoding" +articleTitle: "setQrECIEncoding" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Cur..." +type: docs +weight: 110 +url: /nodejs/qrparameters/setqreciencoding/ +--- +## setQrECIEncoding(object) {#setqreciencoding} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setECIEncoding(). + +Extended Channel Interpretation Identifiers. It is used to tell the barcode reader details about the used references for encoding the data in the symbol. Current implementation consists all well known charset encodings. + +```javascript +setQrECIEncoding(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setqrencodemode/_index.md b/english/nodejs/qrparameters/setqrencodemode/_index.md new file mode 100644 index 000000000..cd0b61821 --- /dev/null +++ b/english/nodejs/qrparameters/setqrencodemode/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.setQrEncodeMode" +linktitle: "setQrEncodeMode" +articleTitle: "setQrEncodeMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO." +type: docs +weight: 130 +url: /nodejs/qrparameters/setqrencodemode/ +--- +## setQrEncodeMode(object) {#setqrencodemode} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +QR symbology type of BarCode's encoding mode. Default value: QREncodeMode.AUTO. + +```javascript +setQrEncodeMode(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setqrencodetype/_index.md b/english/nodejs/qrparameters/setqrencodetype/_index.md new file mode 100644 index 000000000..73a9ffd45 --- /dev/null +++ b/english/nodejs/qrparameters/setqrencodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.setQrEncodeType" +linktitle: "setQrEncodeType" +articleTitle: "setQrEncodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR." +type: docs +weight: 150 +url: /nodejs/qrparameters/setqrencodetype/ +--- +## setQrEncodeType(object) {#setqrencodetype} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setEncodeMode(). + +QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR. + +```javascript +setQrEncodeType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setqrerrorlevel/_index.md b/english/nodejs/qrparameters/setqrerrorlevel/_index.md new file mode 100644 index 000000000..3442ce388 --- /dev/null +++ b/english/nodejs/qrparameters/setqrerrorlevel/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.setQrErrorLevel" +linktitle: "setQrErrorLevel" +articleTitle: "setQrErrorLevel" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel." +type: docs +weight: 190 +url: /nodejs/qrparameters/setqrerrorlevel/ +--- +## setQrErrorLevel(object) {#setqrerrorlevel} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setErrorLevel(). + +Level of Reed-Solomon error correction for QR barcode. From low to high: LEVEL_L, LEVEL_M, LEVEL_Q, LEVEL_H. see QRErrorLevel. + +```javascript +setQrErrorLevel(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setqrversion/_index.md b/english/nodejs/qrparameters/setqrversion/_index.md new file mode 100644 index 000000000..7bc8a0ae6 --- /dev/null +++ b/english/nodejs/qrparameters/setqrversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.setQrVersion" +linktitle: "setQrVersion" +articleTitle: "setQrVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO." +type: docs +weight: 230 +url: /nodejs/qrparameters/setqrversion/ +--- +## setQrVersion(object) {#setqrversion} + +> **Deprecated.** This property is obsolete and will be removed in future releases. Instead, use the setVersion(). + +Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. Default value is QRVersion.AUTO. + +```javascript +setQrVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setrectmicroqrversion/_index.md b/english/nodejs/qrparameters/setrectmicroqrversion/_index.md new file mode 100644 index 000000000..9dc786d54 --- /dev/null +++ b/english/nodejs/qrparameters/setrectmicroqrversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setRectMicroQrVersion" +linktitle: "setRectMicroQrVersion" +articleTitle: "setRectMicroQrVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto." +type: docs +weight: 270 +url: /nodejs/qrparameters/setrectmicroqrversion/ +--- +## setRectMicroQrVersion(object) {#setrectmicroqrversion} + +Version of RectMicroQR Code. From version R7x59 to version R17x139. Default value is RectMicroQRVersion.Auto. + +```javascript +setRectMicroQrVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setstructuredappend/_index.md b/english/nodejs/qrparameters/setstructuredappend/_index.md new file mode 100644 index 000000000..0058b39ad --- /dev/null +++ b/english/nodejs/qrparameters/setstructuredappend/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setStructuredAppend" +linktitle: "setStructuredAppend" +articleTitle: "setStructuredAppend" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR structured append parameters." +type: docs +weight: 70 +url: /nodejs/qrparameters/setstructuredappend/ +--- +## setStructuredAppend(object) {#setstructuredappend} + +QR structured append parameters. + +```javascript +setStructuredAppend(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/setversion/_index.md b/english/nodejs/qrparameters/setversion/_index.md new file mode 100644 index 000000000..607365e91 --- /dev/null +++ b/english/nodejs/qrparameters/setversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrParameters.setVersion" +linktitle: "setVersion" +articleTitle: "setVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto." +type: docs +weight: 210 +url: /nodejs/qrparameters/setversion/ +--- +## setVersion(object) {#setversion} + +Version of QR Code.From Version1 to Version40. Default value is QRVersion.Auto. + +```javascript +setVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrparameters/tostring/_index.md b/english/nodejs/qrparameters/tostring/_index.md new file mode 100644 index 000000000..43c53a949 --- /dev/null +++ b/english/nodejs/qrparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "QrParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this QrParameters." +type: docs +weight: 300 +url: /nodejs/qrparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this QrParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this QrParameters. + +### See Also + +* class [QrParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/_index.md b/english/nodejs/qrstructuredappendparameters/_index.md new file mode 100644 index 000000000..9b7920f8e --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/_index.md @@ -0,0 +1,40 @@ +--- +title: "QrStructuredAppendParameters Class" +linktitle: "QrStructuredAppendParameters" +articleTitle: "QrStructuredAppendParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QR structured append parameters." +type: docs +weight: 720 +url: /nodejs/qrstructuredappendparameters/ +--- +## QrStructuredAppendParameters class + +QR structured append parameters. + +```javascript +public class QrStructuredAppendParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [QrStructuredAppendParameters](./qrstructuredappendparameters/#constructor)(*object*) | Initializes a new instance of the QrStructuredAppendParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getParityByte](./getparitybyte/) | Gets the QR structured append mode parity data. | +| [getSequenceIndicator](./getsequenceindicator/) | Gets the index of the QR structured append mode barcode. Index starts from 0. | +| [getTotalCount](./gettotalcount/) | Gets the QR structured append mode barcodes quantity. Max value is 16. | +| [init](./init/) | | +| [setParityByte](./setparitybyte/)(*object*) | Sets the QR structured append mode parity data. | +| [setSequenceIndicator](./setsequenceindicator/)(*object*) | Sets the index of the QR structured append mode barcode. Index starts from 0. | +| [setTotalCount](./settotalcount/)(*object*) | Sets the QR structured append mode barcodes quantity. Max value is 16. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qrstructuredappendparameters/getparitybyte/_index.md b/english/nodejs/qrstructuredappendparameters/getparitybyte/_index.md new file mode 100644 index 000000000..14fe5c008 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/getparitybyte/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrStructuredAppendParameters.getParityByte" +linktitle: "getParityByte" +articleTitle: "getParityByte" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the QR structured append mode parity data." +type: docs +weight: 30 +url: /nodejs/qrstructuredappendparameters/getparitybyte/ +--- +## getParityByte() {#getparitybyte} + +Gets the QR structured append mode parity data. + +```javascript +getParityByte() +``` + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/getsequenceindicator/_index.md b/english/nodejs/qrstructuredappendparameters/getsequenceindicator/_index.md new file mode 100644 index 000000000..efa0edc0a --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/getsequenceindicator/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrStructuredAppendParameters.getSequenceIndicator" +linktitle: "getSequenceIndicator" +articleTitle: "getSequenceIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the index of the QR structured append mode barcode. Index starts from 0." +type: docs +weight: 50 +url: /nodejs/qrstructuredappendparameters/getsequenceindicator/ +--- +## getSequenceIndicator() {#getsequenceindicator} + +Gets the index of the QR structured append mode barcode. Index starts from 0. + +```javascript +getSequenceIndicator() +``` + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/gettotalcount/_index.md b/english/nodejs/qrstructuredappendparameters/gettotalcount/_index.md new file mode 100644 index 000000000..0841253e7 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/gettotalcount/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrStructuredAppendParameters.getTotalCount" +linktitle: "getTotalCount" +articleTitle: "getTotalCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the QR structured append mode barcodes quantity. Max value is 16." +type: docs +weight: 70 +url: /nodejs/qrstructuredappendparameters/gettotalcount/ +--- +## getTotalCount() {#gettotalcount} + +Gets the QR structured append mode barcodes quantity. Max value is 16. + +```javascript +getTotalCount() +``` + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/init/_index.md b/english/nodejs/qrstructuredappendparameters/init/_index.md new file mode 100644 index 000000000..e2e57d0fd --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "QrStructuredAppendParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/qrstructuredappendparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/qrstructuredappendparameters/_index.md b/english/nodejs/qrstructuredappendparameters/qrstructuredappendparameters/_index.md new file mode 100644 index 000000000..3c18cb7f4 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/qrstructuredappendparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrStructuredAppendParameters" +linktitle: "QrStructuredAppendParameters" +articleTitle: "QrStructuredAppendParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the QrStructuredAppendParameters class." +type: docs +weight: 10 +url: /nodejs/qrstructuredappendparameters/qrstructuredappendparameters/ +--- +## QrStructuredAppendParameters(object) {#constructor} + +Initializes a new instance of the QrStructuredAppendParameters class. + +```javascript +public QrStructuredAppendParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/setparitybyte/_index.md b/english/nodejs/qrstructuredappendparameters/setparitybyte/_index.md new file mode 100644 index 000000000..e26a69673 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/setparitybyte/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrStructuredAppendParameters.setParityByte" +linktitle: "setParityByte" +articleTitle: "setParityByte" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the QR structured append mode parity data." +type: docs +weight: 40 +url: /nodejs/qrstructuredappendparameters/setparitybyte/ +--- +## setParityByte(object) {#setparitybyte} + +Sets the QR structured append mode parity data. + +```javascript +setParityByte(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/setsequenceindicator/_index.md b/english/nodejs/qrstructuredappendparameters/setsequenceindicator/_index.md new file mode 100644 index 000000000..1f7752491 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/setsequenceindicator/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrStructuredAppendParameters.setSequenceIndicator" +linktitle: "setSequenceIndicator" +articleTitle: "setSequenceIndicator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the index of the QR structured append mode barcode. Index starts from 0." +type: docs +weight: 60 +url: /nodejs/qrstructuredappendparameters/setsequenceindicator/ +--- +## setSequenceIndicator(object) {#setsequenceindicator} + +Sets the index of the QR structured append mode barcode. Index starts from 0. + +```javascript +setSequenceIndicator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrstructuredappendparameters/settotalcount/_index.md b/english/nodejs/qrstructuredappendparameters/settotalcount/_index.md new file mode 100644 index 000000000..026d3d882 --- /dev/null +++ b/english/nodejs/qrstructuredappendparameters/settotalcount/_index.md @@ -0,0 +1,27 @@ +--- +title: "QrStructuredAppendParameters.setTotalCount" +linktitle: "setTotalCount" +articleTitle: "setTotalCount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the QR structured append mode barcodes quantity. Max value is 16." +type: docs +weight: 80 +url: /nodejs/qrstructuredappendparameters/settotalcount/ +--- +## setTotalCount(object) {#settotalcount} + +Sets the QR structured append mode barcodes quantity. Max value is 16. + +```javascript +setTotalCount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [QrStructuredAppendParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qrversion/_index.md b/english/nodejs/qrversion/_index.md new file mode 100644 index 000000000..68d3d6751 --- /dev/null +++ b/english/nodejs/qrversion/_index.md @@ -0,0 +1,72 @@ +--- +title: "QRVersion Enum" +linktitle: "QRVersion" +articleTitle: "QRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr." +type: docs +weight: 920 +url: /nodejs/qrversion/ +--- +## QRVersion enumeration + +Version of QR Code. From Version1 to Version40 for QR code and from M1 to M4 for MicroQr. + +```javascript +public enum QRVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the best version for QR. This is default value. | +| VERSION_01 | `1` | Specifies version 1 with 21 x 21 modules. | +| VERSION_02 | `2` | Specifies version 2 with 25 x 25 modules. | +| VERSION_03 | `3` | Specifies version 3 with 29 x 29 modules. | +| VERSION_04 | `4` | Specifies version 4 with 33 x 33 modules. | +| VERSION_05 | `5` | Specifies version 5 with 37 x 37 modules. | +| VERSION_06 | `6` | Specifies version 6 with 41 x 41 modules. | +| VERSION_07 | `7` | Specifies version 7 with 45 x 45 modules. | +| VERSION_08 | `8` | Specifies version 8 with 49 x 49 modules. | +| VERSION_09 | `9` | Specifies version 9 with 53 x 53 modules. | +| VERSION_10 | `10` | Specifies version 10 with 57 x 57 modules. | +| VERSION_11 | `11` | Specifies version 11 with 61 x 61 modules. | +| VERSION_12 | `12` | Specifies version 12 with 65 x 65 modules. | +| VERSION_13 | `13` | Specifies version 13 with 69 x 69 modules. | +| VERSION_14 | `14` | Specifies version 14 with 73 x 73 modules. | +| VERSION_15 | `15` | Specifies version 15 with 77 x 77 modules. | +| VERSION_16 | `16` | Specifies version 16 with 81 x 81 modules. | +| VERSION_17 | `17` | Specifies version 17 with 85 x 85 modules. | +| VERSION_18 | `18` | Specifies version 18 with 89 x 89 modules. | +| VERSION_19 | `19` | Specifies version 19 with 93 x 93 modules. | +| VERSION_20 | `20` | Specifies version 20 with 97 x 97 modules. | +| VERSION_21 | `21` | Specifies version 21 with 101 x 101 modules. | +| VERSION_22 | `22` | Specifies version 22 with 105 x 105 modules. | +| VERSION_23 | `23` | Specifies version 23 with 109 x 109 modules. | +| VERSION_24 | `24` | Specifies version 24 with 113 x 113 modules. | +| VERSION_25 | `25` | Specifies version 25 with 117 x 117 modules. | +| VERSION_26 | `26` | Specifies version 26 with 121 x 121 modules. | +| VERSION_27 | `27` | Specifies version 27 with 125 x 125 modules. | +| VERSION_28 | `28` | Specifies version 28 with 129 x 129 modules. | +| VERSION_29 | `29` | Specifies version 29 with 133 x 133 modules. | +| VERSION_30 | `30` | Specifies version 30 with 137 x 137 modules. | +| VERSION_31 | `31` | Specifies version 31 with 141 x 141 modules. | +| VERSION_32 | `32` | Specifies version 32 with 145 x 145 modules. | +| VERSION_33 | `33` | Specifies version 33 with 149 x 149 modules. | +| VERSION_34 | `34` | Specifies version 34 with 153 x 153 modules. | +| VERSION_35 | `35` | Specifies version 35 with 157 x 157 modules. | +| VERSION_36 | `36` | Specifies version 36 with 161 x 161 modules. | +| VERSION_37 | `37` | Specifies version 37 with 165 x 165 modules. | +| VERSION_38 | `38` | Specifies version 38 with 169 x 169 modules. | +| VERSION_39 | `39` | Specifies version 39 with 173 x 173 modules. | +| VERSION_40 | `40` | Specifies version 40 with 177 x 177 modules. | +| VERSION_M1 | `101` | Specifies version M1 for Micro QR with 11 x 11 modules. | +| VERSION_M2 | `102` | Specifies version M2 for Micro QR with 13 x 13 modules. | +| VERSION_M3 | `103` | Specifies version M3 for Micro QR with 15 x 15 modules. | +| VERSION_M4 | `104` | Specifies version M4 for Micro QR with 17 x 17 modules. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/quadrangle/_index.md b/english/nodejs/quadrangle/_index.md new file mode 100644 index 000000000..ab9770866 --- /dev/null +++ b/english/nodejs/quadrangle/_index.md @@ -0,0 +1,63 @@ +--- +title: "Quadrangle Class" +linktitle: "Quadrangle" +articleTitle: "Quadrangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Stores a set of four Points that represent a Quadrangle region." +type: docs +weight: 1270 +url: /nodejs/quadrangle/ +--- +## Quadrangle class + +Stores a set of four Points that represent a Quadrangle region. + +```javascript +public class Quadrangle : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Quadrangle](./quadrangle/#constructor)(*object, object, object, object*) | Initializes a new instance of the Quadrangle structure with the describing points. | + +## Methods + +| Name | Description | +| --- | --- | +| [EMPTY](./empty/) | Represents a Quadrangle structure with its properties left uninitialized.Value: Quadrangle. | +| [construct](./construct/)(*object*) | | +| [contains](./contains/)(*object*) | Determines if the specified Point is contained within this Quadrangle structure. | +| [containsPoint](./containspoint/)(*object, object*) | Determines if the specified point is contained within this Quadrangle structure. | +| [containsQuadrangle](./containsquadrangle/)(*object*) | Determines if the specified Quadrangle is contained or intersect this Quadrangle structure. | +| [containsRectangle](./containsrectangle/)(*object*) | Determines if the specified Rectangle is contained or intersect this Quadrangle structure. | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified Quadrangle value. | +| [getBoundingRectangle](./getboundingrectangle/) | Creates Rectangle bounding this Quadrangle. | +| [getLeftBottom](./getleftbottom/) | Gets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region. | +| [getLeftTop](./getlefttop/) | Gets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region. | +| [getRightBottom](./getrightbottom/) | Gets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region. | +| [getRightTop](./getrighttop/) | Gets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [isEmpty](./isempty/) | Tests whether all Points of this Quadrangle have values of zero.Value: Returns true if all Points of this Quadrangle have values of zero; otherwise, false. | +| [javaClassName](./javaclassname/) | | +| [setLeftBottom](./setleftbottom/)(*object*) | Sets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region. | +| [setLeftTop](./setlefttop/)(*object*) | Sets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region. | +| [setRightBottom](./setrightbottom/)(*object*) | Sets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region. | +| [setRightTop](./setrighttop/)(*object*) | Sets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region. | +| [toString](./tostring/) | Returns a human-readable string representation of this Quadrangle. | + +## Fields + +| Name | Description | +| --- | --- | +| [leftBottom](./leftbottom/) | | +| [leftTop](./lefttop/) | | +| [rightBottom](./rightbottom/) | | +| [rightTop](./righttop/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/quadrangle/construct/_index.md b/english/nodejs/quadrangle/construct/_index.md new file mode 100644 index 000000000..1ba758a55 --- /dev/null +++ b/english/nodejs/quadrangle/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "Quadrangle.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 70 +url: /nodejs/quadrangle/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(...args) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| ...args | object | | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/contains/_index.md b/english/nodejs/quadrangle/contains/_index.md new file mode 100644 index 000000000..edb374a53 --- /dev/null +++ b/english/nodejs/quadrangle/contains/_index.md @@ -0,0 +1,33 @@ +--- +title: "Quadrangle.contains" +linktitle: "contains" +articleTitle: "contains" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines if the specified Point is contained within this Quadrangle structure." +type: docs +weight: 190 +url: /nodejs/quadrangle/contains/ +--- +## contains(object) {#contains} + +Determines if the specified Point is contained within this Quadrangle structure. + +```javascript +contains(pt) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| pt | object | The Point to test. | + +### Return Value + +true + +if Point is contained within this Quadrangle structure; otherwise, false. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/containspoint/_index.md b/english/nodejs/quadrangle/containspoint/_index.md new file mode 100644 index 000000000..e28d20f52 --- /dev/null +++ b/english/nodejs/quadrangle/containspoint/_index.md @@ -0,0 +1,34 @@ +--- +title: "Quadrangle.containsPoint" +linktitle: "containsPoint" +articleTitle: "containsPoint" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines if the specified point is contained within this Quadrangle structure." +type: docs +weight: 200 +url: /nodejs/quadrangle/containspoint/ +--- +## containsPoint(object, object) {#containspoint} + +Determines if the specified point is contained within this Quadrangle structure. + +```javascript +containsPoint(x, y) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| x | object | The x point cordinate. | +| y | object | The y point cordinate. | + +### Return Value + +Returns + +true if point is contained within this Quadrangle structure; otherwise, false. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/containsquadrangle/_index.md b/english/nodejs/quadrangle/containsquadrangle/_index.md new file mode 100644 index 000000000..7e2132390 --- /dev/null +++ b/english/nodejs/quadrangle/containsquadrangle/_index.md @@ -0,0 +1,33 @@ +--- +title: "Quadrangle.containsQuadrangle" +linktitle: "containsQuadrangle" +articleTitle: "containsQuadrangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines if the specified Quadrangle is contained or intersect this Quadrangle structure." +type: docs +weight: 210 +url: /nodejs/quadrangle/containsquadrangle/ +--- +## containsQuadrangle(object) {#containsquadrangle} + +Determines if the specified Quadrangle is contained or intersect this Quadrangle structure. + +```javascript +containsQuadrangle(quad) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| quad | object | The Quadrangle to test. | + +### Return Value + +Returns + +true if Quadrangle is contained or intersect this Quadrangle structure; otherwise, false. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/containsrectangle/_index.md b/english/nodejs/quadrangle/containsrectangle/_index.md new file mode 100644 index 000000000..0e9d4265b --- /dev/null +++ b/english/nodejs/quadrangle/containsrectangle/_index.md @@ -0,0 +1,33 @@ +--- +title: "Quadrangle.containsRectangle" +linktitle: "containsRectangle" +articleTitle: "containsRectangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines if the specified Rectangle is contained or intersect this Quadrangle structure." +type: docs +weight: 220 +url: /nodejs/quadrangle/containsrectangle/ +--- +## containsRectangle(object) {#containsrectangle} + +Determines if the specified Rectangle is contained or intersect this Quadrangle structure. + +```javascript +containsRectangle(rect) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| rect | object | The Rectangle to test. | + +### Return Value + +Returns + +true if Rectangle is contained or intersect this Quadrangle structure; otherwise, false. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/empty/_index.md b/english/nodejs/quadrangle/empty/_index.md new file mode 100644 index 000000000..2b953f09a --- /dev/null +++ b/english/nodejs/quadrangle/empty/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.EMPTY" +linktitle: "EMPTY" +articleTitle: "EMPTY" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Represents a Quadrangle structure with its properties left uninitialized.Value: Quadrangle." +type: docs +weight: 60 +url: /nodejs/quadrangle/empty/ +--- +## EMPTY() {#empty} + +Represents a Quadrangle structure with its properties left uninitialized.Value: Quadrangle + +```javascript +static get EMPTY() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/equals/_index.md b/english/nodejs/quadrangle/equals/_index.md new file mode 100644 index 000000000..66345f543 --- /dev/null +++ b/english/nodejs/quadrangle/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "Quadrangle.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified Quadrangle value." +type: docs +weight: 230 +url: /nodejs/quadrangle/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified Quadrangle value. + +```javascript +equals(other) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| other | object | An Quadrangle value to compare to this instance. | + +### Return Value + +true + +if obj has the same value as this instance; otherwise, false. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/getboundingrectangle/_index.md b/english/nodejs/quadrangle/getboundingrectangle/_index.md new file mode 100644 index 000000000..98116c878 --- /dev/null +++ b/english/nodejs/quadrangle/getboundingrectangle/_index.md @@ -0,0 +1,29 @@ +--- +title: "Quadrangle.getBoundingRectangle" +linktitle: "getBoundingRectangle" +articleTitle: "getBoundingRectangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Creates Rectangle bounding this Quadrangle." +type: docs +weight: 260 +url: /nodejs/quadrangle/getboundingrectangle/ +--- +## getBoundingRectangle() {#getboundingrectangle} + +Creates Rectangle bounding this Quadrangle + +```javascript +getBoundingRectangle() +``` + +### Return Value + +returns + +Rectangle bounding this Quadrangle + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/getleftbottom/_index.md b/english/nodejs/quadrangle/getleftbottom/_index.md new file mode 100644 index 000000000..74e3dcd64 --- /dev/null +++ b/english/nodejs/quadrangle/getleftbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.getLeftBottom" +linktitle: "getLeftBottom" +articleTitle: "getLeftBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region." +type: docs +weight: 160 +url: /nodejs/quadrangle/getleftbottom/ +--- +## getLeftBottom() {#getleftbottom} + +Gets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region + +```javascript +getLeftBottom() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/getlefttop/_index.md b/english/nodejs/quadrangle/getlefttop/_index.md new file mode 100644 index 000000000..af83c209c --- /dev/null +++ b/english/nodejs/quadrangle/getlefttop/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.getLeftTop" +linktitle: "getLeftTop" +articleTitle: "getLeftTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region." +type: docs +weight: 100 +url: /nodejs/quadrangle/getlefttop/ +--- +## getLeftTop() {#getlefttop} + +Gets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region + +```javascript +getLeftTop() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/getrightbottom/_index.md b/english/nodejs/quadrangle/getrightbottom/_index.md new file mode 100644 index 000000000..ed5e4921b --- /dev/null +++ b/english/nodejs/quadrangle/getrightbottom/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.getRightBottom" +linktitle: "getRightBottom" +articleTitle: "getRightBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region." +type: docs +weight: 140 +url: /nodejs/quadrangle/getrightbottom/ +--- +## getRightBottom() {#getrightbottom} + +Gets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region + +```javascript +getRightBottom() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/getrighttop/_index.md b/english/nodejs/quadrangle/getrighttop/_index.md new file mode 100644 index 000000000..5a87aac75 --- /dev/null +++ b/english/nodejs/quadrangle/getrighttop/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.getRightTop" +linktitle: "getRightTop" +articleTitle: "getRightTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region." +type: docs +weight: 120 +url: /nodejs/quadrangle/getrighttop/ +--- +## getRightTop() {#getrighttop} + +Gets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region + +```javascript +getRightTop() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/hashcode/_index.md b/english/nodejs/quadrangle/hashcode/_index.md new file mode 100644 index 000000000..e49ff197d --- /dev/null +++ b/english/nodejs/quadrangle/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "Quadrangle.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 240 +url: /nodejs/quadrangle/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/init/_index.md b/english/nodejs/quadrangle/init/_index.md new file mode 100644 index 000000000..5baccbcfe --- /dev/null +++ b/english/nodejs/quadrangle/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 90 +url: /nodejs/quadrangle/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/isempty/_index.md b/english/nodejs/quadrangle/isempty/_index.md new file mode 100644 index 000000000..bca8f9d6c --- /dev/null +++ b/english/nodejs/quadrangle/isempty/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.isEmpty" +linktitle: "isEmpty" +articleTitle: "isEmpty" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Tests whether all Points of this Quadrangle have values of zero.Value: Returns true if all Points of this Quadrangle have values of zero; otherwise, false." +type: docs +weight: 180 +url: /nodejs/quadrangle/isempty/ +--- +## isEmpty() {#isempty} + +Tests whether all Points of this Quadrangle have values of zero.Value: Returns true if all Points of this Quadrangle have values of zero; otherwise, false. + +```javascript +isEmpty() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/javaclassname/_index.md b/english/nodejs/quadrangle/javaclassname/_index.md new file mode 100644 index 000000000..78f5837bf --- /dev/null +++ b/english/nodejs/quadrangle/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "Quadrangle.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 10 +url: /nodejs/quadrangle/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/quadrangle/_index.md b/english/nodejs/quadrangle/quadrangle/_index.md new file mode 100644 index 000000000..f94141578 --- /dev/null +++ b/english/nodejs/quadrangle/quadrangle/_index.md @@ -0,0 +1,30 @@ +--- +title: "Quadrangle" +linktitle: "Quadrangle" +articleTitle: "Quadrangle" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Quadrangle class." +type: docs +weight: 10 +url: /nodejs/quadrangle/quadrangle/ +--- +## Quadrangle(object, object, object, object) {#constructor} + +Initializes a new instance of the Quadrangle structure with the describing points. + +```javascript +public Quadrangle(object leftTop, object rightTop, object rightBottom, object leftBottom) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| leftTop | object | A Point that represents the left-top corner of the Quadrangle. | +| rightTop | object | A Point that represents the right-top corner of the Quadrangle. | +| rightBottom | object | A Point that represents the right-bottom corner of the Quadrangle. | +| leftBottom | object | A Point that represents the left-bottom corner of the Quadrangle. | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/setleftbottom/_index.md b/english/nodejs/quadrangle/setleftbottom/_index.md new file mode 100644 index 000000000..05f8b21aa --- /dev/null +++ b/english/nodejs/quadrangle/setleftbottom/_index.md @@ -0,0 +1,27 @@ +--- +title: "Quadrangle.setLeftBottom" +linktitle: "setLeftBottom" +articleTitle: "setLeftBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region." +type: docs +weight: 170 +url: /nodejs/quadrangle/setleftbottom/ +--- +## setLeftBottom(object) {#setleftbottom} + +Sets left-bottom corner Point of Quadrangle regionValue: A left-bottom corner Point of Quadrangle region + +```javascript +setLeftBottom(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/setlefttop/_index.md b/english/nodejs/quadrangle/setlefttop/_index.md new file mode 100644 index 000000000..6e6f2b181 --- /dev/null +++ b/english/nodejs/quadrangle/setlefttop/_index.md @@ -0,0 +1,27 @@ +--- +title: "Quadrangle.setLeftTop" +linktitle: "setLeftTop" +articleTitle: "setLeftTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region." +type: docs +weight: 110 +url: /nodejs/quadrangle/setlefttop/ +--- +## setLeftTop(object) {#setlefttop} + +Sets left-top corner Point of Quadrangle regionValue: A left-top corner Point of Quadrangle region + +```javascript +setLeftTop(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/setrightbottom/_index.md b/english/nodejs/quadrangle/setrightbottom/_index.md new file mode 100644 index 000000000..f05aaee5b --- /dev/null +++ b/english/nodejs/quadrangle/setrightbottom/_index.md @@ -0,0 +1,27 @@ +--- +title: "Quadrangle.setRightBottom" +linktitle: "setRightBottom" +articleTitle: "setRightBottom" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region." +type: docs +weight: 150 +url: /nodejs/quadrangle/setrightbottom/ +--- +## setRightBottom(object) {#setrightbottom} + +Sets right-bottom corner Point of Quadrangle regionValue: A right-bottom corner Point of Quadrangle region + +```javascript +setRightBottom(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/setrighttop/_index.md b/english/nodejs/quadrangle/setrighttop/_index.md new file mode 100644 index 000000000..5256682e4 --- /dev/null +++ b/english/nodejs/quadrangle/setrighttop/_index.md @@ -0,0 +1,27 @@ +--- +title: "Quadrangle.setRightTop" +linktitle: "setRightTop" +articleTitle: "setRightTop" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region." +type: docs +weight: 130 +url: /nodejs/quadrangle/setrighttop/ +--- +## setRightTop(object) {#setrighttop} + +Sets right-top corner Point of Quadrangle regionValue: A right-top corner Point of Quadrangle region + +```javascript +setRightTop(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/quadrangle/tostring/_index.md b/english/nodejs/quadrangle/tostring/_index.md new file mode 100644 index 000000000..1c667a9aa --- /dev/null +++ b/english/nodejs/quadrangle/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Quadrangle.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Quadrangle." +type: docs +weight: 250 +url: /nodejs/quadrangle/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Quadrangle. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Quadrangle. + +### See Also + +* class [Quadrangle](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/_index.md b/english/nodejs/qualitysettings/_index.md new file mode 100644 index 000000000..92290add6 --- /dev/null +++ b/english/nodejs/qualitysettings/_index.md @@ -0,0 +1,132 @@ +--- +title: "QualitySettings Class" +linktitle: "QualitySettings" +articleTitle: "QualitySettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, Norm..." +type: docs +weight: 1350 +url: /nodejs/qualitysettings/ +--- +## QualitySettings class + +QualitySettings allows to configure recognition quality and speed manually. You can quickly set up QualitySettings by embedded presets: HighPerformance, NormalQuality, HighQuality, MaxBarCodes or you can manually configure separate options. Default value of QualitySettings is NormalQuality. + +```javascript +public class QualitySettings : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [QualitySettings](./qualitysettings/#constructor)(*object*) | Initializes a new instance of the QualitySettings class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getAllowIncorrectBarcodes](./getallowincorrectbarcodes/) | Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text. | +| [getBarcodeQuality](./getbarcodequality/) | Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. | +| [getComplexBackground](./getcomplexbackground/) | Mode which enables or disables additional recognition of color barcodes on color images. | +| [getDeconvolution](./getdeconvolution/) | Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the... | +| [getHighPerformance](./gethighperformance/) | HighPerformance recognition quality preset. High quality barcodes are recognized well in this mode. | +| [getHighQuality](./gethighquality/) | HighQuality recognition quality preset. This preset is developed for low quality barcodes. | +| [getInverseImage](./getinverseimage/) | Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). | +| [getMaxQuality](./getmaxquality/) | MaxQuality recognition quality preset. This preset is developed to recognize all possible barcodes, even incorrect barcodes. | +| [getMinimalXDimension](./getminimalxdimension/) | Minimal size of XDimension in pixels which is used with UseMinimalXDimension. | +| [getNormalQuality](./getnormalquality/) | NormalQuality recognition quality preset. Suitable for the most of barcodes. | +| [getXDimension](./getxdimension/) | Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. | +| [init](./init/) | | +| [initQualitySettings](./initqualitysettings/) | | +| [setAllowIncorrectBarcodes](./setallowincorrectbarcodes/)(*object*) | Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text. | +| [setBarcodeQuality](./setbarcodequality/)(*object*) | Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. | +| [setComplexBackground](./setcomplexbackground/)(*object*) | Mode which enables or disables additional recognition of color barcodes on color images. | +| [setDeconvolution](./setdeconvolution/)(*object*) | Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the... | +| [setInverseImage](./setinverseimage/)(*object*) | Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). | +| [setMinimalXDimension](./setminimalxdimension/)(*object*) | Minimal size of XDimension in pixels which is used with UseMinimalXDimension. | +| [setXDimension](./setxdimension/)(*object*) | Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. | + +## Examples + +```javascript +//This sample shows how to use QualitySettings with BarCodeReader +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//normal quality mode is set by default +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high quality mode with low speed recognition +reader.setQualitySettings(QualitySettings.getHighQuality()); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set max barcodes mode, which tries to find all possible barcodes, even incorrect. The slowest recognition mode +reader.setQualitySettings(QualitySettings.getMaxBarCodes()); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//set high performance mode +reader.setQualitySettings(QualitySettings.getHighPerformance()); +//set separate options +reader.getQualitySettings().setAllowMedianSmoothing(true); +reader.getQualitySettings().setMedianSmoothingWindowSize(5); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +```javascript +let reader = new BarCodeReader("test.png", null, [ DecodeType.CODE_39, DecodeType.CODE_128 ]); +//default mode is NormalQuality +//set separate options +reader.getQualitySettings().setAllowMedianSmoothing(true); +reader.getQualitySettings().setMedianSmoothingWindowSize(5); +let results = reader.readBarCodes(); +for(let i = 0; i < results.length; i++) +{ +let result = results[i]; +console.log("BarCode CodeText: " + result.getCodeText()); +} +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/qualitysettings/getallowincorrectbarcodes/_index.md b/english/nodejs/qualitysettings/getallowincorrectbarcodes/_index.md new file mode 100644 index 000000000..f8c8f90e4 --- /dev/null +++ b/english/nodejs/qualitysettings/getallowincorrectbarcodes/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getAllowIncorrectBarcodes" +linktitle: "getAllowIncorrectBarcodes" +articleTitle: "getAllowIncorrectBarcodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text." +type: docs +weight: 200 +url: /nodejs/qualitysettings/getallowincorrectbarcodes/ +--- +## getAllowIncorrectBarcodes() {#getallowincorrectbarcodes} + +Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text. + +```javascript +getAllowIncorrectBarcodes() +``` + +### Return Value + +Allows + +engine to recognize incorrect barcodes. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getbarcodequality/_index.md b/english/nodejs/qualitysettings/getbarcodequality/_index.md new file mode 100644 index 000000000..24a3d70e0 --- /dev/null +++ b/english/nodejs/qualitysettings/getbarcodequality/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getBarcodeQuality" +linktitle: "getBarcodeQuality" +articleTitle: "getBarcodeQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows..." +type: docs +weight: 120 +url: /nodejs/qualitysettings/getbarcodequality/ +--- +## getBarcodeQuality() {#getbarcodequality} + +Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. + +```javascript +getBarcodeQuality() +``` + +### Return Value + +Mode + +which enables methods to recognize barcode elements with the selected quality. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getcomplexbackground/_index.md b/english/nodejs/qualitysettings/getcomplexbackground/_index.md new file mode 100644 index 000000000..76eccbfdd --- /dev/null +++ b/english/nodejs/qualitysettings/getcomplexbackground/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getComplexBackground" +linktitle: "getComplexBackground" +articleTitle: "getComplexBackground" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of color barcodes on color images." +type: docs +weight: 180 +url: /nodejs/qualitysettings/getcomplexbackground/ +--- +## getComplexBackground() {#getcomplexbackground} + +Mode which enables or disables additional recognition of color barcodes on color images. + +```javascript +getComplexBackground() +``` + +### Return Value + +Additional + +recognition of color barcodes on color images. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getdeconvolution/_index.md b/english/nodejs/qualitysettings/getdeconvolution/_index.md new file mode 100644 index 000000000..7c8495240 --- /dev/null +++ b/english/nodejs/qualitysettings/getdeconvolution/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getDeconvolution" +linktitle: "getDeconvolution" +articleTitle: "getDeconvolution" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (co..." +type: docs +weight: 140 +url: /nodejs/qualitysettings/getdeconvolution/ +--- +## getDeconvolution() {#getdeconvolution} + +Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the image, we have to check most well know functions like sharp or mathematical morphology. + +```javascript +getDeconvolution() +``` + +### Return Value + +Deconvolution + +mode which defines level of image degradation. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/gethighperformance/_index.md b/english/nodejs/qualitysettings/gethighperformance/_index.md new file mode 100644 index 000000000..5a79e5696 --- /dev/null +++ b/english/nodejs/qualitysettings/gethighperformance/_index.md @@ -0,0 +1,30 @@ +--- +title: "QualitySettings.getHighPerformance" +linktitle: "getHighPerformance" +articleTitle: "getHighPerformance" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HighPerformance recognition quality preset. High quality barcodes are recognized well in this mode." +type: docs +weight: 40 +url: /nodejs/qualitysettings/gethighperformance/ +--- +## getHighPerformance() {#gethighperformance} + +HighPerformance recognition quality preset. High quality barcodes are recognized well in this mode. + +```javascript +static getHighPerformance() +``` + +## Examples + +```javascript +let reader = new BarCodeReader("test.png"); +reader.setQualitySettings(QualitySettings.getHighPerformance()); +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/gethighquality/_index.md b/english/nodejs/qualitysettings/gethighquality/_index.md new file mode 100644 index 000000000..5ec07c922 --- /dev/null +++ b/english/nodejs/qualitysettings/gethighquality/_index.md @@ -0,0 +1,30 @@ +--- +title: "QualitySettings.getHighQuality" +linktitle: "getHighQuality" +articleTitle: "getHighQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "HighQuality recognition quality preset. This preset is developed for low quality barcodes." +type: docs +weight: 60 +url: /nodejs/qualitysettings/gethighquality/ +--- +## getHighQuality() {#gethighquality} + +HighQuality recognition quality preset. This preset is developed for low quality barcodes. + +```javascript +static getHighQuality() +``` + +## Examples + +```javascript +let reader = new BarCodeReader("test.png"); +reader.setQualitySettings(QualitySettings.getHighQuality()); +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getinverseimage/_index.md b/english/nodejs/qualitysettings/getinverseimage/_index.md new file mode 100644 index 000000000..0208ab652 --- /dev/null +++ b/english/nodejs/qualitysettings/getinverseimage/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getInverseImage" +linktitle: "getInverseImage" +articleTitle: "getInverseImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance)." +type: docs +weight: 160 +url: /nodejs/qualitysettings/getinverseimage/ +--- +## getInverseImage() {#getinverseimage} + +Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). + +```javascript +getInverseImage() +``` + +### Return Value + +Additional + +recognition of barcodes on images with inverse colors + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getmaxquality/_index.md b/english/nodejs/qualitysettings/getmaxquality/_index.md new file mode 100644 index 000000000..8263d2de1 --- /dev/null +++ b/english/nodejs/qualitysettings/getmaxquality/_index.md @@ -0,0 +1,23 @@ +--- +title: "QualitySettings.getMaxQuality" +linktitle: "getMaxQuality" +articleTitle: "getMaxQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "MaxQuality recognition quality preset. This preset is developed to recognize all possible barcodes, even incorrect barcodes." +type: docs +weight: 70 +url: /nodejs/qualitysettings/getmaxquality/ +--- +## getMaxQuality() {#getmaxquality} + +MaxQuality recognition quality preset. This preset is developed to recognize all possible barcodes, even incorrect barcodes. + +```javascript +static getMaxQuality() +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getminimalxdimension/_index.md b/english/nodejs/qualitysettings/getminimalxdimension/_index.md new file mode 100644 index 000000000..f2e794682 --- /dev/null +++ b/english/nodejs/qualitysettings/getminimalxdimension/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getMinimalXDimension" +linktitle: "getMinimalXDimension" +articleTitle: "getMinimalXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Minimal size of XDimension in pixels which is used with UseMinimalXDimension." +type: docs +weight: 100 +url: /nodejs/qualitysettings/getminimalxdimension/ +--- +## getMinimalXDimension() {#getminimalxdimension} + +Minimal size of XDimension in pixels which is used with UseMinimalXDimension. + +```javascript +getMinimalXDimension() +``` + +### Return Value + +Minimal + +size of XDimension in pixels which is used with UseMinimalXDimension. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getnormalquality/_index.md b/english/nodejs/qualitysettings/getnormalquality/_index.md new file mode 100644 index 000000000..3c698b724 --- /dev/null +++ b/english/nodejs/qualitysettings/getnormalquality/_index.md @@ -0,0 +1,30 @@ +--- +title: "QualitySettings.getNormalQuality" +linktitle: "getNormalQuality" +articleTitle: "getNormalQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "NormalQuality recognition quality preset. Suitable for the most of barcodes." +type: docs +weight: 50 +url: /nodejs/qualitysettings/getnormalquality/ +--- +## getNormalQuality() {#getnormalquality} + +NormalQuality recognition quality preset. Suitable for the most of barcodes + +```javascript +static getNormalQuality() +``` + +## Examples + +```javascript +let reader = new BarCodeReader("test.png"); +reader.setQualitySettings(QualitySettings.getNormalQuality()); +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/getxdimension/_index.md b/english/nodejs/qualitysettings/getxdimension/_index.md new file mode 100644 index 000000000..c6f8ef40d --- /dev/null +++ b/english/nodejs/qualitysettings/getxdimension/_index.md @@ -0,0 +1,29 @@ +--- +title: "QualitySettings.getXDimension" +linktitle: "getXDimension" +articleTitle: "getXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar." +type: docs +weight: 80 +url: /nodejs/qualitysettings/getxdimension/ +--- +## getXDimension() {#getxdimension} + +Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. + +```javascript +getXDimension() +``` + +### Return Value + +size + +(from 1 to infinity) of barcode minimal element: matrix cell or bar. + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/init/_index.md b/english/nodejs/qualitysettings/init/_index.md new file mode 100644 index 000000000..44c350233 --- /dev/null +++ b/english/nodejs/qualitysettings/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "QualitySettings.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/qualitysettings/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/initqualitysettings/_index.md b/english/nodejs/qualitysettings/initqualitysettings/_index.md new file mode 100644 index 000000000..ec3875d7a --- /dev/null +++ b/english/nodejs/qualitysettings/initqualitysettings/_index.md @@ -0,0 +1,23 @@ +--- +title: "QualitySettings.initQualitySettings" +linktitle: "initQualitySettings" +articleTitle: "initQualitySettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/qualitysettings/initqualitysettings/ +--- +## initQualitySettings() {#initqualitysettings} + + + +```javascript +static initQualitySettings() +``` + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/qualitysettings/_index.md b/english/nodejs/qualitysettings/qualitysettings/_index.md new file mode 100644 index 000000000..f97041e15 --- /dev/null +++ b/english/nodejs/qualitysettings/qualitysettings/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings" +linktitle: "QualitySettings" +articleTitle: "QualitySettings" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the QualitySettings class." +type: docs +weight: 10 +url: /nodejs/qualitysettings/qualitysettings/ +--- +## QualitySettings(object) {#constructor} + +Initializes a new instance of the QualitySettings class. + +```javascript +public QualitySettings(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setallowincorrectbarcodes/_index.md b/english/nodejs/qualitysettings/setallowincorrectbarcodes/_index.md new file mode 100644 index 000000000..28ca8aae0 --- /dev/null +++ b/english/nodejs/qualitysettings/setallowincorrectbarcodes/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setAllowIncorrectBarcodes" +linktitle: "setAllowIncorrectBarcodes" +articleTitle: "setAllowIncorrectBarcodes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text." +type: docs +weight: 210 +url: /nodejs/qualitysettings/setallowincorrectbarcodes/ +--- +## setAllowIncorrectBarcodes(object) {#setallowincorrectbarcodes} + +Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. Mode can be used to recognize damaged barcodes with incorrect text. + +```javascript +setAllowIncorrectBarcodes(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Allows engine to recognize incorrect barcodes. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setbarcodequality/_index.md b/english/nodejs/qualitysettings/setbarcodequality/_index.md new file mode 100644 index 000000000..97ae2ac95 --- /dev/null +++ b/english/nodejs/qualitysettings/setbarcodequality/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setBarcodeQuality" +linktitle: "setBarcodeQuality" +articleTitle: "setBarcodeQuality" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows..." +type: docs +weight: 130 +url: /nodejs/qualitysettings/setbarcodequality/ +--- +## setBarcodeQuality(object) {#setbarcodequality} + +Mode which enables methods to recognize barcode elements with the selected quality. Barcode element with lower quality requires more hard methods which slows the recognition. + +```javascript +setBarcodeQuality(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Mode which enables methods to recognize barcode elements with the selected quality. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setcomplexbackground/_index.md b/english/nodejs/qualitysettings/setcomplexbackground/_index.md new file mode 100644 index 000000000..6f173a1f4 --- /dev/null +++ b/english/nodejs/qualitysettings/setcomplexbackground/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setComplexBackground" +linktitle: "setComplexBackground" +articleTitle: "setComplexBackground" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of color barcodes on color images." +type: docs +weight: 190 +url: /nodejs/qualitysettings/setcomplexbackground/ +--- +## setComplexBackground(object) {#setcomplexbackground} + +Mode which enables or disables additional recognition of color barcodes on color images. + +```javascript +setComplexBackground(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Additional recognition of color barcodes on color images. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setdeconvolution/_index.md b/english/nodejs/qualitysettings/setdeconvolution/_index.md new file mode 100644 index 000000000..38b0396b8 --- /dev/null +++ b/english/nodejs/qualitysettings/setdeconvolution/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setDeconvolution" +linktitle: "setDeconvolution" +articleTitle: "setDeconvolution" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (co..." +type: docs +weight: 150 +url: /nodejs/qualitysettings/setdeconvolution/ +--- +## setDeconvolution(object) {#setdeconvolution} + +Deconvolution (image restorations) mode which defines level of image degradation. Originally deconvolution is a function which can restore image degraded (convoluted) by any natural function like blur, during obtaining image by camera. Because we cannot detect image function which corrupt the image, we have to check most well know functions like sharp or mathematical morphology. + +```javascript +setDeconvolution(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Deconvolution mode which defines level of image degradation. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setinverseimage/_index.md b/english/nodejs/qualitysettings/setinverseimage/_index.md new file mode 100644 index 000000000..6606cf249 --- /dev/null +++ b/english/nodejs/qualitysettings/setinverseimage/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setInverseImage" +linktitle: "setInverseImage" +articleTitle: "setInverseImage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance)." +type: docs +weight: 170 +url: /nodejs/qualitysettings/setinverseimage/ +--- +## setInverseImage(object) {#setinverseimage} + +Mode which enables or disables additional recognition of barcodes on images with inverted colors (luminance). + +```javascript +setInverseImage(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Additional recognition of barcodes on images with inverse colors | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setminimalxdimension/_index.md b/english/nodejs/qualitysettings/setminimalxdimension/_index.md new file mode 100644 index 000000000..e656adb2e --- /dev/null +++ b/english/nodejs/qualitysettings/setminimalxdimension/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setMinimalXDimension" +linktitle: "setMinimalXDimension" +articleTitle: "setMinimalXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Minimal size of XDimension in pixels which is used with UseMinimalXDimension." +type: docs +weight: 110 +url: /nodejs/qualitysettings/setminimalxdimension/ +--- +## setMinimalXDimension(object) {#setminimalxdimension} + +Minimal size of XDimension in pixels which is used with UseMinimalXDimension. + +```javascript +setMinimalXDimension(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Minimal size of XDimension in pixels which is used with UseMinimalXDimension. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/qualitysettings/setxdimension/_index.md b/english/nodejs/qualitysettings/setxdimension/_index.md new file mode 100644 index 000000000..75dfb4f14 --- /dev/null +++ b/english/nodejs/qualitysettings/setxdimension/_index.md @@ -0,0 +1,27 @@ +--- +title: "QualitySettings.setXDimension" +linktitle: "setXDimension" +articleTitle: "setXDimension" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar." +type: docs +weight: 90 +url: /nodejs/qualitysettings/setxdimension/ +--- +## setXDimension(object) {#setxdimension} + +Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. + +```javascript +setXDimension(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | (from 1 to infinity) of barcode minimal element: matrix cell or bar. | + +### See Also + +* class [QualitySettings](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/_index.md b/english/nodejs/recognitionabortedexception/_index.md new file mode 100644 index 000000000..53664db92 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/_index.md @@ -0,0 +1,44 @@ +--- +title: "RecognitionAbortedException Class" +linktitle: "RecognitionAbortedException" +articleTitle: "RecognitionAbortedException" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Represents recognition abort exception which is thrown in timeout exceeding during recognition with BarCodeReader." +type: docs +weight: 1400 +url: /nodejs/recognitionabortedexception/ +--- +## RecognitionAbortedException class + +Represents recognition abort exception which is thrown in timeout exceeding during recognition with BarCodeReader. + +```javascript +public class RecognitionAbortedException : Error +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [RecognitionAbortedException](./recognitionabortedexception/#constructor)(*object, object*) | Initializes a new instance of the [`RecognitionAbortedException`](..//recognitionabortedexception/) class with specified recognition abort message. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [getExecutionTime](./getexecutiontime/) | Gets the execution time of current recognition session. | +| [init](./init/) | | +| [javaClassName](./javaclassname/) | | +| [setExecutionTime](./setexecutiontime/)(*object*) | Sets the execution time of current recognition session. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClass](./javaclass/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/recognitionabortedexception/construct/_index.md b/english/nodejs/recognitionabortedexception/construct/_index.md new file mode 100644 index 000000000..97c525402 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "RecognitionAbortedException.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/recognitionabortedexception/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/getexecutiontime/_index.md b/english/nodejs/recognitionabortedexception/getexecutiontime/_index.md new file mode 100644 index 000000000..0100fcfe8 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/getexecutiontime/_index.md @@ -0,0 +1,29 @@ +--- +title: "RecognitionAbortedException.getExecutionTime" +linktitle: "getExecutionTime" +articleTitle: "getExecutionTime" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the execution time of current recognition session." +type: docs +weight: 30 +url: /nodejs/recognitionabortedexception/getexecutiontime/ +--- +## getExecutionTime() {#getexecutiontime} + +Gets the execution time of current recognition session + +```javascript +getExecutionTime() +``` + +### Return Value + +The + +execution time of current recognition session + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/init/_index.md b/english/nodejs/recognitionabortedexception/init/_index.md new file mode 100644 index 000000000..788c58d99 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "RecognitionAbortedException.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 70 +url: /nodejs/recognitionabortedexception/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/javaclassname/_index.md b/english/nodejs/recognitionabortedexception/javaclassname/_index.md new file mode 100644 index 000000000..3c14948f1 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/javaclassname/_index.md @@ -0,0 +1,23 @@ +--- +title: "RecognitionAbortedException.javaClassName" +linktitle: "javaClassName" +articleTitle: "javaClassName" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/recognitionabortedexception/javaclassname/ +--- +## javaClassName() {#javaclassname} + + + +```javascript +static get javaClassName() +``` + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/recognitionabortedexception/_index.md b/english/nodejs/recognitionabortedexception/recognitionabortedexception/_index.md new file mode 100644 index 000000000..1e224dcba --- /dev/null +++ b/english/nodejs/recognitionabortedexception/recognitionabortedexception/_index.md @@ -0,0 +1,28 @@ +--- +title: "RecognitionAbortedException" +linktitle: "RecognitionAbortedException" +articleTitle: "RecognitionAbortedException" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the RecognitionAbortedException class." +type: docs +weight: 10 +url: /nodejs/recognitionabortedexception/recognitionabortedexception/ +--- +## RecognitionAbortedException(object, object) {#constructor} + +Initializes a new instance of the [`RecognitionAbortedException`](../..//recognitionabortedexception/) class with specified recognition abort message. + +```javascript +public RecognitionAbortedException(object message, object executionTime) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| message | object | The error message of the exception. | +| executionTime | object | The execution time of current recognition session. | + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/recognitionabortedexception/setexecutiontime/_index.md b/english/nodejs/recognitionabortedexception/setexecutiontime/_index.md new file mode 100644 index 000000000..6de805d54 --- /dev/null +++ b/english/nodejs/recognitionabortedexception/setexecutiontime/_index.md @@ -0,0 +1,27 @@ +--- +title: "RecognitionAbortedException.setExecutionTime" +linktitle: "setExecutionTime" +articleTitle: "setExecutionTime" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the execution time of current recognition session." +type: docs +weight: 40 +url: /nodejs/recognitionabortedexception/setexecutiontime/ +--- +## setExecutionTime(object) {#setexecutiontime} + +Sets the execution time of current recognition session + +```javascript +setExecutionTime(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The execution time of current recognition session | + +### See Also + +* class [RecognitionAbortedException](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/rectmicroqrversion/_index.md b/english/nodejs/rectmicroqrversion/_index.md new file mode 100644 index 000000000..ae2f9ea75 --- /dev/null +++ b/english/nodejs/rectmicroqrversion/_index.md @@ -0,0 +1,60 @@ +--- +title: "RectMicroQRVersion Enum" +linktitle: "RectMicroQRVersion" +articleTitle: "RectMicroQRVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Version of RectMicroQR Code. From version R7x43 to version R17x139." +type: docs +weight: 1240 +url: /nodejs/rectmicroqrversion/ +--- +## RectMicroQRVersion enumeration + +Version of RectMicroQR Code. From version R7x43 to version R17x139. + +```javascript +public enum RectMicroQRVersion +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Specifies to automatically pick up the best version for RectMicroQR. This is default value. | +| R7x43 | `1` | Specifies version with 7 x 43 modules. | +| R7x59 | `2` | Specifies version with 7 x 59 modules. | +| R7x77 | `3` | Specifies version with 7 x 77 modules. | +| R7x99 | `4` | Specifies version with 7 x 99 modules. | +| R7x139 | `5` | Specifies version with 7 x 139 modules. | +| R9x43 | `6` | Specifies version with 9 x 43 modules. | +| R9x59 | `7` | Specifies version with 9 x 59 modules. | +| R9x77 | `8` | Specifies version with 9 x 77 modules. | +| R9x99 | `9` | Specifies version with 9 x 99 modules. | +| R9x139 | `10` | Specifies version with 9 x 139 modules. | +| R11x27 | `11` | Specifies version with 11 x 27 modules. | +| R11x43 | `12` | Specifies version with 11 x 43 modules. | +| R11x59 | `13` | Specifies version with 11 x 59 modules. | +| R11x77 | `14` | Specifies version with 11 x 77 modules. | +| R11x99 | `15` | Specifies version with 11 x 99 modules. | +| R11x139 | `16` | Specifies version with 11 x 139 modules. | +| R13x27 | `17` | Specifies version with 13 x 27 modules. | +| R13x43 | `18` | Specifies version with 13 x 43 modules. | +| R13x59 | `19` | Specifies version with 13 x 59 modules. | +| R13x77 | `20` | Specifies version with 13 x 77 modules. | +| R13x99 | `21` | Specifies version with 13 x 99 modules. | +| R13x139 | `22` | Specifies version with 13 x 139 modules. | +| R15x43 | `23` | Specifies version with 15 x 43 modules. | +| R15x59 | `24` | Specifies version with 15 x 59 modules. | +| R15x77 | `25` | Specifies version with 15 x 77 modules. | +| R15x99 | `26` | Specifies version with 15 x 99 modules. | +| R15x139 | `27` | Specifies version with 15 x 139 modules. | +| R17x43 | `28` | Specifies version with 17 x 43 modules. | +| R17x59 | `29` | Specifies version with 17 x 59 modules. | +| R17x77 | `30` | Specifies version with 17 x 77 modules. | +| R17x99 | `31` | Specifies version with 17 x 99 modules. | +| R17x139 | `32` | Specifies version with 17 x 139 modules. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/secondaryandadditionaldata/_index.md b/english/nodejs/secondaryandadditionaldata/_index.md new file mode 100644 index 000000000..0504f5f95 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/_index.md @@ -0,0 +1,57 @@ +--- +title: "SecondaryAndAdditionalData Class" +linktitle: "SecondaryAndAdditionalData" +articleTitle: "SecondaryAndAdditionalData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for storing HIBC LIC secondary and additional data." +type: docs +weight: 290 +url: /nodejs/secondaryandadditionaldata/ +--- +## SecondaryAndAdditionalData class + +Class for storing HIBC LIC secondary and additional data. + +```javascript +public class SecondaryAndAdditionalData : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SecondaryAndAdditionalData](./secondaryandadditionaldata/#constructor) | Initializes a new instance of the SecondaryAndAdditionalData class. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [equals](./equals/)(*object*) | Returns a value indicating whether this instance is equal to a specified SecondaryAndAdditionalData value. | +| [getDateOfManufacture](./getdateofmanufacture/) | Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue. | +| [getExpiryDate](./getexpirydate/) | Identifies expiry date. Will be used if ExpiryDateFormat is not set to None. | +| [getExpiryDateFormat](./getexpirydateformat/) | Identifies expiry date format. | +| [getLotNumber](./getlotnumber/) | Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. . | +| [getQuantity](./getquantity/) | Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1. | +| [getSerialNumber](./getserialnumber/) | Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length. | +| [hashCode](./hashcode/) | Returns the hash code for this instance. | +| [init](./init/) | | +| [parseFromString](./parsefromstring/)(*object*) | Instantiates secondary and additional supplemental data from string format according HIBC LIC specification. | +| [setDateOfManufacture](./setdateofmanufacture/)(*object*) | Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue. | +| [setExpiryDate](./setexpirydate/)(*object*) | Identifies expiry date. Will be used if ExpiryDateFormat is not set to None. | +| [setExpiryDateFormat](./setexpirydateformat/)(*object*) | Identifies expiry date format. | +| [setLotNumber](./setlotnumber/)(*object*) | Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. . | +| [setQuantity](./setquantity/)(*object*) | Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1. | +| [setSerialNumber](./setserialnumber/)(*object*) | Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length. | +| [toString](./tostring/) | Converts data to string format according HIBC LIC specification. | + +## Fields + +| Name | Description | +| --- | --- | +| [JAVA_CLASS_NAME](./java_class_name/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/secondaryandadditionaldata/construct/_index.md b/english/nodejs/secondaryandadditionaldata/construct/_index.md new file mode 100644 index 000000000..ed6ef00d1 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/secondaryandadditionaldata/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(java_class) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| java_class | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/equals/_index.md b/english/nodejs/secondaryandadditionaldata/equals/_index.md new file mode 100644 index 000000000..c61aeba9b --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "SecondaryAndAdditionalData.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a value indicating whether this instance is equal to a specified SecondaryAndAdditionalData value." +type: docs +weight: 180 +url: /nodejs/secondaryandadditionaldata/equals/ +--- +## equals(object) {#equals} + +Returns a value indicating whether this instance is equal to a specified `SecondaryAndAdditionalData` value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | An { | + +### Return Value + +@code true + +true} if obj has the same value as this instance; otherwise, { + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getdateofmanufacture/_index.md b/english/nodejs/secondaryandadditionaldata/getdateofmanufacture/_index.md new file mode 100644 index 000000000..2633e465a --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getdateofmanufacture/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getDateOfManufacture" +linktitle: "getDateOfManufacture" +articleTitle: "getDateOfManufacture" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue." +type: docs +weight: 120 +url: /nodejs/secondaryandadditionaldata/getdateofmanufacture/ +--- +## getDateOfManufacture() {#getdateofmanufacture} + +Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue + +```javascript +getDateOfManufacture() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getexpirydate/_index.md b/english/nodejs/secondaryandadditionaldata/getexpirydate/_index.md new file mode 100644 index 000000000..9d114fcb9 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getexpirydate/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getExpiryDate" +linktitle: "getExpiryDate" +articleTitle: "getExpiryDate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies expiry date. Will be used if ExpiryDateFormat is not set to None." +type: docs +weight: 60 +url: /nodejs/secondaryandadditionaldata/getexpirydate/ +--- +## getExpiryDate() {#getexpirydate} + +Identifies expiry date. Will be used if ExpiryDateFormat is not set to None. + +```javascript +getExpiryDate() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getexpirydateformat/_index.md b/english/nodejs/secondaryandadditionaldata/getexpirydateformat/_index.md new file mode 100644 index 000000000..8730e1a7a --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getexpirydateformat/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getExpiryDateFormat" +linktitle: "getExpiryDateFormat" +articleTitle: "getExpiryDateFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies expiry date format." +type: docs +weight: 40 +url: /nodejs/secondaryandadditionaldata/getexpirydateformat/ +--- +## getExpiryDateFormat() {#getexpirydateformat} + +Identifies expiry date format. + +```javascript +getExpiryDateFormat() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getlotnumber/_index.md b/english/nodejs/secondaryandadditionaldata/getlotnumber/_index.md new file mode 100644 index 000000000..d34cde4cb --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getlotnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getLotNumber" +linktitle: "getLotNumber" +articleTitle: "getLotNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. ." +type: docs +weight: 80 +url: /nodejs/secondaryandadditionaldata/getlotnumber/ +--- +## getLotNumber() {#getlotnumber} + +Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. . + +```javascript +getLotNumber() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getquantity/_index.md b/english/nodejs/secondaryandadditionaldata/getquantity/_index.md new file mode 100644 index 000000000..19751afe9 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getquantity/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getQuantity" +linktitle: "getQuantity" +articleTitle: "getQuantity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1." +type: docs +weight: 140 +url: /nodejs/secondaryandadditionaldata/getquantity/ +--- +## getQuantity() {#getquantity} + +Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1 + +```javascript +getQuantity() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/getserialnumber/_index.md b/english/nodejs/secondaryandadditionaldata/getserialnumber/_index.md new file mode 100644 index 000000000..49e5d2deb --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/getserialnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.getSerialNumber" +linktitle: "getSerialNumber" +articleTitle: "getSerialNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length." +type: docs +weight: 100 +url: /nodejs/secondaryandadditionaldata/getserialnumber/ +--- +## getSerialNumber() {#getserialnumber} + +Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length. + +```javascript +getSerialNumber() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/hashcode/_index.md b/english/nodejs/secondaryandadditionaldata/hashcode/_index.md new file mode 100644 index 000000000..a49dfed1a --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "SecondaryAndAdditionalData.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns the hash code for this instance." +type: docs +weight: 190 +url: /nodejs/secondaryandadditionaldata/hashcode/ +--- +## hashCode() {#hashcode} + +Returns the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +32-bit signed integer hash code. + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/init/_index.md b/english/nodejs/secondaryandadditionaldata/init/_index.md new file mode 100644 index 000000000..165bbab4c --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 200 +url: /nodejs/secondaryandadditionaldata/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/parsefromstring/_index.md b/english/nodejs/secondaryandadditionaldata/parsefromstring/_index.md new file mode 100644 index 000000000..394c94343 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/parsefromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.parseFromString" +linktitle: "parseFromString" +articleTitle: "parseFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Instantiates secondary and additional supplemental data from string format according HIBC LIC specification." +type: docs +weight: 170 +url: /nodejs/secondaryandadditionaldata/parsefromstring/ +--- +## parseFromString(object) {#parsefromstring} + +Instantiates secondary and additional supplemental data from string format according HIBC LIC specification. + +```javascript +parseFromString(secondaryDataCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| secondaryDataCodetext | object | Formatted string. | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/secondaryandadditionaldata/_index.md b/english/nodejs/secondaryandadditionaldata/secondaryandadditionaldata/_index.md new file mode 100644 index 000000000..71cd591b1 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/secondaryandadditionaldata/_index.md @@ -0,0 +1,23 @@ +--- +title: "SecondaryAndAdditionalData" +linktitle: "SecondaryAndAdditionalData" +articleTitle: "SecondaryAndAdditionalData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SecondaryAndAdditionalData class." +type: docs +weight: 10 +url: /nodejs/secondaryandadditionaldata/secondaryandadditionaldata/ +--- +## SecondaryAndAdditionalData() {#constructor} + +Initializes a new instance of the SecondaryAndAdditionalData class. + +```javascript +public SecondaryAndAdditionalData() +``` + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setdateofmanufacture/_index.md b/english/nodejs/secondaryandadditionaldata/setdateofmanufacture/_index.md new file mode 100644 index 000000000..06d94245c --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setdateofmanufacture/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setDateOfManufacture" +linktitle: "setDateOfManufacture" +articleTitle: "setDateOfManufacture" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue." +type: docs +weight: 130 +url: /nodejs/secondaryandadditionaldata/setdateofmanufacture/ +--- +## setDateOfManufacture(object) {#setdateofmanufacture} + +Identifies date of manufacture. Date of manufacture can be set to DateTime.MinValue in order not to use this field. Default value: DateTime.MinValue + +```javascript +setDateOfManufacture(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setexpirydate/_index.md b/english/nodejs/secondaryandadditionaldata/setexpirydate/_index.md new file mode 100644 index 000000000..6e17a65ad --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setexpirydate/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setExpiryDate" +linktitle: "setExpiryDate" +articleTitle: "setExpiryDate" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies expiry date. Will be used if ExpiryDateFormat is not set to None." +type: docs +weight: 70 +url: /nodejs/secondaryandadditionaldata/setexpirydate/ +--- +## setExpiryDate(object) {#setexpirydate} + +Identifies expiry date. Will be used if ExpiryDateFormat is not set to None. + +```javascript +setExpiryDate(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setexpirydateformat/_index.md b/english/nodejs/secondaryandadditionaldata/setexpirydateformat/_index.md new file mode 100644 index 000000000..352189c55 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setexpirydateformat/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setExpiryDateFormat" +linktitle: "setExpiryDateFormat" +articleTitle: "setExpiryDateFormat" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies expiry date format." +type: docs +weight: 50 +url: /nodejs/secondaryandadditionaldata/setexpirydateformat/ +--- +## setExpiryDateFormat(object) {#setexpirydateformat} + +Identifies expiry date format. + +```javascript +setExpiryDateFormat(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setlotnumber/_index.md b/english/nodejs/secondaryandadditionaldata/setlotnumber/_index.md new file mode 100644 index 000000000..100751bd9 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setlotnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setLotNumber" +linktitle: "setLotNumber" +articleTitle: "setLotNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. ." +type: docs +weight: 90 +url: /nodejs/secondaryandadditionaldata/setlotnumber/ +--- +## setLotNumber(object) {#setlotnumber} + +Identifies lot or batch number. Lot/batch number must be alphanumeric string with up to 18 sybmols length. . + +```javascript +setLotNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setquantity/_index.md b/english/nodejs/secondaryandadditionaldata/setquantity/_index.md new file mode 100644 index 000000000..f37627152 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setquantity/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setQuantity" +linktitle: "setQuantity" +articleTitle: "setQuantity" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1." +type: docs +weight: 150 +url: /nodejs/secondaryandadditionaldata/setquantity/ +--- +## setQuantity(object) {#setquantity} + +Identifies quantity, must be integer value from 0 to 500. Quantity can be set to -1 in order not to use this field. Default value: -1 + +```javascript +setQuantity(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/setserialnumber/_index.md b/english/nodejs/secondaryandadditionaldata/setserialnumber/_index.md new file mode 100644 index 000000000..220411e89 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/setserialnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "SecondaryAndAdditionalData.setSerialNumber" +linktitle: "setSerialNumber" +articleTitle: "setSerialNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length." +type: docs +weight: 110 +url: /nodejs/secondaryandadditionaldata/setserialnumber/ +--- +## setSerialNumber(object) {#setserialnumber} + +Identifies serial number. Serial number must be alphanumeric string up to 18 sybmols length. + +```javascript +setSerialNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/secondaryandadditionaldata/tostring/_index.md b/english/nodejs/secondaryandadditionaldata/tostring/_index.md new file mode 100644 index 000000000..deb87cb48 --- /dev/null +++ b/english/nodejs/secondaryandadditionaldata/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "SecondaryAndAdditionalData.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Converts data to string format according HIBC LIC specification." +type: docs +weight: 160 +url: /nodejs/secondaryandadditionaldata/tostring/ +--- +## toString() {#tostring} + +Converts data to string format according HIBC LIC specification. + +```javascript +toString() +``` + +### Return Value + +Formatted + +string. + +### See Also + +* class [SecondaryAndAdditionalData](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/_index.md b/english/nodejs/subfileproperties/_index.md new file mode 100644 index 000000000..a456bd442 --- /dev/null +++ b/english/nodejs/subfileproperties/_index.md @@ -0,0 +1,47 @@ +--- +title: "SubfileProperties Class" +linktitle: "SubfileProperties" +articleTitle: "SubfileProperties" +second_title: "Aspose.BarCode for Node.js via Java" +description: "USA DL subfile properties, offset and length are set automatically." +type: docs +weight: 350 +url: /nodejs/subfileproperties/ +--- +## SubfileProperties class + +USA DL subfile properties, offset and length are set automatically. + +```javascript +public class SubfileProperties : BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SubfileProperties](./subfileproperties/#constructor)(*object*) | Initializes a new instance of the SubfileProperties class. | + +## Methods + +| Name | Description | +| --- | --- | +| [_internalCtor](./_internalctor/)(*object*) | | +| [getLength](./getlength/) | 4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the length of the subfile.A segment terminator = 1. Each subfile must begin with the two-character Subfile Type and these two characters must also... | +| [getOffset](./getoffset/) | 4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is located.The first byte in the file is located at offset 0. | +| [getType](./gettype/) | 2 byte type of subfile, like "DL". | +| [init](./init/) | | +| [setLength](./setlength/)(*object*) | 4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the length of the subfile.A segment terminator = 1. Each subfile must begin with the two-character Subfile Type and these two characters must also... | +| [setOffset](./setoffset/)(*object*) | 4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is located.The first byte in the file is located at offset 0. | +| [setType](./settype/)(*object*) | 2 byte type of subfile, like "DL". | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/subfileproperties/_internalctor/_index.md b/english/nodejs/subfileproperties/_internalctor/_index.md new file mode 100644 index 000000000..87bd70315 --- /dev/null +++ b/english/nodejs/subfileproperties/_internalctor/_index.md @@ -0,0 +1,27 @@ +--- +title: "SubfileProperties._internalCtor" +linktitle: "_internalCtor" +articleTitle: "_internalCtor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/subfileproperties/_internalctor/ +--- +## _internalCtor(object) {#_internalctor} + + + +```javascript +static _internalCtor(nativeObject) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| nativeObject | object | | + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/getlength/_index.md b/english/nodejs/subfileproperties/getlength/_index.md new file mode 100644 index 000000000..52b0e49ed --- /dev/null +++ b/english/nodejs/subfileproperties/getlength/_index.md @@ -0,0 +1,23 @@ +--- +title: "SubfileProperties.getLength" +linktitle: "getLength" +articleTitle: "getLength" +second_title: "Aspose.BarCode for Node.js via Java" +description: "4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the le..." +type: docs +weight: 90 +url: /nodejs/subfileproperties/getlength/ +--- +## getLength() {#getlength} + +4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the length of the subfile.A segment terminator = 1. Each subfile must begin with the two-character Subfile Type and these two characters must also be included in the length. + +```javascript +getLength() +``` + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/getoffset/_index.md b/english/nodejs/subfileproperties/getoffset/_index.md new file mode 100644 index 000000000..e5bbcf39f --- /dev/null +++ b/english/nodejs/subfileproperties/getoffset/_index.md @@ -0,0 +1,23 @@ +--- +title: "SubfileProperties.getOffset" +linktitle: "getOffset" +articleTitle: "getOffset" +second_title: "Aspose.BarCode for Node.js via Java" +description: "4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is locat..." +type: docs +weight: 70 +url: /nodejs/subfileproperties/getoffset/ +--- +## getOffset() {#getoffset} + +4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is located.The first byte in the file is located at offset 0. + +```javascript +getOffset() +``` + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/gettype/_index.md b/english/nodejs/subfileproperties/gettype/_index.md new file mode 100644 index 000000000..fc0fd532e --- /dev/null +++ b/english/nodejs/subfileproperties/gettype/_index.md @@ -0,0 +1,23 @@ +--- +title: "SubfileProperties.getType" +linktitle: "getType" +articleTitle: "getType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2 byte type of subfile, like \"DL\"." +type: docs +weight: 50 +url: /nodejs/subfileproperties/gettype/ +--- +## getType() {#gettype} + +2 byte type of subfile, like "DL" + +```javascript +getType() +``` + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/init/_index.md b/english/nodejs/subfileproperties/init/_index.md new file mode 100644 index 000000000..bd9965319 --- /dev/null +++ b/english/nodejs/subfileproperties/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SubfileProperties.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 40 +url: /nodejs/subfileproperties/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/setlength/_index.md b/english/nodejs/subfileproperties/setlength/_index.md new file mode 100644 index 000000000..603bf0065 --- /dev/null +++ b/english/nodejs/subfileproperties/setlength/_index.md @@ -0,0 +1,27 @@ +--- +title: "SubfileProperties.setLength" +linktitle: "setLength" +articleTitle: "setLength" +second_title: "Aspose.BarCode for Node.js via Java" +description: "4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the le..." +type: docs +weight: 100 +url: /nodejs/subfileproperties/setlength/ +--- +## setLength(object) {#setlength} + +4 These bytes contain a 4 digit numeric value that specifies the length of the Subfile in bytes.The segment terminator must be included in calculating the length of the subfile.A segment terminator = 1. Each subfile must begin with the two-character Subfile Type and these two characters must also be included in the length. + +```javascript +setLength(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/setoffset/_index.md b/english/nodejs/subfileproperties/setoffset/_index.md new file mode 100644 index 000000000..94308c852 --- /dev/null +++ b/english/nodejs/subfileproperties/setoffset/_index.md @@ -0,0 +1,27 @@ +--- +title: "SubfileProperties.setOffset" +linktitle: "setOffset" +articleTitle: "setOffset" +second_title: "Aspose.BarCode for Node.js via Java" +description: "4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is locat..." +type: docs +weight: 80 +url: /nodejs/subfileproperties/setoffset/ +--- +## setOffset(object) {#setoffset} + +4 digit numeric value that specifies the number of bytes from the head or beginning of the file to where the data related to the particular sub-file is located.The first byte in the file is located at offset 0. + +```javascript +setOffset(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/settype/_index.md b/english/nodejs/subfileproperties/settype/_index.md new file mode 100644 index 000000000..ecb67ff2a --- /dev/null +++ b/english/nodejs/subfileproperties/settype/_index.md @@ -0,0 +1,27 @@ +--- +title: "SubfileProperties.setType" +linktitle: "setType" +articleTitle: "setType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "2 byte type of subfile, like \"DL\"." +type: docs +weight: 60 +url: /nodejs/subfileproperties/settype/ +--- +## setType(object) {#settype} + +2 byte type of subfile, like "DL" + +```javascript +setType(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/subfileproperties/subfileproperties/_index.md b/english/nodejs/subfileproperties/subfileproperties/_index.md new file mode 100644 index 000000000..fe941cda7 --- /dev/null +++ b/english/nodejs/subfileproperties/subfileproperties/_index.md @@ -0,0 +1,27 @@ +--- +title: "SubfileProperties" +linktitle: "SubfileProperties" +articleTitle: "SubfileProperties" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SubfileProperties class." +type: docs +weight: 10 +url: /nodejs/subfileproperties/subfileproperties/ +--- +## SubfileProperties(object) {#constructor} + +Initializes a new instance of the SubfileProperties class. + +```javascript +public SubfileProperties(object type) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| type | object | | + +### See Also + +* class [SubfileProperties](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/_index.md b/english/nodejs/supplementparameters/_index.md new file mode 100644 index 000000000..c6edfd3d6 --- /dev/null +++ b/english/nodejs/supplementparameters/_index.md @@ -0,0 +1,44 @@ +--- +title: "SupplementParameters Class" +linktitle: "SupplementParameters" +articleTitle: "SupplementParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN." +type: docs +weight: 640 +url: /nodejs/supplementparameters/ +--- +## SupplementParameters class + +Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN. + +```javascript +public class SupplementParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SupplementParameters](./supplementparameters/#constructor)(*object*) | Initializes a new instance of the SupplementParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getSupplementData](./getsupplementdata/) | Supplement data following BarCode. | +| [getSupplementSpace](./getsupplementspace/) | Space between main the BarCode and supplement BarCode in Unit value. | +| [init](./init/) | | +| [setSupplementData](./setsupplementdata/)(*object*) | Supplement data following BarCode. | +| [toString](./tostring/) | Returns a human-readable string representation of this SupplementParameters. | + +## Fields + +| Name | Description | +| --- | --- | +| [_space](./_space/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/supplementparameters/getsupplementdata/_index.md b/english/nodejs/supplementparameters/getsupplementdata/_index.md new file mode 100644 index 000000000..16f9b012a --- /dev/null +++ b/english/nodejs/supplementparameters/getsupplementdata/_index.md @@ -0,0 +1,23 @@ +--- +title: "SupplementParameters.getSupplementData" +linktitle: "getSupplementData" +articleTitle: "getSupplementData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Supplement data following BarCode." +type: docs +weight: 40 +url: /nodejs/supplementparameters/getsupplementdata/ +--- +## getSupplementData() {#getsupplementdata} + +Supplement data following BarCode. + +```javascript +getSupplementData() +``` + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/getsupplementspace/_index.md b/english/nodejs/supplementparameters/getsupplementspace/_index.md new file mode 100644 index 000000000..cc3bd4b1c --- /dev/null +++ b/english/nodejs/supplementparameters/getsupplementspace/_index.md @@ -0,0 +1,29 @@ +--- +title: "SupplementParameters.getSupplementSpace" +linktitle: "getSupplementSpace" +articleTitle: "getSupplementSpace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Space between main the BarCode and supplement BarCode in Unit value." +type: docs +weight: 60 +url: /nodejs/supplementparameters/getsupplementspace/ +--- +## getSupplementSpace() {#getsupplementspace} + +Space between main the BarCode and supplement BarCode in Unit value. + +```javascript +getSupplementSpace() +``` + +### Exceptions + +| exception | condition | +| --- | --- | +| IllegalArgumentException
| The Space parameter value is less than 0. | + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/init/_index.md b/english/nodejs/supplementparameters/init/_index.md new file mode 100644 index 000000000..119de9f13 --- /dev/null +++ b/english/nodejs/supplementparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SupplementParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/supplementparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/setsupplementdata/_index.md b/english/nodejs/supplementparameters/setsupplementdata/_index.md new file mode 100644 index 000000000..480eefdc4 --- /dev/null +++ b/english/nodejs/supplementparameters/setsupplementdata/_index.md @@ -0,0 +1,27 @@ +--- +title: "SupplementParameters.setSupplementData" +linktitle: "setSupplementData" +articleTitle: "setSupplementData" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Supplement data following BarCode." +type: docs +weight: 50 +url: /nodejs/supplementparameters/setsupplementdata/ +--- +## setSupplementData(object) {#setsupplementdata} + +Supplement data following BarCode. + +```javascript +setSupplementData(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/supplementparameters/_index.md b/english/nodejs/supplementparameters/supplementparameters/_index.md new file mode 100644 index 000000000..93c2e0f0f --- /dev/null +++ b/english/nodejs/supplementparameters/supplementparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "SupplementParameters" +linktitle: "SupplementParameters" +articleTitle: "SupplementParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SupplementParameters class." +type: docs +weight: 10 +url: /nodejs/supplementparameters/supplementparameters/ +--- +## SupplementParameters(object) {#constructor} + +Initializes a new instance of the SupplementParameters class. + +```javascript +public SupplementParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/supplementparameters/tostring/_index.md b/english/nodejs/supplementparameters/tostring/_index.md new file mode 100644 index 000000000..7ad5de7f0 --- /dev/null +++ b/english/nodejs/supplementparameters/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "SupplementParameters.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this SupplementParameters." +type: docs +weight: 70 +url: /nodejs/supplementparameters/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this SupplementParameters. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this SupplementParameters. + +### See Also + +* class [SupplementParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgcolormode/_index.md b/english/nodejs/svgcolormode/_index.md new file mode 100644 index 000000000..b53e97e5f --- /dev/null +++ b/english/nodejs/svgcolormode/_index.md @@ -0,0 +1,31 @@ +--- +title: "SvgColorMode Enum" +linktitle: "SvgColorMode" +articleTitle: "SvgColorMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity wi..." +type: docs +weight: 1250 +url: /nodejs/svgcolormode/ +--- +## SvgColorMode enumeration + +Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter + +```javascript +public enum SvgColorMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| RGB | `0` | RGB mode, example: fill="#ff5511" fill-opacity="0.73". Default mode. | +| RGBA | `1` | RGBA mode, example: fill="rgba(255, 85, 17, 0.73)" | +| HSL | `2` | HSL mode, example: fill="hsl(17, 100%, 53%)" fill-opacity="0.73" | +| HSLA | `3` | HSLA mode, example: fill="hsla(30, 50%, 70%, 0.8)" | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/svgparameters/_index.md b/english/nodejs/svgparameters/_index.md new file mode 100644 index 000000000..4d9978897 --- /dev/null +++ b/english/nodejs/svgparameters/_index.md @@ -0,0 +1,40 @@ +--- +title: "SvgParameters Class" +linktitle: "SvgParameters" +articleTitle: "SvgParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SVG parameters." +type: docs +weight: 800 +url: /nodejs/svgparameters/ +--- +## SvgParameters class + +SVG parameters. + +```javascript +public class SvgParameters : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SvgParameters](./svgparameters/#constructor)(*object*) | Initializes a new instance of the SvgParameters class. | + +## Methods + +| Name | Description | +| --- | --- | +| [getSvgColorMode](./getsvgcolormode/) | Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter. | +| [init](./init/) | | +| [isExplicitSizeInPixels](./isexplicitsizeinpixels/) | Does SVG image contain explicit size in pixels (recommended) Default value: true. | +| [isTextDrawnInTextElement](./istextdrawnintextelement/) | Does SVG image contain text as text element rather than paths (recommended) Default value: true. | +| [setExplicitSizeInPixels](./setexplicitsizeinpixels/)(*object*) | Does SVG image contain explicit size in pixels (recommended) Default value: true. | +| [setSvgColorMode](./setsvgcolormode/)(*object*) | Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter. | +| [setTextDrawnInTextElement](./settextdrawnintextelement/)(*object*) | Does SVG image contain text as text element rather than paths (recommended) Default value: true. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/svgparameters/getsvgcolormode/_index.md b/english/nodejs/svgparameters/getsvgcolormode/_index.md new file mode 100644 index 000000000..f999b1927 --- /dev/null +++ b/english/nodejs/svgparameters/getsvgcolormode/_index.md @@ -0,0 +1,23 @@ +--- +title: "SvgParameters.getSvgColorMode" +linktitle: "getSvgColorMode" +articleTitle: "getSvgColorMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity wi..." +type: docs +weight: 80 +url: /nodejs/svgparameters/getsvgcolormode/ +--- +## getSvgColorMode() {#getsvgcolormode} + +Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter + +```javascript +getSvgColorMode() +``` + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/init/_index.md b/english/nodejs/svgparameters/init/_index.md new file mode 100644 index 000000000..026fb7346 --- /dev/null +++ b/english/nodejs/svgparameters/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SvgParameters.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/svgparameters/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/isexplicitsizeinpixels/_index.md b/english/nodejs/svgparameters/isexplicitsizeinpixels/_index.md new file mode 100644 index 000000000..26cad39a9 --- /dev/null +++ b/english/nodejs/svgparameters/isexplicitsizeinpixels/_index.md @@ -0,0 +1,23 @@ +--- +title: "SvgParameters.isExplicitSizeInPixels" +linktitle: "isExplicitSizeInPixels" +articleTitle: "isExplicitSizeInPixels" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Does SVG image contain explicit size in pixels (recommended) Default value: true." +type: docs +weight: 30 +url: /nodejs/svgparameters/isexplicitsizeinpixels/ +--- +## isExplicitSizeInPixels() {#isexplicitsizeinpixels} + +Does SVG image contain explicit size in pixels (recommended) Default value: true. + +```javascript +isExplicitSizeInPixels() +``` + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/istextdrawnintextelement/_index.md b/english/nodejs/svgparameters/istextdrawnintextelement/_index.md new file mode 100644 index 000000000..0ba0e9440 --- /dev/null +++ b/english/nodejs/svgparameters/istextdrawnintextelement/_index.md @@ -0,0 +1,23 @@ +--- +title: "SvgParameters.isTextDrawnInTextElement" +linktitle: "isTextDrawnInTextElement" +articleTitle: "isTextDrawnInTextElement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Does SVG image contain text as text element rather than paths (recommended) Default value: true." +type: docs +weight: 50 +url: /nodejs/svgparameters/istextdrawnintextelement/ +--- +## isTextDrawnInTextElement() {#istextdrawnintextelement} + +Does SVG image contain text as text element rather than paths (recommended) Default value: true. + +```javascript +isTextDrawnInTextElement() +``` + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/setexplicitsizeinpixels/_index.md b/english/nodejs/svgparameters/setexplicitsizeinpixels/_index.md new file mode 100644 index 000000000..c4fdc8b72 --- /dev/null +++ b/english/nodejs/svgparameters/setexplicitsizeinpixels/_index.md @@ -0,0 +1,27 @@ +--- +title: "SvgParameters.setExplicitSizeInPixels" +linktitle: "setExplicitSizeInPixels" +articleTitle: "setExplicitSizeInPixels" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Does SVG image contain explicit size in pixels (recommended) Default value: true." +type: docs +weight: 40 +url: /nodejs/svgparameters/setexplicitsizeinpixels/ +--- +## setExplicitSizeInPixels(object) {#setexplicitsizeinpixels} + +Does SVG image contain explicit size in pixels (recommended) Default value: true. + +```javascript +setExplicitSizeInPixels(explicitSizeInPixels) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| explicitSizeInPixels | object | | + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/setsvgcolormode/_index.md b/english/nodejs/svgparameters/setsvgcolormode/_index.md new file mode 100644 index 000000000..1760f41d7 --- /dev/null +++ b/english/nodejs/svgparameters/setsvgcolormode/_index.md @@ -0,0 +1,27 @@ +--- +title: "SvgParameters.setSvgColorMode" +linktitle: "setSvgColorMode" +articleTitle: "setSvgColorMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity wi..." +type: docs +weight: 70 +url: /nodejs/svgparameters/setsvgcolormode/ +--- +## setSvgColorMode(object) {#setsvgcolormode} + +Possible modes for filling color in svg file, RGB is default and supported by SVG 1.1. RGBA, HSL, HSLA is allowed in SVG 2.0 standard. Even in RGB opacity will be set through "fill-opacity" parameter + +```javascript +setSvgColorMode(svgColorMode) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| svgColorMode | object | | + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/settextdrawnintextelement/_index.md b/english/nodejs/svgparameters/settextdrawnintextelement/_index.md new file mode 100644 index 000000000..7ffe5ccff --- /dev/null +++ b/english/nodejs/svgparameters/settextdrawnintextelement/_index.md @@ -0,0 +1,27 @@ +--- +title: "SvgParameters.setTextDrawnInTextElement" +linktitle: "setTextDrawnInTextElement" +articleTitle: "setTextDrawnInTextElement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Does SVG image contain text as text element rather than paths (recommended) Default value: true." +type: docs +weight: 60 +url: /nodejs/svgparameters/settextdrawnintextelement/ +--- +## setTextDrawnInTextElement(object) {#settextdrawnintextelement} + +Does SVG image contain text as text element rather than paths (recommended) Default value: true. + +```javascript +setTextDrawnInTextElement(textDrawnInTextElement) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| textDrawnInTextElement | object | | + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/svgparameters/svgparameters/_index.md b/english/nodejs/svgparameters/svgparameters/_index.md new file mode 100644 index 000000000..2caf68732 --- /dev/null +++ b/english/nodejs/svgparameters/svgparameters/_index.md @@ -0,0 +1,27 @@ +--- +title: "SvgParameters" +linktitle: "SvgParameters" +articleTitle: "SvgParameters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SvgParameters class." +type: docs +weight: 10 +url: /nodejs/svgparameters/svgparameters/ +--- +## SvgParameters(object) {#constructor} + +Initializes a new instance of the SvgParameters class. + +```javascript +public SvgParameters(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [SvgParameters](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/_index.md b/english/nodejs/swissqrbill/_index.md new file mode 100644 index 000000000..e517ac9d3 --- /dev/null +++ b/english/nodejs/swissqrbill/_index.md @@ -0,0 +1,65 @@ +--- +title: "SwissQRBill Class" +linktitle: "SwissQRBill" +articleTitle: "SwissQRBill" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SwissQR bill data." +type: docs +weight: 90 +url: /nodejs/swissqrbill/ +--- +## SwissQRBill class + +SwissQR bill data + +```javascript +public class SwissQRBill : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SwissQRBill](./swissqrbill/#constructor)(*object*) | Initializes a new instance of the SwissQRBill class. | + +## Methods + +| Name | Description | +| --- | --- | +| [convertAlternativeSchemes](./convertalternativeschemes/)(*object*) | | +| [createAndSetCreditorReference](./createandsetcreditorreference/)(*object*) | Creates and sets a ISO11649 creditor reference from a raw string by prefixing the String with "RF" and the modulo 97 checksum. | +| [equals](./equals/)(*object*) | Determines whether the specified object is equal to the current object. | +| [getAccount](./getaccount/) | Gets the creditor's account number. | +| [getAlternativeSchemes](./getalternativeschemes/) | Gets ors sets the alternative payment schemes. | +| [getAmount](./getamount/) | Gets the payment amount. | +| [getBillInformation](./getbillinformation/) | Gets the additional structured bill information. | +| [getCreditor](./getcreditor/) | Gets the creditor address. | +| [getCurrency](./getcurrency/) | Gets the payment currency. Valid values are "CHF" and "EUR". | +| [getDebtor](./getdebtor/) | Gets the debtor address. | +| [getReference](./getreference/) | Gets the creditor payment reference. | +| [getUnstructuredMessage](./getunstructuredmessage/) | Gets the additional unstructured message. | +| [getVersion](./getversion/) | Gets the version of the SwissQR bill standard. | +| [hashCode](./hashcode/) | Gets the hash code for this instance. | +| [init](./init/) | | +| [setAccount](./setaccount/)(*object*) | Sets the creditor's account number. | +| [setAlternativeSchemes](./setalternativeschemes/)(*object*) | Gets or sets the alternative payment schemes. | +| [setAmount](./setamount/)(*object*) | Sets the payment amount. Valid values are between 0.01 and 999,999,999.99. | +| [setBillInformation](./setbillinformation/)(*object*) | Sets the additional structured bill information. | +| [setCreditor](./setcreditor/)(*object*) | Sets the creditor address. | +| [setCurrency](./setcurrency/)(*object*) | Sets the payment currency. | +| [setDebtor](./setdebtor/)(*object*) | Sets the debtor address. | +| [setReference](./setreference/)(*object*) | Sets the creditor payment reference. | +| [setUnstructuredMessage](./setunstructuredmessage/)(*object*) | Sets the additional unstructured message. | +| [setVersion](./setversion/)(*object*) | Sets the version of the SwissQR bill standard. | + +## Fields + +| Name | Description | +| --- | --- | +| [creditor](./creditor/) | | +| [debtor](./debtor/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/swissqrbill/convertalternativeschemes/_index.md b/english/nodejs/swissqrbill/convertalternativeschemes/_index.md new file mode 100644 index 000000000..1e67a5525 --- /dev/null +++ b/english/nodejs/swissqrbill/convertalternativeschemes/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.convertAlternativeSchemes" +linktitle: "convertAlternativeSchemes" +articleTitle: "convertAlternativeSchemes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 50 +url: /nodejs/swissqrbill/convertalternativeschemes/ +--- +## convertAlternativeSchemes(object) {#convertalternativeschemes} + + + +```javascript +static convertAlternativeSchemes(javaAlternativeSchemes) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaAlternativeSchemes | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/createandsetcreditorreference/_index.md b/english/nodejs/swissqrbill/createandsetcreditorreference/_index.md new file mode 100644 index 000000000..9b259fb67 --- /dev/null +++ b/english/nodejs/swissqrbill/createandsetcreditorreference/_index.md @@ -0,0 +1,33 @@ +--- +title: "SwissQRBill.createAndSetCreditorReference" +linktitle: "createAndSetCreditorReference" +articleTitle: "createAndSetCreditorReference" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Creates and sets a ISO11649 creditor reference from a raw string by prefixing the String with \"RF\" and the modulo 97 checksum." +type: docs +weight: 180 +url: /nodejs/swissqrbill/createandsetcreditorreference/ +--- +## createAndSetCreditorReference(object) {#createandsetcreditorreference} + +Creates and sets a ISO11649 creditor reference from a raw string by prefixing the String with "RF" and the modulo 97 checksum. + +```javascript +createAndSetCreditorReference(rawReference) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| rawReference | object | The raw reference. | + +### Exceptions + +| exception | condition | +| --- | --- | +| ArgumentException | rawReference contains invalid characters. | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/equals/_index.md b/english/nodejs/swissqrbill/equals/_index.md new file mode 100644 index 000000000..18f3b842e --- /dev/null +++ b/english/nodejs/swissqrbill/equals/_index.md @@ -0,0 +1,33 @@ +--- +title: "SwissQRBill.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines whether the specified object is equal to the current object." +type: docs +weight: 270 +url: /nodejs/swissqrbill/equals/ +--- +## equals(object) {#equals} + +Determines whether the specified object is equal to the current object. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | The object to compare with the current object. | + +### Return Value + +true + +if the specified object is equal to the current object; otherwise, false. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getaccount/_index.md b/english/nodejs/swissqrbill/getaccount/_index.md new file mode 100644 index 000000000..d55bf5da6 --- /dev/null +++ b/english/nodejs/swissqrbill/getaccount/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getAccount" +linktitle: "getAccount" +articleTitle: "getAccount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the creditor's account number." +type: docs +weight: 120 +url: /nodejs/swissqrbill/getaccount/ +--- +## getAccount() {#getaccount} + +Gets the creditor's account number. + +```javascript +getAccount() +``` + +### Return Value + +The + +creditor account number. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getalternativeschemes/_index.md b/english/nodejs/swissqrbill/getalternativeschemes/_index.md new file mode 100644 index 000000000..b88aeb076 --- /dev/null +++ b/english/nodejs/swissqrbill/getalternativeschemes/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getAlternativeSchemes" +linktitle: "getAlternativeSchemes" +articleTitle: "getAlternativeSchemes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets ors sets the alternative payment schemes." +type: docs +weight: 250 +url: /nodejs/swissqrbill/getalternativeschemes/ +--- +## getAlternativeSchemes() {#getalternativeschemes} + +Gets ors sets the alternative payment schemes. + +```javascript +getAlternativeSchemes() +``` + +### Return Value + +The + +alternative payment schemes. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getamount/_index.md b/english/nodejs/swissqrbill/getamount/_index.md new file mode 100644 index 000000000..9d7d8a76d --- /dev/null +++ b/english/nodejs/swissqrbill/getamount/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getAmount" +linktitle: "getAmount" +articleTitle: "getAmount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the payment amount." +type: docs +weight: 80 +url: /nodejs/swissqrbill/getamount/ +--- +## getAmount() {#getamount} + +Gets the payment amount. + +```javascript +getAmount() +``` + +### Return Value + +The + +payment amount. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getbillinformation/_index.md b/english/nodejs/swissqrbill/getbillinformation/_index.md new file mode 100644 index 000000000..6e778b6d6 --- /dev/null +++ b/english/nodejs/swissqrbill/getbillinformation/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getBillInformation" +linktitle: "getBillInformation" +articleTitle: "getBillInformation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the additional structured bill information." +type: docs +weight: 230 +url: /nodejs/swissqrbill/getbillinformation/ +--- +## getBillInformation() {#getbillinformation} + +Gets the additional structured bill information. + +```javascript +getBillInformation() +``` + +### Return Value + +The + +structured bill information. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getcreditor/_index.md b/english/nodejs/swissqrbill/getcreditor/_index.md new file mode 100644 index 000000000..7c68985e9 --- /dev/null +++ b/english/nodejs/swissqrbill/getcreditor/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getCreditor" +linktitle: "getCreditor" +articleTitle: "getCreditor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the creditor address." +type: docs +weight: 140 +url: /nodejs/swissqrbill/getcreditor/ +--- +## getCreditor() {#getcreditor} + +Gets the creditor address. + +```javascript +getCreditor() +``` + +### Return Value + +The + +creditor address. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getcurrency/_index.md b/english/nodejs/swissqrbill/getcurrency/_index.md new file mode 100644 index 000000000..8e2e1f786 --- /dev/null +++ b/english/nodejs/swissqrbill/getcurrency/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getCurrency" +linktitle: "getCurrency" +articleTitle: "getCurrency" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the payment currency. Valid values are \"CHF\" and \"EUR\"." +type: docs +weight: 100 +url: /nodejs/swissqrbill/getcurrency/ +--- +## getCurrency() {#getcurrency} + +Gets the payment currency. Valid values are "CHF" and "EUR". + +```javascript +getCurrency() +``` + +### Return Value + +The + +payment currency. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getdebtor/_index.md b/english/nodejs/swissqrbill/getdebtor/_index.md new file mode 100644 index 000000000..67ca6cfb9 --- /dev/null +++ b/english/nodejs/swissqrbill/getdebtor/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getDebtor" +linktitle: "getDebtor" +articleTitle: "getDebtor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the debtor address." +type: docs +weight: 190 +url: /nodejs/swissqrbill/getdebtor/ +--- +## getDebtor() {#getdebtor} + +Gets the debtor address. + +```javascript +getDebtor() +``` + +### Return Value + +The + +debtor address. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getreference/_index.md b/english/nodejs/swissqrbill/getreference/_index.md new file mode 100644 index 000000000..3b9c5e4d3 --- /dev/null +++ b/english/nodejs/swissqrbill/getreference/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getReference" +linktitle: "getReference" +articleTitle: "getReference" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the creditor payment reference." +type: docs +weight: 160 +url: /nodejs/swissqrbill/getreference/ +--- +## getReference() {#getreference} + +Gets the creditor payment reference. + +```javascript +getReference() +``` + +### Return Value + +The + +creditor payment reference. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getunstructuredmessage/_index.md b/english/nodejs/swissqrbill/getunstructuredmessage/_index.md new file mode 100644 index 000000000..b5c964388 --- /dev/null +++ b/english/nodejs/swissqrbill/getunstructuredmessage/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getUnstructuredMessage" +linktitle: "getUnstructuredMessage" +articleTitle: "getUnstructuredMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the additional unstructured message." +type: docs +weight: 210 +url: /nodejs/swissqrbill/getunstructuredmessage/ +--- +## getUnstructuredMessage() {#getunstructuredmessage} + +Gets the additional unstructured message. + +```javascript +getUnstructuredMessage() +``` + +### Return Value + +The + +unstructured message. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/getversion/_index.md b/english/nodejs/swissqrbill/getversion/_index.md new file mode 100644 index 000000000..13a358a7d --- /dev/null +++ b/english/nodejs/swissqrbill/getversion/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.getVersion" +linktitle: "getVersion" +articleTitle: "getVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the version of the SwissQR bill standard." +type: docs +weight: 60 +url: /nodejs/swissqrbill/getversion/ +--- +## getVersion() {#getversion} + +Gets the version of the SwissQR bill standard. + +```javascript +getVersion() +``` + +### Return Value + +The + +SwissQR bill standard version. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/hashcode/_index.md b/english/nodejs/swissqrbill/hashcode/_index.md new file mode 100644 index 000000000..37ab7931a --- /dev/null +++ b/english/nodejs/swissqrbill/hashcode/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRBill.hashCode" +linktitle: "hashCode" +articleTitle: "hashCode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets the hash code for this instance." +type: docs +weight: 280 +url: /nodejs/swissqrbill/hashcode/ +--- +## hashCode() {#hashcode} + +Gets the hash code for this instance. + +```javascript +hashCode() +``` + +### Return Value + +A + +hash code for the current object. + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/init/_index.md b/english/nodejs/swissqrbill/init/_index.md new file mode 100644 index 000000000..fae7b8db6 --- /dev/null +++ b/english/nodejs/swissqrbill/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SwissQRBill.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/swissqrbill/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setaccount/_index.md b/english/nodejs/swissqrbill/setaccount/_index.md new file mode 100644 index 000000000..2f8a66871 --- /dev/null +++ b/english/nodejs/swissqrbill/setaccount/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setAccount" +linktitle: "setAccount" +articleTitle: "setAccount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the creditor's account number." +type: docs +weight: 130 +url: /nodejs/swissqrbill/setaccount/ +--- +## setAccount(object) {#setaccount} + +Sets the creditor's account number. + +```javascript +setAccount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setalternativeschemes/_index.md b/english/nodejs/swissqrbill/setalternativeschemes/_index.md new file mode 100644 index 000000000..d08646799 --- /dev/null +++ b/english/nodejs/swissqrbill/setalternativeschemes/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setAlternativeSchemes" +linktitle: "setAlternativeSchemes" +articleTitle: "setAlternativeSchemes" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets or sets the alternative payment schemes." +type: docs +weight: 260 +url: /nodejs/swissqrbill/setalternativeschemes/ +--- +## setAlternativeSchemes(object) {#setalternativeschemes} + +Gets or sets the alternative payment schemes. + +```javascript +setAlternativeSchemes(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setamount/_index.md b/english/nodejs/swissqrbill/setamount/_index.md new file mode 100644 index 000000000..be1142b39 --- /dev/null +++ b/english/nodejs/swissqrbill/setamount/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setAmount" +linktitle: "setAmount" +articleTitle: "setAmount" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the payment amount. Valid values are between 0.01 and 999,999,999.99." +type: docs +weight: 90 +url: /nodejs/swissqrbill/setamount/ +--- +## setAmount(object) {#setamount} + +Sets the payment amount. Valid values are between 0.01 and 999,999,999.99. + +```javascript +setAmount(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The payment amount. | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setbillinformation/_index.md b/english/nodejs/swissqrbill/setbillinformation/_index.md new file mode 100644 index 000000000..e9b0de74e --- /dev/null +++ b/english/nodejs/swissqrbill/setbillinformation/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setBillInformation" +linktitle: "setBillInformation" +articleTitle: "setBillInformation" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the additional structured bill information." +type: docs +weight: 240 +url: /nodejs/swissqrbill/setbillinformation/ +--- +## setBillInformation(object) {#setbillinformation} + +Sets the additional structured bill information. + +```javascript +setBillInformation(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setcreditor/_index.md b/english/nodejs/swissqrbill/setcreditor/_index.md new file mode 100644 index 000000000..67c29f3ea --- /dev/null +++ b/english/nodejs/swissqrbill/setcreditor/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setCreditor" +linktitle: "setCreditor" +articleTitle: "setCreditor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the creditor address." +type: docs +weight: 150 +url: /nodejs/swissqrbill/setcreditor/ +--- +## setCreditor(object) {#setcreditor} + +Sets the creditor address. + +```javascript +setCreditor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setcurrency/_index.md b/english/nodejs/swissqrbill/setcurrency/_index.md new file mode 100644 index 000000000..311478f15 --- /dev/null +++ b/english/nodejs/swissqrbill/setcurrency/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setCurrency" +linktitle: "setCurrency" +articleTitle: "setCurrency" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the payment currency." +type: docs +weight: 110 +url: /nodejs/swissqrbill/setcurrency/ +--- +## setCurrency(object) {#setcurrency} + +Sets the payment currency. + +```javascript +setCurrency(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | Valid values are "CHF" and "EUR". | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setdebtor/_index.md b/english/nodejs/swissqrbill/setdebtor/_index.md new file mode 100644 index 000000000..2fe651997 --- /dev/null +++ b/english/nodejs/swissqrbill/setdebtor/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setDebtor" +linktitle: "setDebtor" +articleTitle: "setDebtor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the debtor address." +type: docs +weight: 200 +url: /nodejs/swissqrbill/setdebtor/ +--- +## setDebtor(object) {#setdebtor} + +Sets the debtor address. + +```javascript +setDebtor(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setreference/_index.md b/english/nodejs/swissqrbill/setreference/_index.md new file mode 100644 index 000000000..7f51611ce --- /dev/null +++ b/english/nodejs/swissqrbill/setreference/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setReference" +linktitle: "setReference" +articleTitle: "setReference" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the creditor payment reference." +type: docs +weight: 170 +url: /nodejs/swissqrbill/setreference/ +--- +## setReference(object) {#setreference} + +Sets the creditor payment reference. + +```javascript +setReference(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The creditor payment reference. | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setunstructuredmessage/_index.md b/english/nodejs/swissqrbill/setunstructuredmessage/_index.md new file mode 100644 index 000000000..e43c8ecbd --- /dev/null +++ b/english/nodejs/swissqrbill/setunstructuredmessage/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setUnstructuredMessage" +linktitle: "setUnstructuredMessage" +articleTitle: "setUnstructuredMessage" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the additional unstructured message." +type: docs +weight: 220 +url: /nodejs/swissqrbill/setunstructuredmessage/ +--- +## setUnstructuredMessage(object) {#setunstructuredmessage} + +Sets the additional unstructured message. + +```javascript +setUnstructuredMessage(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/setversion/_index.md b/english/nodejs/swissqrbill/setversion/_index.md new file mode 100644 index 000000000..aa2f63ae7 --- /dev/null +++ b/english/nodejs/swissqrbill/setversion/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill.setVersion" +linktitle: "setVersion" +articleTitle: "setVersion" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets the version of the SwissQR bill standard." +type: docs +weight: 70 +url: /nodejs/swissqrbill/setversion/ +--- +## setVersion(object) {#setversion} + +Sets the version of the SwissQR bill standard. + +```javascript +setVersion(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | The SwissQR bill standard version. | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrbill/swissqrbill/_index.md b/english/nodejs/swissqrbill/swissqrbill/_index.md new file mode 100644 index 000000000..5cb82bcb0 --- /dev/null +++ b/english/nodejs/swissqrbill/swissqrbill/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRBill" +linktitle: "SwissQRBill" +articleTitle: "SwissQRBill" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SwissQRBill class." +type: docs +weight: 10 +url: /nodejs/swissqrbill/swissqrbill/ +--- +## SwissQRBill(object) {#constructor} + +Initializes a new instance of the SwissQRBill class. + +```javascript +public SwissQRBill(object javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [SwissQRBill](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/_index.md b/english/nodejs/swissqrcodetext/_index.md new file mode 100644 index 000000000..3d2b0817f --- /dev/null +++ b/english/nodejs/swissqrcodetext/_index.md @@ -0,0 +1,46 @@ +--- +title: "SwissQRCodetext Class" +linktitle: "SwissQRCodetext" +articleTitle: "SwissQRCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the SwissQR code." +type: docs +weight: 100 +url: /nodejs/swissqrcodetext/ +--- +## SwissQRCodetext class + +Class for encoding and decoding the text embedded in the SwissQR code. + +```javascript +public class SwissQRCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [SwissQRCodetext](./swissqrcodetext/#constructor)(*object*) | Creates an instance of SwissQRCodetext. | + +## Methods + +| Name | Description | +| --- | --- | +| [construct](./construct/)(*object*) | | +| [getBarcodeType](./getbarcodetype/) | Gets barcode type. | +| [getBill](./getbill/) | SwissQR bill data. | +| [getConstructedCodetext](./getconstructedcodetext/) | Construct codetext from SwissQR bill data. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initializes Bill with constructed codetext. | + +## Fields + +| Name | Description | +| --- | --- | +| [bill](./bill/) | | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/swissqrcodetext/construct/_index.md b/english/nodejs/swissqrcodetext/construct/_index.md new file mode 100644 index 000000000..e65acc44e --- /dev/null +++ b/english/nodejs/swissqrcodetext/construct/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRCodetext.construct" +linktitle: "construct" +articleTitle: "construct" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 60 +url: /nodejs/swissqrcodetext/construct/ +--- +## construct(object) {#construct} + + + +```javascript +static construct(javaClass) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| javaClass | object | | + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/getbarcodetype/_index.md b/english/nodejs/swissqrcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..7984f980e --- /dev/null +++ b/english/nodejs/swissqrcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets barcode type." +type: docs +weight: 90 +url: /nodejs/swissqrcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Gets barcode type. + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type. + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/getbill/_index.md b/english/nodejs/swissqrcodetext/getbill/_index.md new file mode 100644 index 000000000..67f044e07 --- /dev/null +++ b/english/nodejs/swissqrcodetext/getbill/_index.md @@ -0,0 +1,23 @@ +--- +title: "SwissQRCodetext.getBill" +linktitle: "getBill" +articleTitle: "getBill" +second_title: "Aspose.BarCode for Node.js via Java" +description: "SwissQR bill data." +type: docs +weight: 40 +url: /nodejs/swissqrcodetext/getbill/ +--- +## getBill() {#getbill} + +SwissQR bill data + +```javascript +getBill() +``` + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/getconstructedcodetext/_index.md b/english/nodejs/swissqrcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..fdeb70ca1 --- /dev/null +++ b/english/nodejs/swissqrcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "SwissQRCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Construct codetext from SwissQR bill data." +type: docs +weight: 70 +url: /nodejs/swissqrcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Construct codetext from SwissQR bill data + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/init/_index.md b/english/nodejs/swissqrcodetext/init/_index.md new file mode 100644 index 000000000..1de06f0a4 --- /dev/null +++ b/english/nodejs/swissqrcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "SwissQRCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/swissqrcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/initfromstring/_index.md b/english/nodejs/swissqrcodetext/initfromstring/_index.md new file mode 100644 index 000000000..171ec15dc --- /dev/null +++ b/english/nodejs/swissqrcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes Bill with constructed codetext." +type: docs +weight: 80 +url: /nodejs/swissqrcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initializes Bill with constructed codetext. + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext. | + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/swissqrcodetext/swissqrcodetext/_index.md b/english/nodejs/swissqrcodetext/swissqrcodetext/_index.md new file mode 100644 index 000000000..60558e7b7 --- /dev/null +++ b/english/nodejs/swissqrcodetext/swissqrcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "SwissQRCodetext" +linktitle: "SwissQRCodetext" +articleTitle: "SwissQRCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the SwissQRCodetext class." +type: docs +weight: 10 +url: /nodejs/swissqrcodetext/swissqrcodetext/ +--- +## SwissQRCodetext(object) {#constructor} + +Creates an instance of SwissQRCodetext. + +```javascript +public SwissQRCodetext(object bill) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| bill | object | SwissQR bill data | + +### See Also + +* class [SwissQRCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/textalignment/_index.md b/english/nodejs/textalignment/_index.md new file mode 100644 index 000000000..eda91bec8 --- /dev/null +++ b/english/nodejs/textalignment/_index.md @@ -0,0 +1,30 @@ +--- +title: "TextAlignment Enum" +linktitle: "TextAlignment" +articleTitle: "TextAlignment" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Text alignment." +type: docs +weight: 1010 +url: /nodejs/textalignment/ +--- +## TextAlignment enumeration + +Text alignment. + +```javascript +public enum TextAlignment +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| LEFT | `0` | Left position. | +| CENTER | `1` | Center position. | +| RIGHT | `2` | Right position. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/twodcomponenttype/_index.md b/english/nodejs/twodcomponenttype/_index.md new file mode 100644 index 000000000..82600846c --- /dev/null +++ b/english/nodejs/twodcomponenttype/_index.md @@ -0,0 +1,50 @@ +--- +title: "TwoDComponentType Enum" +linktitle: "TwoDComponentType" +articleTitle: "TwoDComponentType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Type of 2D component This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '/'." +type: docs +weight: 1110 +url: /nodejs/twodcomponenttype/ +--- +## TwoDComponentType enumeration + +Type of 2D component This sample shows how to create and save a GS1 Composite Bar image. Note that 1D codetext and 2D codetext are separated by symbol '/' + +```javascript +public enum TwoDComponentType +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Auto select type of 2D component | +| CC_A | `1` | CC-A type of 2D component. It is a structural variant of MicroPDF417 | +| CC_B | `2` | CC-B type of 2D component. It is a MicroPDF417 symbol. | +| CC_C | `3` | CC-C type of 2D component. It is a PDF417 symbol. | + +## Examples + +```javascript +let codetext = "(01)03212345678906/(21)A1B2C3D4E5F6G7H8"; +let generator = new BarcodeGenerator(EncodeTypes.GS1_COMPOSITE_BAR, codetext)) +generator.getParameters().getBarcode().getGS1CompositeBar().setLinearComponentType(EncodeTypes.GS1_CODE_128); +generator.getParameters().getBarcode().getGS1CompositeBar().setTwoDComponentType(TwoDComponentType.CC_A); +// Aspect ratio of 2D component +generator.getParameters().getBarcode().getPdf417().setAspectRatio(3); +/// +// X-Dimension of 1D and 2D components +generator.getParameters().getBarcode().getXDimension().setPixels(3); +/// +// Height of 1D component +generator.getParameters().getBarcode().getBarHeight().setPixels(100); +/// +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/unit/_index.md b/english/nodejs/unit/_index.md new file mode 100644 index 000000000..1ea122a5b --- /dev/null +++ b/english/nodejs/unit/_index.md @@ -0,0 +1,56 @@ +--- +title: "Unit Class" +linktitle: "Unit" +articleTitle: "Unit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Specifies the size value in different units (Pixel, Inches, etc.)." +type: docs +weight: 490 +url: /nodejs/unit/ +--- +## Unit class + +Specifies the size value in different units (Pixel, Inches, etc.). + +```javascript +public class Unit : joint.BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [Unit](./unit/#constructor)(*object*) | Initializes a new instance of the Unit class. | + +## Methods + +| Name | Description | +| --- | --- | +| [equals](./equals/)(*object*) | Determines whether this instance and a specified object, which must also be a Unit object, have the same value. | +| [getDocument](./getdocument/) | Gets size value in document units. | +| [getInches](./getinches/) | Gets size value in inches. | +| [getMillimeters](./getmillimeters/) | Gets size value in millimeters. | +| [getPixels](./getpixels/) | Gets size value in pixels. | +| [getPoint](./getpoint/) | Gets size value in point. | +| [init](./init/) | | +| [initUnit](./initunit/)(*object*) | | +| [setDocument](./setdocument/)(*object*) | Sets size value in document units. | +| [setInches](./setinches/)(*object*) | Sets size value in inches. | +| [setMillimeters](./setmillimeters/)(*object*) | Sets size value in millimeters. | +| [setPixels](./setpixels/)(*object*) | Sets size value in pixels. | +| [setPoint](./setpoint/)(*object*) | Sets size value in point. | +| [toString](./tostring/) | Returns a human-readable string representation of this Unit. | + +## Examples + +```javascript +//This sample shows how to create and save a BarCode image. +let generator = new BarcodeGenerator(EncodeTypes.CODE_128); +generator.getParameters().getBarcode().getBarHeight().setMillimeters(10); +generator.save("test.png", BarcodeImageFormat.PNG); +``` + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/unit/equals/_index.md b/english/nodejs/unit/equals/_index.md new file mode 100644 index 000000000..8b77cecea --- /dev/null +++ b/english/nodejs/unit/equals/_index.md @@ -0,0 +1,34 @@ +--- +title: "Unit.equals" +linktitle: "equals" +articleTitle: "equals" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Determines whether this instance and a specified object, which must also be a Unit object, have the same value." +type: docs +weight: 150 +url: /nodejs/unit/equals/ +--- +## equals(object) {#equals} + +Determines whether this instance and a specified object, which must also be a Unit object, have the same value. + +```javascript +equals(obj) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| obj | object | The Unit to compare to this instance. | + +### Return Value + +true + +if obj is a Unit and its value is the same as this instance; +otherwise, false. If obj is null, the method returns false. + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/getdocument/_index.md b/english/nodejs/unit/getdocument/_index.md new file mode 100644 index 000000000..58b4156fc --- /dev/null +++ b/english/nodejs/unit/getdocument/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.getDocument" +linktitle: "getDocument" +articleTitle: "getDocument" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size value in document units." +type: docs +weight: 120 +url: /nodejs/unit/getdocument/ +--- +## getDocument() {#getdocument} + +Gets size value in document units. + +```javascript +getDocument() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/getinches/_index.md b/english/nodejs/unit/getinches/_index.md new file mode 100644 index 000000000..935459e86 --- /dev/null +++ b/english/nodejs/unit/getinches/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.getInches" +linktitle: "getInches" +articleTitle: "getInches" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size value in inches." +type: docs +weight: 60 +url: /nodejs/unit/getinches/ +--- +## getInches() {#getinches} + +Gets size value in inches. + +```javascript +getInches() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/getmillimeters/_index.md b/english/nodejs/unit/getmillimeters/_index.md new file mode 100644 index 000000000..9ca51b7e6 --- /dev/null +++ b/english/nodejs/unit/getmillimeters/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.getMillimeters" +linktitle: "getMillimeters" +articleTitle: "getMillimeters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size value in millimeters." +type: docs +weight: 80 +url: /nodejs/unit/getmillimeters/ +--- +## getMillimeters() {#getmillimeters} + +Gets size value in millimeters. + +```javascript +getMillimeters() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/getpixels/_index.md b/english/nodejs/unit/getpixels/_index.md new file mode 100644 index 000000000..a8efbb70a --- /dev/null +++ b/english/nodejs/unit/getpixels/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.getPixels" +linktitle: "getPixels" +articleTitle: "getPixels" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size value in pixels." +type: docs +weight: 40 +url: /nodejs/unit/getpixels/ +--- +## getPixels() {#getpixels} + +Gets size value in pixels. + +```javascript +getPixels() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/getpoint/_index.md b/english/nodejs/unit/getpoint/_index.md new file mode 100644 index 000000000..a22f33259 --- /dev/null +++ b/english/nodejs/unit/getpoint/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.getPoint" +linktitle: "getPoint" +articleTitle: "getPoint" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Gets size value in point." +type: docs +weight: 100 +url: /nodejs/unit/getpoint/ +--- +## getPoint() {#getpoint} + +Gets size value in point. + +```javascript +getPoint() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/init/_index.md b/english/nodejs/unit/init/_index.md new file mode 100644 index 000000000..fbe2537d4 --- /dev/null +++ b/english/nodejs/unit/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "Unit.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/unit/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/initunit/_index.md b/english/nodejs/unit/initunit/_index.md new file mode 100644 index 000000000..3b8eac99a --- /dev/null +++ b/english/nodejs/unit/initunit/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.initUnit" +linktitle: "initUnit" +articleTitle: "initUnit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/unit/initunit/ +--- +## initUnit(object) {#initunit} + + + +```javascript +static initUnit(source) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| source | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/setdocument/_index.md b/english/nodejs/unit/setdocument/_index.md new file mode 100644 index 000000000..7dae314b3 --- /dev/null +++ b/english/nodejs/unit/setdocument/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.setDocument" +linktitle: "setDocument" +articleTitle: "setDocument" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets size value in document units." +type: docs +weight: 130 +url: /nodejs/unit/setdocument/ +--- +## setDocument(object) {#setdocument} + +Sets size value in document units. + +```javascript +setDocument(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/setinches/_index.md b/english/nodejs/unit/setinches/_index.md new file mode 100644 index 000000000..aadef0220 --- /dev/null +++ b/english/nodejs/unit/setinches/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.setInches" +linktitle: "setInches" +articleTitle: "setInches" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets size value in inches." +type: docs +weight: 70 +url: /nodejs/unit/setinches/ +--- +## setInches(object) {#setinches} + +Sets size value in inches. + +```javascript +setInches(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/setmillimeters/_index.md b/english/nodejs/unit/setmillimeters/_index.md new file mode 100644 index 000000000..15ff28a0d --- /dev/null +++ b/english/nodejs/unit/setmillimeters/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.setMillimeters" +linktitle: "setMillimeters" +articleTitle: "setMillimeters" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets size value in millimeters." +type: docs +weight: 90 +url: /nodejs/unit/setmillimeters/ +--- +## setMillimeters(object) {#setmillimeters} + +Sets size value in millimeters. + +```javascript +setMillimeters(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/setpixels/_index.md b/english/nodejs/unit/setpixels/_index.md new file mode 100644 index 000000000..ec908523e --- /dev/null +++ b/english/nodejs/unit/setpixels/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.setPixels" +linktitle: "setPixels" +articleTitle: "setPixels" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets size value in pixels." +type: docs +weight: 50 +url: /nodejs/unit/setpixels/ +--- +## setPixels(object) {#setpixels} + +Sets size value in pixels. + +```javascript +setPixels(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/setpoint/_index.md b/english/nodejs/unit/setpoint/_index.md new file mode 100644 index 000000000..8a6df10b8 --- /dev/null +++ b/english/nodejs/unit/setpoint/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit.setPoint" +linktitle: "setPoint" +articleTitle: "setPoint" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Sets size value in point." +type: docs +weight: 110 +url: /nodejs/unit/setpoint/ +--- +## setPoint(object) {#setpoint} + +Sets size value in point. + +```javascript +setPoint(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/tostring/_index.md b/english/nodejs/unit/tostring/_index.md new file mode 100644 index 000000000..f9d2c9dd6 --- /dev/null +++ b/english/nodejs/unit/tostring/_index.md @@ -0,0 +1,29 @@ +--- +title: "Unit.toString" +linktitle: "toString" +articleTitle: "toString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns a human-readable string representation of this Unit." +type: docs +weight: 140 +url: /nodejs/unit/tostring/ +--- +## toString() {#tostring} + +Returns a human-readable string representation of this Unit. + +```javascript +toString() +``` + +### Return Value + +A + +string that represents this Unit. + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/unit/unit/_index.md b/english/nodejs/unit/unit/_index.md new file mode 100644 index 000000000..9162216ee --- /dev/null +++ b/english/nodejs/unit/unit/_index.md @@ -0,0 +1,27 @@ +--- +title: "Unit" +linktitle: "Unit" +articleTitle: "Unit" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the Unit class." +type: docs +weight: 10 +url: /nodejs/unit/unit/ +--- +## Unit(object) {#constructor} + +Initializes a new instance of the Unit class. + +```javascript +public Unit(object source) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| source | object | | + +### See Also + +* class [Unit](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/_index.md b/english/nodejs/usadriveidcodetext/_index.md new file mode 100644 index 000000000..22148c928 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/_index.md @@ -0,0 +1,61 @@ +--- +title: "USADriveIdCodetext Class" +linktitle: "USADriveIdCodetext" +articleTitle: "USADriveIdCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for encoding and decoding the text embedded in the USA Driving License PDF417 code." +type: docs +weight: 360 +url: /nodejs/usadriveidcodetext/ +--- +## USADriveIdCodetext class + +Class for encoding and decoding the text embedded in the USA Driving License PDF417 code. + +```javascript +public class USADriveIdCodetext : IComplexCodetext +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [USADriveIdCodetext](./usadriveidcodetext/#constructor)(*object*) | Initializes a new instance of the USADriveIdCodetext class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addSubfileDesignator](./addsubfiledesignator/)(*object*) | Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. | +| [getAAMVAVersionNumber](./getaamvaversionnumber/) | AAMVA Version Number 00-99. | +| [getBarcodeType](./getbarcodetype/) | Returns barcode type of USA DL (Pdf417). | +| [getConstructedCodetext](./getconstructedcodetext/) | Construct codetext from USA DL data. | +| [getIssuerIdentificationNumber](./getissueridentificationnumber/) | This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be encoded. | +| [getJurisdictionSpecificSubfile](./getjurisdictionspecificsubfile/) | Jurisdiction Specific Fields. | +| [getJurisdictionVersionNumber](./getjurisdictionversionnumber/) | Jurisdiction Version Number 00-99. | +| [getMandatoryElements](./getmandatoryelements/) | Mandatory elements (fields) of the card. | +| [getNumberOfEntries](./getnumberofentries/) | Number 00-99 of subfiles. | +| [getOptionalElements](./getoptionalelements/) | Optional elements (fields) of the card. | +| [getSubfileDesignator](./getsubfiledesignator/) | Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. | +| [init](./init/) | | +| [initFromString](./initfromstring/)(*object*) | Initialize USA DL object from codetext. | +| [saveToXml](./savetoxml/) | | +| [setAAMVAVersionNumber](./setaamvaversionnumber/)(*object*) | AAMVA Version Number 00-99. | +| [setIssuerIdentificationNumber](./setissueridentificationnumber/)(*object*) | This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be encoded. | +| [setJurisdictionSpecificSubfile](./setjurisdictionspecificsubfile/)(*object*) | Jurisdiction Specific Fields. | +| [setJurisdictionVersionNumber](./setjurisdictionversionnumber/)(*object*) | Jurisdiction Version Number 00-99. | +| [setMandatoryElements](./setmandatoryelements/)(*object*) | Mandatory elements (fields) of the card. | +| [setNumberOfEntries](./setnumberofentries/)(*object*) | Number 00-99 of subfiles. | +| [setOptionalElements](./setoptionalelements/)(*object*) | Optional elements (fields) of the card. | +| [setSubfileDesignator](./setsubfiledesignator/)(*object*) | Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. | + +## Fields + +| Name | Description | +| --- | --- | +| [javaClassName](./javaclassname/) | | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/usadriveidcodetext/addsubfiledesignator/_index.md b/english/nodejs/usadriveidcodetext/addsubfiledesignator/_index.md new file mode 100644 index 000000000..0c1ba7728 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/addsubfiledesignator/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.addSubfileDesignator" +linktitle: "addSubfileDesignator" +articleTitle: "addSubfileDesignator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically." +type: docs +weight: 130 +url: /nodejs/usadriveidcodetext/addsubfiledesignator/ +--- +## addSubfileDesignator(object) {#addsubfiledesignator} + +Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. + +```javascript +addSubfileDesignator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getaamvaversionnumber/_index.md b/english/nodejs/usadriveidcodetext/getaamvaversionnumber/_index.md new file mode 100644 index 000000000..4bb685b23 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getaamvaversionnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getAAMVAVersionNumber" +linktitle: "getAAMVAVersionNumber" +articleTitle: "getAAMVAVersionNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "AAMVA Version Number 00-99." +type: docs +weight: 60 +url: /nodejs/usadriveidcodetext/getaamvaversionnumber/ +--- +## getAAMVAVersionNumber() {#getaamvaversionnumber} + +AAMVA Version Number 00-99 + +```javascript +getAAMVAVersionNumber() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getbarcodetype/_index.md b/english/nodejs/usadriveidcodetext/getbarcodetype/_index.md new file mode 100644 index 000000000..e98860b26 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getbarcodetype/_index.md @@ -0,0 +1,29 @@ +--- +title: "USADriveIdCodetext.getBarcodeType" +linktitle: "getBarcodeType" +articleTitle: "getBarcodeType" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns barcode type of USA DL (Pdf417)." +type: docs +weight: 230 +url: /nodejs/usadriveidcodetext/getbarcodetype/ +--- +## getBarcodeType() {#getbarcodetype} + +Returns barcode type of USA DL (Pdf417) + +```javascript +getBarcodeType() +``` + +### Return Value + +Barcode + +type (Pdf417) + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getconstructedcodetext/_index.md b/english/nodejs/usadriveidcodetext/getconstructedcodetext/_index.md new file mode 100644 index 000000000..47870e634 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getconstructedcodetext/_index.md @@ -0,0 +1,29 @@ +--- +title: "USADriveIdCodetext.getConstructedCodetext" +linktitle: "getConstructedCodetext" +articleTitle: "getConstructedCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Construct codetext from USA DL data." +type: docs +weight: 210 +url: /nodejs/usadriveidcodetext/getconstructedcodetext/ +--- +## getConstructedCodetext() {#getconstructedcodetext} + +Construct codetext from USA DL data + +```javascript +getConstructedCodetext() +``` + +### Return Value + +Constructed + +codetext + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getissueridentificationnumber/_index.md b/english/nodejs/usadriveidcodetext/getissueridentificationnumber/_index.md new file mode 100644 index 000000000..b37036106 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getissueridentificationnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getIssuerIdentificationNumber" +linktitle: "getIssuerIdentificationNumber" +articleTitle: "getIssuerIdentificationNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be e..." +type: docs +weight: 40 +url: /nodejs/usadriveidcodetext/getissueridentificationnumber/ +--- +## getIssuerIdentificationNumber() {#getissueridentificationnumber} + +This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be encoded. + +```javascript +getIssuerIdentificationNumber() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getjurisdictionspecificsubfile/_index.md b/english/nodejs/usadriveidcodetext/getjurisdictionspecificsubfile/_index.md new file mode 100644 index 000000000..565081bde --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getjurisdictionspecificsubfile/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getJurisdictionSpecificSubfile" +linktitle: "getJurisdictionSpecificSubfile" +articleTitle: "getJurisdictionSpecificSubfile" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Jurisdiction Specific Fields." +type: docs +weight: 190 +url: /nodejs/usadriveidcodetext/getjurisdictionspecificsubfile/ +--- +## getJurisdictionSpecificSubfile() {#getjurisdictionspecificsubfile} + +Jurisdiction Specific Fields + +```javascript +getJurisdictionSpecificSubfile() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getjurisdictionversionnumber/_index.md b/english/nodejs/usadriveidcodetext/getjurisdictionversionnumber/_index.md new file mode 100644 index 000000000..6d2004ecb --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getjurisdictionversionnumber/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getJurisdictionVersionNumber" +linktitle: "getJurisdictionVersionNumber" +articleTitle: "getJurisdictionVersionNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Jurisdiction Version Number 00-99." +type: docs +weight: 80 +url: /nodejs/usadriveidcodetext/getjurisdictionversionnumber/ +--- +## getJurisdictionVersionNumber() {#getjurisdictionversionnumber} + +Jurisdiction Version Number 00-99 + +```javascript +getJurisdictionVersionNumber() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getmandatoryelements/_index.md b/english/nodejs/usadriveidcodetext/getmandatoryelements/_index.md new file mode 100644 index 000000000..b72376dc1 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getmandatoryelements/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getMandatoryElements" +linktitle: "getMandatoryElements" +articleTitle: "getMandatoryElements" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mandatory elements (fields) of the card." +type: docs +weight: 150 +url: /nodejs/usadriveidcodetext/getmandatoryelements/ +--- +## getMandatoryElements() {#getmandatoryelements} + +Mandatory elements (fields) of the card + +```javascript +getMandatoryElements() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getnumberofentries/_index.md b/english/nodejs/usadriveidcodetext/getnumberofentries/_index.md new file mode 100644 index 000000000..6c95375b6 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getnumberofentries/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getNumberOfEntries" +linktitle: "getNumberOfEntries" +articleTitle: "getNumberOfEntries" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Number 00-99 of subfiles." +type: docs +weight: 100 +url: /nodejs/usadriveidcodetext/getnumberofentries/ +--- +## getNumberOfEntries() {#getnumberofentries} + +Number 00-99 of subfiles + +```javascript +getNumberOfEntries() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getoptionalelements/_index.md b/english/nodejs/usadriveidcodetext/getoptionalelements/_index.md new file mode 100644 index 000000000..1bf3c5656 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getoptionalelements/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getOptionalElements" +linktitle: "getOptionalElements" +articleTitle: "getOptionalElements" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional elements (fields) of the card." +type: docs +weight: 170 +url: /nodejs/usadriveidcodetext/getoptionalelements/ +--- +## getOptionalElements() {#getoptionalelements} + +Optional elements (fields) of the card + +```javascript +getOptionalElements() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/getsubfiledesignator/_index.md b/english/nodejs/usadriveidcodetext/getsubfiledesignator/_index.md new file mode 100644 index 000000000..e381406b6 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/getsubfiledesignator/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.getSubfileDesignator" +linktitle: "getSubfileDesignator" +articleTitle: "getSubfileDesignator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically." +type: docs +weight: 120 +url: /nodejs/usadriveidcodetext/getsubfiledesignator/ +--- +## getSubfileDesignator() {#getsubfiledesignator} + +Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. + +```javascript +getSubfileDesignator() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/init/_index.md b/english/nodejs/usadriveidcodetext/init/_index.md new file mode 100644 index 000000000..ca20cb9d8 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 30 +url: /nodejs/usadriveidcodetext/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/initfromstring/_index.md b/english/nodejs/usadriveidcodetext/initfromstring/_index.md new file mode 100644 index 000000000..887afdc0f --- /dev/null +++ b/english/nodejs/usadriveidcodetext/initfromstring/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.initFromString" +linktitle: "initFromString" +articleTitle: "initFromString" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initialize USA DL object from codetext." +type: docs +weight: 220 +url: /nodejs/usadriveidcodetext/initfromstring/ +--- +## initFromString(object) {#initfromstring} + +Initialize USA DL object from codetext + +```javascript +initFromString(constructedCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| constructedCodetext | object | Constructed codetext | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/savetoxml/_index.md b/english/nodejs/usadriveidcodetext/savetoxml/_index.md new file mode 100644 index 000000000..c79689bc7 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/savetoxml/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdCodetext.saveToXml" +linktitle: "saveToXml" +articleTitle: "saveToXml" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 240 +url: /nodejs/usadriveidcodetext/savetoxml/ +--- +## saveToXml() {#savetoxml} + + + +```javascript +saveToXml() +``` + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setaamvaversionnumber/_index.md b/english/nodejs/usadriveidcodetext/setaamvaversionnumber/_index.md new file mode 100644 index 000000000..0ae1955db --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setaamvaversionnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setAAMVAVersionNumber" +linktitle: "setAAMVAVersionNumber" +articleTitle: "setAAMVAVersionNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "AAMVA Version Number 00-99." +type: docs +weight: 70 +url: /nodejs/usadriveidcodetext/setaamvaversionnumber/ +--- +## setAAMVAVersionNumber(object) {#setaamvaversionnumber} + +AAMVA Version Number 00-99 + +```javascript +setAAMVAVersionNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setissueridentificationnumber/_index.md b/english/nodejs/usadriveidcodetext/setissueridentificationnumber/_index.md new file mode 100644 index 000000000..619fe9bb4 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setissueridentificationnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setIssuerIdentificationNumber" +linktitle: "setIssuerIdentificationNumber" +articleTitle: "setIssuerIdentificationNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be e..." +type: docs +weight: 50 +url: /nodejs/usadriveidcodetext/setissueridentificationnumber/ +--- +## setIssuerIdentificationNumber(object) {#setissueridentificationnumber} + +This number uniquely identifies the issuing jurisdiction and can be obtained by contacting the ISO Issuing Authority(AAMVA). The full 6-digit IIN should be encoded. + +```javascript +setIssuerIdentificationNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setjurisdictionspecificsubfile/_index.md b/english/nodejs/usadriveidcodetext/setjurisdictionspecificsubfile/_index.md new file mode 100644 index 000000000..d1b3cafa1 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setjurisdictionspecificsubfile/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setJurisdictionSpecificSubfile" +linktitle: "setJurisdictionSpecificSubfile" +articleTitle: "setJurisdictionSpecificSubfile" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Jurisdiction Specific Fields." +type: docs +weight: 200 +url: /nodejs/usadriveidcodetext/setjurisdictionspecificsubfile/ +--- +## setJurisdictionSpecificSubfile(object) {#setjurisdictionspecificsubfile} + +Jurisdiction Specific Fields + +```javascript +setJurisdictionSpecificSubfile(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setjurisdictionversionnumber/_index.md b/english/nodejs/usadriveidcodetext/setjurisdictionversionnumber/_index.md new file mode 100644 index 000000000..03a891e2d --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setjurisdictionversionnumber/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setJurisdictionVersionNumber" +linktitle: "setJurisdictionVersionNumber" +articleTitle: "setJurisdictionVersionNumber" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Jurisdiction Version Number 00-99." +type: docs +weight: 90 +url: /nodejs/usadriveidcodetext/setjurisdictionversionnumber/ +--- +## setJurisdictionVersionNumber(object) {#setjurisdictionversionnumber} + +Jurisdiction Version Number 00-99 + +```javascript +setJurisdictionVersionNumber(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setmandatoryelements/_index.md b/english/nodejs/usadriveidcodetext/setmandatoryelements/_index.md new file mode 100644 index 000000000..98b13043b --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setmandatoryelements/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setMandatoryElements" +linktitle: "setMandatoryElements" +articleTitle: "setMandatoryElements" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Mandatory elements (fields) of the card." +type: docs +weight: 160 +url: /nodejs/usadriveidcodetext/setmandatoryelements/ +--- +## setMandatoryElements(object) {#setmandatoryelements} + +Mandatory elements (fields) of the card + +```javascript +setMandatoryElements(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setnumberofentries/_index.md b/english/nodejs/usadriveidcodetext/setnumberofentries/_index.md new file mode 100644 index 000000000..65caa3678 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setnumberofentries/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setNumberOfEntries" +linktitle: "setNumberOfEntries" +articleTitle: "setNumberOfEntries" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Number 00-99 of subfiles." +type: docs +weight: 110 +url: /nodejs/usadriveidcodetext/setnumberofentries/ +--- +## setNumberOfEntries(object) {#setnumberofentries} + +Number 00-99 of subfiles + +```javascript +setNumberOfEntries(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setoptionalelements/_index.md b/english/nodejs/usadriveidcodetext/setoptionalelements/_index.md new file mode 100644 index 000000000..b1fc393b4 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setoptionalelements/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setOptionalElements" +linktitle: "setOptionalElements" +articleTitle: "setOptionalElements" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Optional elements (fields) of the card." +type: docs +weight: 180 +url: /nodejs/usadriveidcodetext/setoptionalelements/ +--- +## setOptionalElements(object) {#setoptionalelements} + +Optional elements (fields) of the card + +```javascript +setOptionalElements(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/setsubfiledesignator/_index.md b/english/nodejs/usadriveidcodetext/setsubfiledesignator/_index.md new file mode 100644 index 000000000..5885c49cd --- /dev/null +++ b/english/nodejs/usadriveidcodetext/setsubfiledesignator/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext.setSubfileDesignator" +linktitle: "setSubfileDesignator" +articleTitle: "setSubfileDesignator" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically." +type: docs +weight: 140 +url: /nodejs/usadriveidcodetext/setsubfiledesignator/ +--- +## setSubfileDesignator(object) {#setsubfiledesignator} + +Contains information about following subfiles, types, offsets and lengths. Important: set only type, offset and length will be set automatically. + +```javascript +setSubfileDesignator(value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| value | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcodetext/usadriveidcodetext/_index.md b/english/nodejs/usadriveidcodetext/usadriveidcodetext/_index.md new file mode 100644 index 000000000..3e87d07d6 --- /dev/null +++ b/english/nodejs/usadriveidcodetext/usadriveidcodetext/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdCodetext" +linktitle: "USADriveIdCodetext" +articleTitle: "USADriveIdCodetext" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the USADriveIdCodetext class." +type: docs +weight: 10 +url: /nodejs/usadriveidcodetext/usadriveidcodetext/ +--- +## USADriveIdCodetext(object) {#constructor} + +Initializes a new instance of the USADriveIdCodetext class. + +```javascript +public USADriveIdCodetext(object usaDriveIdCodetext) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| usaDriveIdCodetext | object | | + +### See Also + +* class [USADriveIdCodetext](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidcountry/_index.md b/english/nodejs/usadriveidcountry/_index.md new file mode 100644 index 000000000..65607682d --- /dev/null +++ b/english/nodejs/usadriveidcountry/_index.md @@ -0,0 +1,30 @@ +--- +title: "USADriveIdCountry Enum" +linktitle: "USADriveIdCountry" +articleTitle: "USADriveIdCountry" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enum for Country Identification in the US Driver's License." +type: docs +weight: 410 +url: /nodejs/usadriveidcountry/ +--- +## USADriveIdCountry enumeration + +Enum for Country Identification in the US Driver's License + +```javascript +public enum USADriveIdCountry +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | Not filled - equal to NONE | +| US | `1` | Country = U.S. | +| CANADA | `2` | Country = Canada | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/usadriveideyecolor/_index.md b/english/nodejs/usadriveideyecolor/_index.md new file mode 100644 index 000000000..e3b50bf3c --- /dev/null +++ b/english/nodejs/usadriveideyecolor/_index.md @@ -0,0 +1,38 @@ +--- +title: "USADriveIdEyeColor Enum" +linktitle: "USADriveIdEyeColor" +articleTitle: "USADriveIdEyeColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enum for Eye Color in the US Driver's License." +type: docs +weight: 400 +url: /nodejs/usadriveideyecolor/ +--- +## USADriveIdEyeColor enumeration + +Enum for Eye Color in the US Driver's License + +```javascript +public enum USADriveIdEyeColor +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NO_INFO | `0` | Not filled - equal to NONE | +| BLACK | `1` | BLK - Black or very dark brown. | +| BLUE | `2` | BLU - Blue color. | +| BROWN | `3` | BRO - Brown, including amber. | +| MULTI_COLOR | `4` | DIC - Dichromatic or multicolor, of one or both eyes. | +| GRAY | `5` | GRY - Gray color. | +| GREEN | `6` | GRN - Green color. | +| HAZEL | `7` | HAZ - Hazel, a mixture of colors, most commonly green and brown. | +| MAROON | `8` | MAR - Maroon color. | +| PINK | `9` | PNK - Pink or albino | +| UNKNOWN | `10` | UNK - Unknown / Other | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/usadriveidhaircolor/_index.md b/english/nodejs/usadriveidhaircolor/_index.md new file mode 100644 index 000000000..a35a773e0 --- /dev/null +++ b/english/nodejs/usadriveidhaircolor/_index.md @@ -0,0 +1,37 @@ +--- +title: "USADriveIdHairColor Enum" +linktitle: "USADriveIdHairColor" +articleTitle: "USADriveIdHairColor" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enum for Hair Color in the US Driver's License." +type: docs +weight: 420 +url: /nodejs/usadriveidhaircolor/ +--- +## USADriveIdHairColor enumeration + +Enum for Hair Color in the US Driver's License + +```javascript +public enum USADriveIdHairColor +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NO_INFO | `0` | Not filled - equal to NONE | +| BALD | `1` | BAL - Bald. | +| BLACK | `2` | BLK - Black color | +| BLOND | `3` | BLN - Blonde color | +| BROWN | `4` | BRO - Brown color | +| GRAY | `5` | GRY - Gray color | +| RED | `6` | RED - Red / Auburn | +| SANDY | `7` | SDY - Sandy color | +| WHITE | `8` | WHI - White color | +| UNKNOWN | `9` | UNK - Unknown / Other | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/_index.md b/english/nodejs/usadriveidjurisdsubfile/_index.md new file mode 100644 index 000000000..c3083475f --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/_index.md @@ -0,0 +1,46 @@ +--- +title: "USADriveIdJurisdSubfile Class" +linktitle: "USADriveIdJurisdSubfile" +articleTitle: "USADriveIdJurisdSubfile" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Class for Jurisdiction specific fields for USA DL." +type: docs +weight: 340 +url: /nodejs/usadriveidjurisdsubfile/ +--- +## USADriveIdJurisdSubfile class + +Class for Jurisdiction specific fields for USA DL + +```javascript +public class USADriveIdJurisdSubfile : BaseJavaClass +``` + +## Constructors + +| Name | Description | +| --- | --- | +| [USADriveIdJurisdSubfile](./usadriveidjurisdsubfile/#constructor)(*object*) | Initializes a new instance of the USADriveIdJurisdSubfile class. | + +## Methods + +| Name | Description | +| --- | --- | +| [addOrReplace](./addorreplace/)(*object, object*) | Adds a new DataElement with the specified identifier and value, or replaces the existing element if an entry with the same ElementID is already present. | +| [addOrReplaceNode](./addorreplacenode/)(*object*) | Adds new DataElement or replaces it if ElementID already exists. | +| [clear](./clear/) | Clears all data elements. | +| [findDataElement](./finddataelement/)(*object, object*) | Searches for data element by 3-letter id. | +| [get](./get/)(*object*) | Indexing by 3-letter element id. | +| [get](./get/)(*object*) | Indexing by index number. | +| [init](./init/) | | +| [insert](./insert/)(*object, object*) | Inserts the specified DataElement at the given index. If a DataElement with the same ElementID already exists, it will be replaced. | +| [remove](./remove/)(*object*) | Tries to remove element at index. | +| [remove](./remove/)(*object*) | Tries to remove element with 3-letter id. | +| [set](./set/)(*object, object*) | Indexing by 3-letter element id. | +| [set](./set/)(*object, object*) | Indexing by index number. | +| [size](./size/) | Returns number of data elements. | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/addorreplace/_index.md b/english/nodejs/usadriveidjurisdsubfile/addorreplace/_index.md new file mode 100644 index 000000000..7697dd977 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/addorreplace/_index.md @@ -0,0 +1,34 @@ +--- +title: "USADriveIdJurisdSubfile.addOrReplace" +linktitle: "addOrReplace" +articleTitle: "addOrReplace" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds a new DataElement with the specified identifier and value, or replaces the existing element if an entry with the same ElementID is already present." +type: docs +weight: 140 +url: /nodejs/usadriveidjurisdsubfile/addorreplace/ +--- +## addOrReplace(object, object) {#addorreplace} + +Adds a new DataElement with the specified identifier and value, or replaces the existing element if an entry with the same ElementID is already present. + +```javascript +addOrReplace(id, value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| id | object | A 3-letter identifier that uniquely specifies the jurisdiction-related data element. | +| value | object | The text value assigned to the data element; this value will overwrite the existing one if the element already exists. | + +### Return Value + +The + +DataElement instance that was added to the collection or updated in place. + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/addorreplacenode/_index.md b/english/nodejs/usadriveidjurisdsubfile/addorreplacenode/_index.md new file mode 100644 index 000000000..2b48fc339 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/addorreplacenode/_index.md @@ -0,0 +1,33 @@ +--- +title: "USADriveIdJurisdSubfile.addOrReplaceNode" +linktitle: "addOrReplaceNode" +articleTitle: "addOrReplaceNode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Adds new DataElement or replaces it if ElementID already exists." +type: docs +weight: 130 +url: /nodejs/usadriveidjurisdsubfile/addorreplacenode/ +--- +## addOrReplaceNode(object) {#addorreplacenode} + +Adds new DataElement or replaces it if ElementID already exists. + +```javascript +addOrReplaceNode(node) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| node | object | DataElement to add | + +### Return Value + +Added/replaced + +data element + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/clear/_index.md b/english/nodejs/usadriveidjurisdsubfile/clear/_index.md new file mode 100644 index 000000000..8af8ad492 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/clear/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdJurisdSubfile.clear" +linktitle: "clear" +articleTitle: "clear" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Clears all data elements." +type: docs +weight: 90 +url: /nodejs/usadriveidjurisdsubfile/clear/ +--- +## clear() {#clear} + +Clears all data elements + +```javascript +clear() +``` + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/finddataelement/_index.md b/english/nodejs/usadriveidjurisdsubfile/finddataelement/_index.md new file mode 100644 index 000000000..a31250995 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/finddataelement/_index.md @@ -0,0 +1,34 @@ +--- +title: "USADriveIdJurisdSubfile.findDataElement" +linktitle: "findDataElement" +articleTitle: "findDataElement" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Searches for data element by 3-letter id." +type: docs +weight: 70 +url: /nodejs/usadriveidjurisdsubfile/finddataelement/ +--- +## findDataElement(object, object) {#finddataelement} + +Searches for data element by 3-letter id + +```javascript +findDataElement(id, isOpenOrCreate) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| id | object | 3-letter id | +| isOpenOrCreate | object | If true, it will be created if not found | + +### Return Value + +Found + +data element + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/get/_index.md b/english/nodejs/usadriveidjurisdsubfile/get/_index.md new file mode 100644 index 000000000..094fd1385 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/get/_index.md @@ -0,0 +1,58 @@ +--- +title: "USADriveIdJurisdSubfile.get" +linktitle: "get" +articleTitle: "get" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indexing by 3-letter element id." +type: docs +weight: 30 +url: /nodejs/usadriveidjurisdsubfile/get/ +--- +## get(object) {#get} + +Indexing by 3-letter element id + +```javascript +get(id) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| id | object | 3-letter element id | + +### Return Value + +Corresponding + +DataElement + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + +--- + +## get(object) {#get_1} + +Indexing by index number + +```javascript +get(index) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| index | object | Element index (int) | + +### Return Value + +Corresponding + +DataElement + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/init/_index.md b/english/nodejs/usadriveidjurisdsubfile/init/_index.md new file mode 100644 index 000000000..1e96ff52d --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/init/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdJurisdSubfile.init" +linktitle: "init" +articleTitle: "init" +second_title: "Aspose.BarCode for Node.js via Java" +description: "" +type: docs +weight: 20 +url: /nodejs/usadriveidjurisdsubfile/init/ +--- +## init() {#init} + + + +```javascript +init() +``` + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/insert/_index.md b/english/nodejs/usadriveidjurisdsubfile/insert/_index.md new file mode 100644 index 000000000..1a899649a --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/insert/_index.md @@ -0,0 +1,34 @@ +--- +title: "USADriveIdJurisdSubfile.insert" +linktitle: "insert" +articleTitle: "insert" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Inserts the specified DataElement at the given index. If a DataElement with the same ElementID already exists, it will be replaced." +type: docs +weight: 120 +url: /nodejs/usadriveidjurisdsubfile/insert/ +--- +## insert(object, object) {#insert} + +Inserts the specified DataElement at the given index. If a DataElement with the same ElementID already exists, it will be replaced. + +```javascript +insert(index, node) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| index | object | The zero-based index at which the element should be inserted. | +| node | object | The DataElement instance to insert or replace at the target position. | + +### Return Value + +The + +DataElement that was inserted or used to replace an existing entry. + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/remove/_index.md b/english/nodejs/usadriveidjurisdsubfile/remove/_index.md new file mode 100644 index 000000000..ce930b7a8 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/remove/_index.md @@ -0,0 +1,58 @@ +--- +title: "USADriveIdJurisdSubfile.remove" +linktitle: "remove" +articleTitle: "remove" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Tries to remove element at index." +type: docs +weight: 100 +url: /nodejs/usadriveidjurisdsubfile/remove/ +--- +## remove(object) {#remove} + +Tries to remove element at index + +```javascript +remove(index) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| index | object | index number | + +### Return Value + +true + +if successful, false if out of range + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + +--- + +## remove(object) {#remove_1} + +Tries to remove element with 3-letter id + +```javascript +remove(id) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| id | object | 3-letter id | + +### Return Value + +true + +if successful, false if no such id + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/set/_index.md b/english/nodejs/usadriveidjurisdsubfile/set/_index.md new file mode 100644 index 000000000..2af6e9e46 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/set/_index.md @@ -0,0 +1,60 @@ +--- +title: "USADriveIdJurisdSubfile.set" +linktitle: "set" +articleTitle: "set" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Indexing by 3-letter element id." +type: docs +weight: 40 +url: /nodejs/usadriveidjurisdsubfile/set/ +--- +## set(object, object) {#set} + +Indexing by 3-letter element id + +```javascript +set(id, value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| id | object | 3-letter element id | +| value | object | | + +### Return Value + +Corresponding + +DataElement + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + +--- + +## set(object, object) {#set_1} + +Indexing by index number + +```javascript +set(index, value) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| index | object | Element index (int) | +| value | object | | + +### Return Value + +Corresponding + +DataElement + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/size/_index.md b/english/nodejs/usadriveidjurisdsubfile/size/_index.md new file mode 100644 index 000000000..95526d1c0 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/size/_index.md @@ -0,0 +1,23 @@ +--- +title: "USADriveIdJurisdSubfile.size" +linktitle: "size" +articleTitle: "size" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Returns number of data elements." +type: docs +weight: 80 +url: /nodejs/usadriveidjurisdsubfile/size/ +--- +## size() {#size} + +Returns number of data elements + +```javascript +size() +``` + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidjurisdsubfile/usadriveidjurisdsubfile/_index.md b/english/nodejs/usadriveidjurisdsubfile/usadriveidjurisdsubfile/_index.md new file mode 100644 index 000000000..4d2365f57 --- /dev/null +++ b/english/nodejs/usadriveidjurisdsubfile/usadriveidjurisdsubfile/_index.md @@ -0,0 +1,27 @@ +--- +title: "USADriveIdJurisdSubfile" +linktitle: "USADriveIdJurisdSubfile" +articleTitle: "USADriveIdJurisdSubfile" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Initializes a new instance of the USADriveIdJurisdSubfile class." +type: docs +weight: 10 +url: /nodejs/usadriveidjurisdsubfile/usadriveidjurisdsubfile/ +--- +## USADriveIdJurisdSubfile(object) {#constructor} + +Initializes a new instance of the USADriveIdJurisdSubfile class. + +```javascript +public USADriveIdJurisdSubfile(object nativeObject) +``` + +| Parameter | Type | Description | +| --- | --- | --- | +| nativeObject | object | | + +### See Also + +* class [USADriveIdJurisdSubfile](../) +* assembly [Aspose.BarCode](../../) + diff --git a/english/nodejs/usadriveidsex/_index.md b/english/nodejs/usadriveidsex/_index.md new file mode 100644 index 000000000..4349f1938 --- /dev/null +++ b/english/nodejs/usadriveidsex/_index.md @@ -0,0 +1,31 @@ +--- +title: "USADriveIdSex Enum" +linktitle: "USADriveIdSex" +articleTitle: "USADriveIdSex" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Enum for Sex field in the US Driver's License." +type: docs +weight: 430 +url: /nodejs/usadriveidsex/ +--- +## USADriveIdSex enumeration + +Enum for Sex field in the US Driver's License + +```javascript +public enum USADriveIdSex +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| NONE | `0` | Not filled - equal to NONE | +| MALE | `1` | Male — indicates that the holder's sex is defined as male. | +| FEMALE | `2` | Female — indicates that the holder's sex is defined as female. | +| NOT_SPECIFIED | `9` | Not specified | + +### See Also + +* assembly [Aspose.BarCode](../) + diff --git a/english/nodejs/xdimensionmode/_index.md b/english/nodejs/xdimensionmode/_index.md new file mode 100644 index 000000000..7c2828afe --- /dev/null +++ b/english/nodejs/xdimensionmode/_index.md @@ -0,0 +1,32 @@ +--- +title: "XDimensionMode Enum" +linktitle: "XDimensionMode" +articleTitle: "XDimensionMode" +second_title: "Aspose.BarCode for Node.js via Java" +description: "Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar." +type: docs +weight: 1540 +url: /nodejs/xdimensionmode/ +--- +## XDimensionMode enumeration + +Recognition mode which sets size (from 1 to infinity) of barcode minimal element: matrix cell or bar. + +```javascript +public enum XDimensionMode +``` + +## Values + +| Name | Value | Description | +| --- | :---: | --- | +| AUTO | `0` | Value of XDimension is detected by AI (SVM). At this time the same as Normal | +| SMALL | `1` | Detects barcodes with small XDimension in 1 pixel or more with quality from BarcodeQuality | +| NORMAL | `2` | Detects barcodes with classic XDimension in 2 pixels or more with quality from BarcodeQuality or high quality barcodes. | +| LARGE | `3` | Detects barcodes with large XDimension with quality from BarcodeQuality captured with high-resolution cameras. | +| USE_MINIMAL_X_DIMENSION | `4` | Detects barcodes from size set in MinimalXDimension with quality from BarcodeQuality | + +### See Also + +* assembly [Aspose.BarCode](../) +