<?xml version="1.0"?>
<doc>
  <assembly>
    <name>Aspose.BarCode</name>
  </assembly>
  <members>
    <member name="T:Aspose.BarCode.Common.Helpers.NamespaceDoc">
      <summary>
            The <b>BarCode.Common.Helpers</b> contains utility classes or wrappers to provide common intermediate functions.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Common.NamespaceDoc">
      <summary>
            The <b>BarCode.Common</b> contains common features and helper tools to maintain the main functionality.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Common.ProcessorSettings">
      <summary>
            Information about using processor cores
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Common.ProcessorSettings.UseAllCores">
      <summary>
            Is needed to use all cores. 
            Compact framework can not determine the number of cores. 
            For compact framework need use field UseOnlyThisCoresCount, to specify the number of cores.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Common.ProcessorSettings.UseOnlyThisCoresCount">
      <summary>
            Specify the number of cores to use. 
            You need to change the property "UseAllCores" to "false". 
            </summary>
      <example>
        <code>
            [C#]
            BarCodeReader.ProcessorSettings.UseAllCores = false;
            reader.ManualHints = ManualHint.InvertImage| ManualHint.IncorrectBarcodes;
            [VB.NET]
            reader.RecognitionMode = RecognitionMode.ManualHints
            reader.ManualHints = ManualHint.InvertImage Or ManualHint.IncorrectBarcodes
            </code>
      </example>
    </member>
    <member name="P:Aspose.BarCode.Common.ProcessorSettings.MaxAdditionalAllowedThreads">
      <summary>
            Specify the maximal number of additional threads to run code in parallel
            </summary>
      <example>
        <code>
            [C#]
            BarCodeReader.ProcessorSettings.MaxAdditionalAllowedThreads = 24;
            </code>
      </example>
    </member>
    <member name="T:Aspose.BarCode.CustomerInformationInterpretingType">
      <summary>
            Defines the interpreting type (CTable, NTable or Other) of customer information for AustralianPost BarCode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CustomerInformationInterpretingType.CTable">
      <summary>
            Use CTable to interpret the customer information. Allows A..Z, a..z, 1..9, space and # sing.
            </summary>
      <example>
            This sample shows how to generate and recognize Australia Post barcode with CTable Interpreting Type.
            <code>
             [C#]
             using (BarCodeBuilder builder = new BarCodeBuilder())
             {
                builder.SymbologyType = Symbology.AustraliaPost;
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable;
                builder.CodeText = "5912345678ABCde";
                
                using (Bitmap image = builder.GenerateBarCodeImage())
                using (BarCodeReader r = new BarCodeReader(image, DecodeType.AustraliaPost))
                {
                   r.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable;
                   while (r.Read())
                   {
                       Console.WriteLine("BarCode Type: " + r.GetCodeType());
                       Console.WriteLine("BarCode CodeText: " + r.GetCodeText());
                   }
                }
             }
             
             [VB.NET]
             Using builder As BarCodeBuilder = New BarCodeBuilder()
                builder.SymbologyType = Symbology.AustraliaPost
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable
                builder.CodeText = "5912345678ABCde"
             
                Using image As Bitmap = builder.GenerateBarCodeImage()
                Using reader As BarCodeReader = New BarCodeReader(image, DecodeType.AustraliaPost)
                reader.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable
                   While r.Read()
                      Console.WriteLine("BarCode Type: " + r.GetReadType())
                      Console.WriteLine("BarCode CodeText: " + r.GetCodeText())
                   End While
                End Using
                End Using
             End Using
             </code></example>
    </member>
    <member name="F:Aspose.BarCode.CustomerInformationInterpretingType.NTable">
      <summary>
            Use NTable to interpret the customer information. Allows digits.
            </summary>
      <example>
            This sample shows how to generate and recognize Australia Post barcode with NTable Interpreting Type.
            <code>
             [C#]
             using (BarCodeBuilder builder = new BarCodeBuilder())
             {
                builder.SymbologyType = Symbology.AustraliaPost;
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.NTable;
                builder.CodeText = "59123456781234567";
                
                using (Bitmap image = builder.GenerateBarCodeImage())
                using (BarCodeReader r = new BarCodeReader(image, DecodeType.AustraliaPost))
                {
                   r.CustomerInformationInterpretingType = CustomerInformationInterpretingType.NTable;
                   while (r.Read())
                   {
                       Console.WriteLine("BarCode Type: " + r.GetCodeType());
                       Console.WriteLine("BarCode CodeText: " + r.GetCodeText());
                   }
                }
             }
             
             [VB.NET]
             Using builder As BarCodeBuilder = New BarCodeBuilder()
                builder.SymbologyType = Symbology.AustraliaPost
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.NTable
                builder.CodeText = "59123456781234567"
             
                Using image As Bitmap = builder.GenerateBarCodeImage()
                Using reader As BarCodeReader = New BarCodeReader(image, DecodeType.AustraliaPost)
                reader.CustomerInformationInterpretingType = CustomerInformationInterpretingType.NTable
                   While r.Read()
                      Console.WriteLine("BarCode Type: " + r.GetReadType())
                      Console.WriteLine("BarCode CodeText: " + r.GetCodeText())
                   End While
                End Using
                End Using
             End Using
             </code></example>
    </member>
    <member name="F:Aspose.BarCode.CustomerInformationInterpretingType.Other">
      <summary>
            Do not interpret the customer information. Allows 0, 1, 2 or 3 symbol only.
            </summary>
      <example>
            This sample shows how to generate and recognize Australia Post barcode without Customer Interpreting Type.
            <code>
             [C#]
             using (BarCodeBuilder builder = new BarCodeBuilder())
             {
                builder.SymbologyType = Symbology.AustraliaPost;
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.Other;
                builder.CodeText = "59123456780123012301230123";
                
                using (Bitmap image = builder.GenerateBarCodeImage())
                using (BarCodeReader r = new BarCodeReader(image, DecodeType.AustraliaPost))
                {
                   r.CustomerInformationInterpretingType = CustomerInformationInterpretingType.Other;
                   while (r.Read())
                   {
                       Console.WriteLine("BarCode Type: " + r.GetCodeType());
                       Console.WriteLine("BarCode CodeText: " + r.GetCodeText());
                   }
                }
             }
             
             [VB.NET]
             Using builder As BarCodeBuilder = New BarCodeBuilder()
                builder.SymbologyType = Symbology.AustraliaPost
                builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.Other
                builder.CodeText = "59123456780123012301230123"
             
                Using image As Bitmap = builder.GenerateBarCodeImage()
                Using reader As BarCodeReader = New BarCodeReader(image, DecodeType.AustraliaPost)
                reader.CustomerInformationInterpretingType = CustomerInformationInterpretingType.Other
                   While r.Read()
                      Console.WriteLine("BarCode Type: " + r.GetReadType())
                      Console.WriteLine("BarCode CodeText: " + r.GetCodeText())
                   End While
                End Using
                End Using
             End Using
             </code></example>
    </member>
    <member name="T:Aspose.BarCode.BarCodeException">
      <summary>
             Represents the exception for creating barcode image.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeException.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeException" /> class.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeException.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeException" /> class with specified error message.
            </summary>
      <param name="message">The error message of the exception.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeException.#ctor(System.String,System.Exception)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeException" /> class with the specified error message and the current exception.
            </summary>
      <param name="message">The error message of the exception.</param>
      <param name="innerException">The current exception is thrown.</param>
    </member>
    <member name="T:Aspose.BarCode.InvalidCodeException">
      <summary>
            The Exception will be thrown when invalid characters contained in the code text.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.InvalidCodeException.#ctor(System.String)">
      <summary>
            Initializes a new instance of the InvalidCodeException class with a specified error message.
            </summary>
      <param name="message">A String that describes the error.</param>
    </member>
    <member name="T:Aspose.BarCode.NamespaceGroupDoc">
      <summary>
            The <b>Aspose.BarCode</b> contains tools for the 1D/2D barcodes generation and drawing.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode</b> contains tools for the 1D/2D barcodes generation and drawing.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.BarcodeGenerator">
      <summary>
            V3.BarcodeGenerator for backend barcode images generation.
            <para>
            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 ...
            </para></summary>
      <example>
            This sample shows how to create and save a barcode image.
            <code>
            [C#]
              using(var generator = new V3.BarcodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeText = "123ABC";
                  generator.Save("code128.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeGenerator.Parameters">
      <summary>
            Generation parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeGenerator.BarcodeType">
      <summary>
            Barcode symbology type.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeGenerator.IsLicensed">
      <summary>
            Gets a value indicating whether generation module is licensed.
            </summary>
      <value>
        <c>true</c> if generation module is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeGenerator.CodeText">
      <summary>
            Text to be encoded.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.#ctor(Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Creates an instance of V3.BarcodeGenerator.
            </summary>
      <param name="type">Barcode symbology type. Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> class to setup a symbology.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.#ctor(Aspose.BarCode.Generation.BaseEncodeType,System.String)">
      <summary>
            Creates an instance of V3.BarcodeGenerator.
            </summary>
      <param name="type">Barcode symbology type. Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> class to setup a symbology.</param>
      <param name="codeText">Text to be encoded.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.GenerateBarCodeImage">
      <summary>
            Generate the barcode image under current settings.
            </summary>
      <returns> Barcode image. See <see cref="T:System.Drawing.Bitmap" />.</returns>
      <example>
            This sample shows how to create and save a barcode image.
            <code>
            [C#]
              using(var generator = new V3.BarcodeGenerator(EncodeTypes.Code128))
              {
                  Bitmap barcode = generator.GenerateBarCodeImage();
                  barcode.Save("test.png");
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.Save(System.IO.Stream,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save barcode image to stream in specific format.
            </summary>
      <param name="stream">Output System.IO.Stream.</param>
      <param name="format">Specifies the file format of the output image.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.Save(System.String,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save barcode image to specific file in specific format.
            </summary>
      <param name="filename">Path to save to.</param>
      <param name="format">Specifies the file format of the output image.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.Save(System.String)">
      <summary>
            Save barcode image to specific file.
            </summary>
      <param name="filename">Path to save to.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.V3.BarcodeGenerator.DrawWpf(System.Windows.Media.DrawingContext)">
      <summary>
            Draws barcode image on WPF canvas.
            </summary>
      <param name="context">WPF drawing context.</param>
      <returns>Actual image size</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.AutoSizeMode">
      <summary>
            Specifies the different types of automatic sizing modes.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.AutoSizeMode.None">
      <summary>
            Automatic resizing is disabled.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.AutoSizeMode.Nearest">
      <summary>
            Resizes barcode to nearest lowest possible size specified by BarCodeWidth and BarCodeHeight properties.
            Preserves default aspect ratio.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.AutoSizeMode.Interpolation">
      <summary>
            Resizes barcode to specified size.
            Size can be specified by BarCodeWidth and BarCodeHeight properties.
            Generated barcode may be invalid (not readable) after scaling.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.BarcodeParameters">
      <summary>
            Barcode generation parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.XDimension">
      <summary>
            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 <see cref="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AutoSizeMode" /> property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.BarHeight">
      <summary>
            Height of 1D barcodes' bars in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            Ignored if <see cref="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AutoSizeMode" /> property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AutoSizeMode">
      <summary>
            Specifies the different types of automatic sizing modes.
            Default value: V3.AutoSizeMode.None.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.BarCodeHeight">
      <summary>
            BarCode height when <see cref="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AutoSizeMode" /> property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.BarCodeWidth">
      <summary>
            BarCode width when <see cref="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AutoSizeMode" /> property is set to AutoSizeMode.Nearest or AutoSizeMode.Interpolation.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.ForeColor">
      <summary>
            Bars color.
            Default value: Color.Black.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Padding">
      <summary>
            Barcode paddings.
            Default value: 5pt 5pt 5pt 5pt.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.ChecksumAlwaysShow">
      <summary>
             Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.IsChecksumEnabled">
      <summary>
        <para>Enable checksum during generation 1D barcodes.</para>
        <para>Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar</para>
        <para>Checksum always used: Rest symbology</para>
      </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property. It is worked pdf417, DataMatrix, Code128 only
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \013 and \\CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.ThrowExceptionWhenCodeTextIncorrect">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.WideNarrowRatio">
      <summary>
            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
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>WideNarrowRatio</b> parameter value is less than or equal to 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.CodeTextParameters">
      <summary>
            Codetext parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.FilledBars">
      <summary>
            Gets or sets a value indicating whether bars filled.
            Only for 1D barcodes.
            Default value: true.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Postal">
      <summary>
            Postal parameters. Used for Postnet, Planet.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.AustralianPost">
      <summary>
            AustralianPost barcode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.DataBar">
      <summary>
            Databar parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Codablock">
      <summary>
            Codablock parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.DataMatrix">
      <summary>
            DataMatrix parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Code16K">
      <summary>
            Code16K parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.DotCode">
      <summary>
            DotCode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.ITF">
      <summary>
            ITF parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Pdf417">
      <summary>
            PDF417 parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.QR">
      <summary>
            QR parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Supplement">
      <summary>
            Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.MaxiCode">
      <summary>
            MaxiCode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Aztec">
      <summary>
            Aztec parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Codabar">
      <summary>
            Codabar parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodeParameters.Coupon">
      <summary>
            Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CouponParameters">
      <summary>
            Coupon parameters. Used for UpcaGs1DatabarCoupon, UpcaGs1Code128Coupon.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CouponParameters.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CodabarParameters">
      <summary>
            Codabar parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodabarParameters.CodabarChecksumMode">
      <summary>
            Get or set the checksum algorithm for Codabar barcodes.
            Default value: CodabarChecksumMode.Mod16.
            To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum.
            See <see cref="P:Aspose.BarCode.Generation.V3.CodabarParameters.CodabarChecksumMode" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodabarParameters.CodabarStartSymbol">
      <summary>
            Start symbol (character) of Codabar symbology.
            Default value: CodabarSymbol.A
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodabarParameters.CodabarStopSymbol">
      <summary>
            Stop symbol (character) of Codabar symbology.
            Default value: CodabarSymbol.A
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.AztecParameters">
      <summary>
            Aztec parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AztecParameters.AztecErrorLevel">
      <summary>
            Level of error correction of Aztec types of barcode.
            Value should between 10 to 95.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AztecParameters.AztecSymbolMode">
      <summary>
            Gets or sets a Aztec Symbol mode.
            Default value: AztecSymbolMode.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AztecParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AztecParameters.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.MaxiCodeParameters">
      <summary>
            MaxiCode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.MaxiCodeParameters.MaxiCodeEncodeMode">
      <summary>
            Gets or sets a MaxiCode encode mode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.MaxiCodeParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.SupplementParameters">
      <summary>
            Supplement parameters. Used for Interleaved2of5, Standard2of5, EAN13, EAN8, UPCA, UPCE, ISBN, ISSN, ISMN.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.SupplementParameters.SupplementData">
      <summary>
            Supplement data following BarCode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.SupplementParameters.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.QrParameters">
      <summary>
            QR parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.QrECIEncoding">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.QrEncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode.
            Default value: QREncodeMode.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.QrEncodeType">
      <summary>
            QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.QrErrorLevel">
      <summary>
             Level of Reed-Solomon error correction for QR barcode.
             From low to high: LevelL, LevelM, LevelQ, LevelH. see QRErrorLevel.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.QrVersion">
      <summary>
            Version of QR Code.
            From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.
            Default value is QRVersion.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.QrParameters.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.Pdf417Parameters">
      <summary>
            PDF417 parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode.
            Default value: Pdf417CompactionMode.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417ErrorLevel">
      <summary>
            Gets or 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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417Truncate">
      <summary>
            Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Columns">
      <summary>
            Columns count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Rows">
      <summary>
            Rows count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417MacroFileID">
      <summary>
            Gets or sets macro Pdf417 barcode's file ID.
            Used for MacroPdf417.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417MacroSegmentID">
      <summary>
            Gets or sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.Pdf417MacroSegmentsCount">
      <summary>
            Gets or sets macro Pdf417 barcode segments count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Pdf417Parameters.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.ITFParameters">
      <summary>
            ITF parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.ITFParameters.ItfBorderThickness">
      <summary>
            Gets or sets an ITF border (bearer bar) thickness in Unit value.
            Default value: 12pt.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.ITFParameters.ItfBorderType">
      <summary>
            Border type of ITF barcode.
            Default value: ITF14BorderType.Bar.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.ITFParameters.QuietZoneCoef">
      <summary>
            Size of the quiet zones in xDimension.
            Default value: 10, meaning if xDimension = 2px than quiet zones will be 20px.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>QuietZoneCoef</b> parameter value is less than 10.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.DotCodeParameters">
      <summary>
            DotCode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DotCodeParameters.DotCodeMask">
      <summary>
            Mask of Dotcode barcode.
            Default value: -1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DotCodeParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.Code16KParameters">
      <summary>
            Code16K parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Code16KParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Code16KParameters.QuietZoneLeftCoef">
      <summary>
            Size of the left quiet zone in xDimension.
            Default value: 10, meaning if xDimension = 2px than left quiet zone will be 20px.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.Code16KParameters.QuietZoneRightCoef">
      <summary>
            Size of the right quiet zone in xDimension.
            Default value: 1, meaning if xDimension = 2px than right quiet zone will be 2px.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.DataMatrixParameters">
      <summary>
            DataMatrix parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.DataMatrixEcc">
      <summary>
            Gets or sets a Datamatrix ECC type.
            Default value: DataMatrixEccType.Ecc200.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.DataMatrixEncodeMode">
      <summary>
            Encode mode of Datamatrix barcode.
            Default value: DataMatrixEncodeMode.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.Columns">
      <summary>
            Columns count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.Rows">
      <summary>
            Rows count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataMatrixParameters.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CodablockParameters">
      <summary>
            Codablock parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodablockParameters.Columns">
      <summary>
            Columns count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodablockParameters.Rows">
      <summary>
            Rows count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodablockParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.DataBarParameters">
      <summary>
            Databar parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataBarParameters.Columns">
      <summary>
            Columns count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataBarParameters.Rows">
      <summary>
            Rows count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.DataBarParameters.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            Used for DataBar stacked.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.AustralianPostParameters">
      <summary>
            AustralianPost barcode parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AustralianPostParameters.AustralianPostShortBarHeight">
      <summary>
            Short bar's height of AustralianPost barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.AustralianPostParameters.AustralianPostEncodingTable">
      <summary>
            Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.PostalParameters">
      <summary>
            Postal parameters. Used for Postnet, Planet.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.PostalParameters.PostalShortBarHeight">
      <summary>
            Short bar's height of Postal barcodes.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.BaseGenerationParameters">
      <summary>
            Barcode image generation parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.BackColor">
      <summary>
            Background color of the barcode image.
            Default value: Color.White.
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image.
            One value for both dimensions.
            Default value: 96 dpi.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Resolution</b> parameter value is less than or equal to 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.RotationAngle">
      <summary>
            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.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (var generator = new V3.BarcodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.Parameters.RotationAngle = 7f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.CaptionAbove">
      <summary>
            Caption Above the BarCode image. See <see cref="T:Aspose.BarCode.Generation.V3.CaptionParameters" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.CaptionBelow">
      <summary>
            Caption Below the BarCode image. See <see cref="T:Aspose.BarCode.Generation.V3.CaptionParameters" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.Barcode">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.V3.BarcodeParameters" /> that contains all barcode properties.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BaseGenerationParameters.Border">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.V3.BorderParameters" /> that contains all configuration properties for barcode border.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.BorderParameters">
      <summary>
            Barcode image border parameters
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BorderParameters.Visible">
      <summary>
            Border visibility. If false than parameter Width is always ignored (0).
            Default value: false.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BorderParameters.Width">
      <summary>
            Border width.
            Default value: 0.
            Ignored if Visible is set to false.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BorderParameters.DashStyle">
      <summary>
            Border dash style.
            Default value: BorderDashStyle.Solid.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BorderParameters.Color">
      <summary>
            Border color.
            Default value: Color.Black.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CaptionParameters">
      <summary>
            Caption parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.Text">
      <summary>
            Caption text.
            Default value: empty string.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.Font">
      <summary>
            Caption font.
            Default value: Arial 8pt regular.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.Visible">
      <summary>
            Caption text visibility.
            Default value: false.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.TextColor">
      <summary>
            Caption text color.
            Default value: Color.Black.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.Padding">
      <summary>
            Captions paddings.
            Default value for CaptionAbove: 5pt 5pt 0 5pt.
            Default value for CaptionBelow: 0 5pt 5pt 5pt.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionParameters.Alignment">
      <summary>
            Caption test horizontal alignment.
            Default value: V3.StringAlignment.Center.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.FontMode">
      <summary>
            Font size mode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.FontMode.Auto">
      <summary>
            Automatically calculate Font size based on barcode size.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.FontMode.Manual">
      <summary>
            Use Font sized defined by user.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CodeLocation">
      <summary>
            Codetext location
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.CodeLocation.Below">
      <summary>
            Codetext below barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.CodeLocation.Above">
      <summary>
            Codetext above barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.CodeLocation.None">
      <summary>
            Hide codetext.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CodetextParameters">
      <summary>
            Codetext parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.FontMode">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.Font">
      <summary>
            Specify the displaying CodeText's font.
            Default value: Arial 5pt regular.
            Ignored if FontMode is set to FontMode.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.Space">
      <summary>
            Space between the CodeText and the BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            Default value: 0.
            Ignored for EAN8, EAN13, UPCE, UPCA, ISBN, ISMN, ISSN, UpcaGs1DatabarCoupon.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.Alignment">
      <summary>
            Gets or sets the alignment of the code text.
            Default value: V3.StringAlignment.Center.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.Color">
      <summary>
            Specify the displaying CodeText's Color.
            Default value: Color.Black.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CodetextParameters.Location">
      <summary>
            Specify the displaying CodeText Location, set to CodeLocation.None to hide CodeText.
            Default value: V3.CodeLocation.Below.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.BarcodePadding">
      <summary>
            Barcode paddings parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodePadding.Top">
      <summary>
            Top padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodePadding.Bottom">
      <summary>
            Bottom padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodePadding.Right">
      <summary>
            Right padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.BarcodePadding.Left">
      <summary>
            Left padding.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.CaptionPadding">
      <summary>
            Caption paddings parameters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionPadding.Top">
      <summary>
            Top padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionPadding.Bottom">
      <summary>
            Bottom padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionPadding.Right">
      <summary>
            Right padding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.V3.CaptionPadding.Left">
      <summary>
            Left padding.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.StringAlignment">
      <summary>
            Text alignment.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.StringAlignment.Left">
      <summary>
            Left position.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.StringAlignment.Center">
      <summary>
            Center position.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.V3.StringAlignment.Right">
      <summary>
            Right position.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.NamespaceGroupDoc">
      <summary>
            The <b>Aspose.BarCode</b> containing general classes for the implementation of BarCode generation functions.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.V3.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode</b> containing general classes for the implementation of BarCode generation functions.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.BarCodeGenerator">
      <summary>
            BarCodeGenerator for backend barcode images generation.
            <para>
            supported symbology:
            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 ...
            </para></summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeText = "123ABC";
                  generator.Save("code128.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.IsLicensed">
      <summary>
            Gets a value indicating whether generation module is licensed.
            </summary>
      <value>
        <c>true</c> if generation module is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.CodeText">
      <summary>
            Data to be encoded, different types of BarCode may have different CodeText length restrictions.
            See <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.CodeTextStyle" />.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeText = "123ABC";
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> to get current symbology.
            </summary>
      <example>
            This sample shows how to user EncodeTypes.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  System.Console.WriteLine(generator.EncodeType);
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.CaptionAbove">
      <summary>
            Caption Above the BarCode image. See <see cref="T:Aspose.BarCode.Generation.Caption" />.
            </summary>
      <example>
            This sample shows how to set above caption and save BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CaptionAbove.Visible = true;
                  generator.CaptionAbove.Text = "Caption above";
                  generator.CaptionAbove.Alignment = StringAlignment.Center;
                  generator.CaptionAbove.Color = Color.Red;
                  generator.CaptionAbove.Font.Size.Point = 14;
                  //space between the barcode and the caption
                  generator.CaptionAbove.Space.Millimeters = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.CaptionBelow">
      <summary>
            Caption Below the BarCode image. See <see cref="T:Aspose.BarCode.Generation.Caption" />.
            </summary>
      <example>
            This sample shows how to set below caption and save BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CaptionBelow.Visible = true;
                  generator.CaptionBelow.Text = "Caption below";
                  generator.CaptionBelow.Alignment = StringAlignment.Center;
                  generator.CaptionBelow.Color = Color.Red;
                  generator.CaptionBelow.Font.Size.Point = 14;
                  //space between the barcode and the caption
                  generator.CaptionBelow.Space.Millimeters = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.ForeColor">
      <summary>
            Foreground color of the barcode image, that is,
            Bar's color of 1D barcode, Module's color of 2D barcode.
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.BackColor">
      <summary>
            Background color of the barcode image.
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.FilledBars">
      <summary>
            Gets or sets a value indicating whether bars filled.
            Only for 1D barcodes.
            Default value is true.
            </summary>
      <value>
        <c>true</c> if bars filled; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.BarHeight">
      <summary>
            Height of 1D barcodes' bars in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.BarHeight.Millimeters = 10;
                  generator.Save("test.png");
              }
            </code></example>
      <exception cref="T:System.ArgumentException">
        <p>The <b>BarHeight</b> parameter value is less than or equal to 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>BarHeight</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.XDimension">
      <summary>
            x-dimension is the smallest width of the unit of BarCode bars or spaces.
            Increase this will increase the whole barcode image width.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.XDimension.Pixels = 4;
                  generator.Save("test.png");
              }
            </code></example>
      <exception cref="T:System.ArgumentException">
        <p>The <b>XDimension</b> parameter value is less than or equal to 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>XDimension</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode.
            Default WideNarrowRatio is 3, that is, wide bars are 3 times as wide as narrow bars.
            Applicable symbology: Code39Extended, Code39Standard, Standard2of5, Interleaved2of5, Pharmacode
            </summary>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>WideNarrowRatio</b> parameter value is less than or equal to 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image.
            One value for both dimensions.
            </summary>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>Resolution</b> parameter value is less than or equal to 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Margins">
      <summary>
            Margin area around the core BarCode image.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.Margins.Left.Millimeters = 2;
                  generator.Margins.Top.Pixels = 15;
                  generator.Margins.Right.Inches = 0.3f;
                  generator.Margins.Bottom.Point = 14;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.D2">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.D2Properties" /> that contains all configuration properties for 2D barcodes.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.D2.AspectRatio = 1.5f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.ITF">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.ITFProperties" /> that contains all configuration properties for ITF14 barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.ITF14))
              {
                  generator.ITF.BorderThickness.Millimeters = 2;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.QR">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.QRProperties" /> that contains all configuration properties for QR barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.QR))
              {
                  generator.CodeText = "123ABC456DEF";
                  generator.QR.ErrorLevel = QRErrorLevel.LevelH;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.DataMatrix">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.DataMatrixProperties" /> that contains all configuration properties for DataMatrix barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.DataMatrix.EncodeMode = DataMatrixEncodeMode.Full;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Aztec">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.AztecProperties" /> that contains all configuration properties for Aztec barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Aztec))
              {
                  generator.Aztec.SymbolMode = AztecSymbolMode.Compact;
                  generator.Aztec.ErrorLevel = 50;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Pdf417">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.Pdf417Properties" /> that contains all configuration properties for Pdf417 barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Pdf417))
              {
                  generator.Pdf417.ErrorLevel = Pdf417ErrorLevel.Level1;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Codabar">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.CodabarProperties" /> that contains all configuration properties for Codabar barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Codabar))
              {
                  generator.CodeText = "123456789";
                  generator.Checksum.Enable = EnableChecksum.Yes;
                  generator.Codabar.ChecksumMode = CodabarChecksumMode.Mod10;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Supplement">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.SupplementProperties" /> that contains all configuration properties for Supplement part of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.EAN13))
              {
                  generator.Supplement.Data = "12345";
                  generator.Supplement.Space.Millimeters = 7;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Border">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.BorderProperties" /> that contains all configuration properties for barcode border.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.Border.Visible = true;
                  generator.Border.Color = Color.Blue;
                  generator.Border.DashStyle = BorderDashStyle.DashDotDot;
                  generator.Border.Width.Pixels = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.Checksum">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.ChecksumProperties" /> that contains all configuration properties for checksum of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128, "12345"))
              {
                  generator.Checksum.AlwaysShow = true;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.RotationAngle">
      <summary>
            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.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.RotationAngle = 7f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.AutoSizeMode">
      <summary>
            Gets or sets the mode by which the barcode automatically resizes.
            Default value is AutoSizeMode.None.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.AutoSizeMode = AutoSizeMode.Nearest;
                  generator.BarCodeWidth.Millimeters = 50;
                  generator.BarCodeHeight.Inches = 1.3f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth">
      <summary>
            BarCode width when <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.AutoSizeMode" /> property is set to AutoSizeMode.Nearest.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>BarCodeWidth</b> parameter value is less than or equal to 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>BarCodeWidth</b> can't be specified when AutoSizeMode is set to None.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight">
      <summary>
            BarCode height when <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.AutoSizeMode" /> property is set to AutoSizeMode.Nearest.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>BarCodeHeight</b> parameter value is less than or equal to 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>BarCodeHeight</b> can't be specified when AutoSizeMode is set to None.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.CodeTextStyle">
      <summary>
            Gets the <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.CodeTextStyle" /> that contains all configuration properties for codetext of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeTextStyle.Location = CodeLocation.Above;
                  generator.CodeTextStyle.Color = Color.Brown;
                  generator.CodeTextStyle.Alignment = StringAlignment.Far;
                  generator.CodeTextStyle.Font.Style = FontStyle.Italic;
                  generator.CodeTextStyle.Font.Size.Point = 18;
                  generator.CodeTextStyle.Space.Millimeters = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.ThrowExceptionWhenCodeTextIncorrect">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.AustralianPostEncodingTable">
      <summary>
            Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property. It is worked pdf417, DataMatrix, Code128 only
            See <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.CodeText" />.
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \013 and \\CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.PostalShortBarHeight">
      <summary>
            Short bar's height of Postal barcodes.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>PostalShortBarHeight</b> parameter value is
            near 2 times smaller than BarHeight
            or more than 88% of the height of BarHeight.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>PostalShortBarHeight</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.DotCodeMask">
      <summary>
            Mask of Dotcode barcode, default to Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BarCodeGenerator.MaxiCodeEncodeMode">
      <summary>
            Gets or sets a MaxiCode encode mode.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.#ctor(Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Generation.BarCodeGenerator" /> class with default codetext.
            </summary>
      <param name="type">BarCode's type. Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> class to setup a symbology.</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.#ctor(Aspose.BarCode.Generation.BaseEncodeType,System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Generation.BarCodeGenerator" /> class.
            </summary>
      <param name="type">BarCode's type. Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> class to setup a symbology.</param>
      <param name="codeText">string text data to be encoded</param>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.RecalculateValues">
      <summary>
            Calculate all values automatically without drawing barcode.
            </summary>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>Specified size (<see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" /> and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" />) are not allowed for Nearest mode,
            for exaple it is impossible to generate such a small barcode.</p>
      </exception>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.RecalculateValues();
                  float width = generator.BarCodeWidth.Pixels;
                  float height = generator.BarCodeHeight.Pixels;
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.GenerateBarCodeImage">
      <summary>
            Generate the BarCode image under current settings.
            </summary>
      <returns>BarCode image. See <see cref="T:System.Drawing.Bitmap" />.</returns>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>Specified size (<see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" /> and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" />) are not allowed for Nearest mode,
            for exaple it is impossible to generate such a small barcode.</p>
      </exception>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using(BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  Bitmap barcode = generator.GenerateBarCodeImage();
                  barcode.Save("test.png");
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.Save(System.IO.Stream,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save BarCodeImage to stream in specific format.
            </summary>//
            <param name="stream">Output System.IO.Stream.</param><param name="format">Specifies the file format of the output image.</param><exception cref="T:Aspose.BarCode.BarCodeException"><p>Specified size (<see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" /> and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" />) are not allowed for Nearest mode,
            for exaple it is impossible to generate such a small barcode.</p></exception></member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.Save(System.String,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="filename">Save to this file path.</param>
      <param name="format">Specifies the file format of the output image.</param>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>Specified size (<see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" /> and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" />) are not allowed for Nearest mode,
            for exaple it is impossible to generate such a small barcode.</p>
      </exception>
    </member>
    <member name="M:Aspose.BarCode.Generation.BarCodeGenerator.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="filename">Save to this file path.</param>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>Specified size (<see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" /> and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" />) are not allowed for Nearest mode,
            for exaple it is impossible to generate such a small barcode.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.AutoSizeMode">
      <summary>
            Specifies the different types of automatic sizing modes.
            Default value is AutoSizeMode.None.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.AutoSizeMode = AutoSizeMode.Nearest;
                  generator.BarCodeWidth.Millimeters = 50;
                  generator.BarCodeHeight.Inches = 1.3f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="F:Aspose.BarCode.Generation.AutoSizeMode.None">
      <summary>
            Automatic resizing is disabled. Default value.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.AutoSizeMode.Nearest">
      <summary>
            Barcode resizes to nearest lowest possible size
            which are specified by BarCodeWidth and BarCodeHeight properties.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.AutoSizeMode.Interpolation">
      <summary>
            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 <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeWidth" />
            and <see cref="P:Aspose.BarCode.Generation.BarCodeGenerator.BarCodeHeight" /> properties.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image in Scale mode.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.AutoSizeMode = AutoSizeMode.Interpolation;
                  generator.BarCodeWidth.Millimeters = 50;
                  ggenerator.BarCodeHeight.Inches = 1.3f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="T:Aspose.BarCode.Generation.AztecProperties">
      <summary>
            Contains specific configuration properties for Aztec barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Aztec))
              {
                  generator.Aztec.SymbolMode = AztecSymbolMode.Compact;
                  generator.Aztec.ErrorLevel = 50;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.AztecProperties.SymbolMode">
      <summary>
            Gets or sets a Aztec Symbol mode. Default is Auto mode.
            </summary>
      <example>
            This sample shows how to change Aztec Symbol mode and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Aztec))
              {
                  generator.Aztec.SymbolMode = AztecSymbolMode.Compact;
                  generator.Aztec.ErrorLevel = 50;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.AztecProperties.ErrorLevel">
      <summary>
            Level of error correction of Aztec types of barcode.
            Value should between 10 to 95.
            </summary>
      <example>
            This sample shows how to change Aztec Symbol mode and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Aztec))
              {
                  generator.Aztec.SymbolMode = AztecSymbolMode.Compact;
                  generator.Aztec.ErrorLevel = 50;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.AztecProperties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.AztecProperties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.AztecProperties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.BorderProperties">
      <summary>
            Contains specific configuration properties for barcode border.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.Border.Visible = true;
                  generator.Border.Color = Color.Blue;
                  generator.Border.DashStyle = BorderDashStyle.DashDotDot;
                  generator.Border.Width.Pixels = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.BorderProperties.Visible">
      <summary>
            Gets or sets a value indicating whether [border visible].
            </summary>
      <value>
        <c>true</c> if [border visible]; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Generation.BorderProperties.Width">
      <summary>
            Border width of the BarCode image in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Width</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.BorderProperties.DashStyle">
      <summary>
            Border style of BarCode Image.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BorderProperties.Color">
      <summary>
            BarCode Image's border's color.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.Caption">
      <summary>
            The text caption shown in the barcode image. There are two captions: CaptionBelow and CaptionAbove
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Visible">
      <summary>
            Gets or sets a value indicates whether the <see cref="T:Aspose.BarCode.Generation.Caption">caption</see> is visible. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Color">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Color">forecolor</see> of the <see cref="T:Aspose.BarCode.Generation.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Font">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Font">font</see> of the <see cref="T:Aspose.BarCode.Generation.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Space">
      <summary>
            Gets or sets the space between the caption and the barcode,
            and the space between border and the caption in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Alignment">
      <summary>
            Gets or sets the text <see cref="T:System.Drawing.StringAlignment">alignment</see> of the caption.
            e.g. when the text is writing from left to right, StringAlignment.Near means the Caption will be aligned to the left
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Caption.Text">
      <summary>
            Gets or sets the content of the caption.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.ChecksumProperties">
      <summary>
            Contains specific configuration properties for checksum of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code39Standard, "12345"))
              {
                  generator.Checksum.Enable = EnableChecksum.Yes;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.ChecksumProperties.Enable">
      <summary>
        <para>Enable checksum during generation 1D barcodes.</para>
        <para>Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar</para>
        <para>Checksum always used: Rest symbology</para>
      </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code39Standard, "12345"))
              {
                  generator.Checksum.Enable = EnableChecksum.Yes;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.ChecksumProperties.AlwaysShow">
      <summary>
             Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes.
            </summary>
      <example>
             This sample shows how to create and save a BarCode image.
             <code>
             [C#]
            	  using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128, "12345"))
            	  {
                   generator.Checksum.AlwaysShow = true;
                   generator.Save("test.png");
               }
            	</code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.ChecksumProperties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.ChecksumProperties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.ChecksumProperties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.CodabarProperties">
      <summary>
            Contains specific configuration properties for Codabar barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Codabar))
              {
                  generator.CodeText = "123456789";
                  generator.Checksum.Enable = EnableChecksum.Yes;
                  generator.Codabar.ChecksumMode = CodabarChecksumMode.Mod10;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodabarProperties.ChecksumMode">
      <summary>
            Get or set the checksum algorithm for Codabar barcodes. Default value is CodabarChecksum.Mod16.
            To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum.
            See <see cref="T:Aspose.BarCode.CodabarChecksumMode" />.
            </summary>
      <example>
            This sample shows how to change Codabar checksum algorithm and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Codabar))
              {
                  generator.CodeText = "123456789";
                  generator.Checksum.Enable = EnableChecksum.Yes;
                  generator.Codabar.ChecksumMode = CodabarChecksumMode.Mod10;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodabarProperties.StartSymbol">
      <summary>
            Start symbol (character) of Codabar symbology.
            See <see cref="P:Aspose.BarCode.Generation.CodabarProperties.StopSymbol" />.
            </summary>
      <example>
            This sample shows how to set start and stop Codabar symbol and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Codabar))
              {
                  generator.Codabar.StartSymbol = CodabarSymbol.B;
                  generator.Codabar.StopSymbol = CodabarSymbol.D;
                  builder.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodabarProperties.StopSymbol">
      <summary>
            Stop symbol (character) of Codabar symbology.
            See <see cref="P:Aspose.BarCode.Generation.CodabarProperties.StartSymbol" />.
            </summary>
      <example>
            This sample shows how to set start and stop Codabar symbol and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Codabar))
              {
                  generator.Codabar.StartSymbol = CodabarSymbol.B;
                  generator.Codabar.StopSymbol = CodabarSymbol.D;
                  builder.Save("test.png");
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.CodabarProperties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.CodabarProperties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.CodabarProperties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.CodeTextStyle">
      <summary>
            Contains specific configuration properties for codetext of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeTextStyle.Location = CodeLocation.Above;
                  generator.CodeTextStyle.Color = Color.Brown;
                  generator.CodeTextStyle.Alignment = StringAlignment.Far;
                  generator.CodeTextStyle.Font.Style = FontStyle.Italic;
                  generator.CodeTextStyle.Font.Size.Point = 18;
                  generator.CodeTextStyle.Space.Millimeters = 5;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodeTextStyle.Location">
      <summary>
            Specify the displaying CodeText Location, set to CodeLocation.None to hide CodeText.
            CodeLocation will be ignored if SymbologyType is UPCE, UPCA, ISBN, EAN8 or EAN13.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodeTextStyle.Alignment">
      <summary>
            Gets or sets the alignment of the code text.
            </summary>
      <remarks>
            StringAlignment.Near means CodeText will be aligned to the left.
            StringAlignment.Far means CodeText will be aligned to the right.
            StringAlignment.Center means CodeText will be aligned to the center.
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodeTextStyle.Color">
      <summary>
            Specify the displaying CodeText's Color.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodeTextStyle.Space">
      <summary>
            Space between the CodeText and the BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.CodeTextStyle.Font">
      <summary>
             Specify the displaying CodeText's font.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.D2Properties">
      <summary>
            Contains specific configuration properties for for 2D barcodes.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.D2.AspectRatio = 1.5f;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.D2Properties.AspectRatio">
      <summary>
            Height/Width ratio of 2D BarCode module.
            See <see cref="!:xDimension" />.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.D2.AspectRatio = 1.5f;
                  generator.Save("test.png");
              }
            </code></example>
      <exception cref="T:System.ArgumentException">
        <p>The <b>AspectRatio</b> parameter value is less than or equal to 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>AspectRatio</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.D2Properties.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically.
            applicable SymbologyType: Pdf417, CodablockF, DatabarExpandedStacked.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Pdf417))
              {
                  generator.D2.Columns = 3;
                  generator.D2.Rows = 6;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.D2Properties.Rows">
      <summary>
            BarCode's rows, if setting is illegal then rows will be calculated automatically.
            Applicable Symbology: Pdf417, DatabarExpandedStacked, CodablockF, DatabarExpandedStacked.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Pdf417))
              {
                  generator.D2.Columns = 3;
                  generator.D2.Rows = 6;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.D2Properties.DisplayText">
      <summary>
            Gets or sets the text will displayed on the barcode image.
            Available only for 2D barcodes. Limited to 1000 chars.
            </summary>
      <value>
            The text to display.
            </value>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.CodeText = "ABC \x00\x01\x02 DEF";
                  generator.D2.DisplayText = "Print text";
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.D2Properties.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
      <value>
            The encoding for codetext.
            </value>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.CodeText = "Пример текста";
                  generator.D2.CodeTextEncoding = Encoding.Unicode;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Generation.D2Properties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.D2Properties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.D2Properties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.DataMatrixProperties">
      <summary>
            Contains specific configuration properties for DataMatrix barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.DataMatrix.EncodeMode = DataMatrixEncodeMode.Full;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.DataMatrixProperties.Ecc">
      <summary>
            Gets or sets a Datamatrix ECC type. Default value is ECC200.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.DataMatrix))
              {
                  generator.DataMatrix.Ecc = DataMatrixEccType.Ecc140;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.DataMatrixProperties.EncodeMode">
      <summary>
            Encode mode of Datamatrix barcode.
            Default value is Auto.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.DataMatrixProperties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.DataMatrixProperties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.DataMatrixProperties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.FontUnit">
      <summary>
            Defines a particular format for text, including font face, size, and style attributes
            where size in Unit value property.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.CodeTextStyle.Font.Style = FontStyle.Italic;
                  generator.CodeTextStyle.Font.Size.Point = 18;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.FontUnit.FamilyName">
      <summary>
            Gets or sets the face name of this Font.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.FontUnit.Style">
      <summary>
            Gets or sets style information for this FontUnit.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.FontUnit.Size">
      <summary>
            Gets or sets size of this FontUnit in Unit value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Size</b> parameter value is less than or equal to 0.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.ITFProperties">
      <summary>
            Contains specific configuration properties for ITF barcodes.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.ITF14))
              {
                  generator.ITF.BorderThickness.Millimeters = 2;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.ITFProperties.BorderThickness">
      <summary>
            Gets or sets an ITF14 border (bearer bar) thickness in Unit value.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.ITF14))
              {
                  generator.ITF.BorderThickness.Millimeters = 2;
                  generator.Save("test.png");
              }
            </code></example>
      <exception cref="T:System.ArgumentException">
        <p>The <b>BorderThickness</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.ITFProperties.BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings.
            Default value is ITF14BorderType.Bar.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.ITF14))
              {
                  generator.ITF.BorderType = ITF14BorderType.Frame;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="T:Aspose.BarCode.Generation.Margins">
      <summary>
            Specifies the margins of a barcode image in <see cref="T:Aspose.BarCode.Generation.Unit" /> values.
            </summary>
      <remarks>
        <p>This class is used to manipulate margins in barcode image.</p>
      </remarks>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.Margins.Left.Millimeters = 2;
                  generator.Margins.Top.Pixels = 15;
                  generator.Margins.Right.Inches = 0.3f;
                  generator.Margins.Bottom.Point = 14;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.Margins.Bottom">
      <summary>
            Gets the <b>bottom</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Bottom</b> parameter value is less than 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>Bottom</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.Margins.Left">
      <summary>
            Gets the <b>left</b> margin in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Left</b> parameter value is less than 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>Left</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.Margins.Right">
      <summary>
            Gets the <b>right</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Right</b> parameter value is less than 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>Right</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Generation.Margins.Top">
      <summary>
            Gets the <b>top</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Top</b> parameter value is less than 0.</p>
      </exception>
      <exception cref="T:Aspose.BarCode.BarCodeException">
        <p>The <b>Top</b> can't be specified when AutoSizeMode is set to Nearest.</p>
      </exception>
    </member>
    <member name="M:Aspose.BarCode.Generation.Margins.ToString">
      <summary>
            Returns a String that represents the current <see cref="T:Aspose.BarCode.Generation.Margins">Margins</see> instance.
            </summary>
      <returns>A <see cref="T:System.String">String</see> that represents the current Object.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.Pdf417Properties">
      <summary>
            Contains specific configuration properties for Pdf417 barcodes.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Pdf417))
              {
                  generator.Pdf417.ErrorLevel = Pdf417ErrorLevel.Level1;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode.
            Default compaction mode is <c>Auto</c>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.ErrorLevel">
      <summary>
            Gets or 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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.Truncate">
      <summary>
            Whether Pdf417 symbology type of BarCode is truncated (to reduce space).
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.MacroFileID">
      <summary>
            Gets or sets macro Pdf417 barcode's file ID.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.MacroSegmentID">
      <summary>
            Gets or sets macro Pdf417 barcode's segment ID, which starts from 0, to MacroSegmentsCount - 1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Pdf417Properties.MacroSegmentsCount">
      <summary>
            Gets or sets macro Pdf417 barcode segments count.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.Pdf417Properties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.Pdf417Properties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.Pdf417Properties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.QRProperties">
      <summary>
            Contains specific configuration properties for QR barcodes.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.QR))
              {
                  generator.CodeText = "123ABC456DEF";
                  generator.QR.ErrorLevel = QRErrorLevel.LevelH;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.QRProperties.EncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode.
            Default mode is <c>Auto</c>.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.QR, "1234567890ABCDEF123"))
              {
                  generator.QR.EncodeMode = QREncodeMode.ECIEncoding;
                  generator.QR.ECIEncoding = ECIEncodings.Win1250;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.QRProperties.EncodeType">
      <summary>
            QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
            </summary>
      <example>
            This sample shows how to encode MicroQR and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.QR))
              {
                  generator.CodeText = "12345TEXT";
                  generator.QR.EncodeType = QREncodeType.ForceMicroQR;
                  builder.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.QRProperties.ErrorLevel">
      <summary>
             Level of Reed-Solomon error correction for QR barcode.
             From low to high: LevelL, LevelM, LevelQ, LevelH. see QRErrorLevel.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.QRProperties.Version">
      <summary>
            Version of QR Code.
            From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.
            Default value is QRVersion.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.QRProperties.ECIEncoding">
      <summary>
            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.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.QRProperties.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.QRProperties" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.QRProperties" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.SupplementProperties">
      <summary>
            Contains specific configuration properties for Supplement part of barcode.
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.EAN13))
              {
                  generator.Supplement.Data = "12345";
                  generator.Supplement.Space.Millimeters = 7;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.SupplementProperties.Data">
      <summary>
            Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, ISBN, Interleaved2of5 or Standard2of5.
            See <see cref="P:Aspose.BarCode.Generation.SupplementProperties.Space" />.
            </summary>
      <example>
            This sample shows how to set supplement data for EAN13 and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.EAN13))
              {
                  generator.Supplement.Data = "12345";
                  builder.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.SupplementProperties.Space">
      <summary>
            Space between main the BarCode and supplement BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            It can be used with Supplement data, UpcaGs1Code128Coupon and UpcaGs1DatabarCoupon encode types.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Generation.Unit">
      <summary>
            Specifies the size value in different units (Pixel, Inches, etc.).
            </summary>
      <example>
            This sample shows how to create and save a BarCode image.
            <code>
            [C#]
              using (BarCodeGenerator generator = new BarCodeGenerator(EncodeTypes.Code128))
              {
                  generator.BarHeight.Millimeters = 10;
                  generator.Save("test.png");
              }
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.Generation.Unit.Pixels">
      <summary>
            Gets or sets size value in pixels.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Unit.Inches">
      <summary>
            Gets or sets size value in inches.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Unit.Millimeters">
      <summary>
            Gets or sets size value in millimeters.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Unit.Point">
      <summary>
            Gets or sets size value in point.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.Unit.Document">
      <summary>
            Gets or sets size value in document units.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.Unit.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Generation.Unit" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Generation.Unit" />.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.Unit.Equals(System.Object)">
      <summary>
            Determines whether this instance and a specified object,
            which must also be a <see cref="T:Aspose.BarCode.Generation.Unit" /> object, have the same value.
            </summary>
      <param name="obj">The <see cref="T:Aspose.BarCode.Generation.Unit" /> to compare to this instance.</param>
      <returns>true if obj is a <see cref="T:Aspose.BarCode.Generation.Unit" /> and its value is the same as this instance;
            otherwise, false. If obj is null, the method returns false.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.Unit.GetHashCode">
      <summary>
            Returns the hash code for this object.
            </summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.Unit.#ctor(System.Single,System.Drawing.GraphicsUnit)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Generation.Unit" /> class.
            It's using only in autogenerated code for UserControl, please don't use it.
            </summary>
      <param name="value">Size value the new Unit in the units specified by the graphicsUnit parameter.</param>
      <param name="graphicsUnit">The <see cref="P:Aspose.BarCode.Generation.Unit.GraphicsUnit" /> of the new Unit object.</param>
    </member>
    <member name="T:Aspose.BarCode.Generation.BarcodeClassifications">
      <summary>
            Symbology classification    
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.None">
      <summary>
            Unspecified classification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.Type1D">
      <summary>
            Specifies 1D-barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.Type2D">
      <summary>
            Specifies 2D-barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.Postal">
      <summary>
            Specifies Postal-barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.Databar">
      <summary>
            Specifies DataBar-barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.BarcodeClassifications.Coupon">
      <summary>
            Specifies Coupon-barcode
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.BaseEncodeType">
      <summary>
            Base class for SymbologyEncodeType.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BaseEncodeType.TypeIndex">
      <summary>
            Gets an index of encode type
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BaseEncodeType.TypeName">
      <summary>
            Gets a name of encode type
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.BaseEncodeType.Classification">
      <summary>
            Gets a classification of this symbology.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.ToString">
      <summary>
            Returns the name of the given BaseEncodeType as a string.
            </summary>
      <returns>A string representing the name of the encode type</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.GetString">
      <summary>
            Converts the instance of BaseEncodeType to its equivalent string representation.
            The string format is: "Index:0; Name:Codabar".
            </summary>
      <returns>A string representing the complete value of the encode type</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.GetString(Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Converts the instance of BaseEncodeType to its equivalent string representation.
            The string format is: "Index:-1; Name:None".
            </summary>
      <param name="instance">The BaseEncodeType instance to convert</param>
      <returns>A string representing the complete value of the given encode type</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.TryParse(System.String,Aspose.BarCode.Generation.BaseEncodeType@)">
      <summary>
            Converts the string representation of a BaseEncodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as "Index:-1; Name:None" to convert.</param>
      <param name="result">An actual SingleEncodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns null.</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.TryParse(System.String,Aspose.BarCode.Generation.SymbologyEncodeType@)">
      <summary>
            Converts the string representation of a BaseEncodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as "Index:-1; Name:None" to convert.</param>
      <param name="result">An actual SingleEncodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns null.</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.Parse(System.String)">
      <summary>
            Converts the string representation of the name of a BaseEncodeType to its instance.
            </summary>
      <param name="stringEncodeType">A string containing the name of a BaseEncodeType to convert.</param>
      <returns>the instance of <seealso cref="T:Aspose.BarCode.Generation.BaseEncodeType" />, if conversion was successful; otherwise, it returns <b><seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /></b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.Equals(Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.Generation.BaseEncodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.Generation.BaseEncodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.Equals(System.Object)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.Generation.BaseEncodeType" /> value.
            </summary>
      <param name="obj">An System.Object value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.BaseEncodeType.GetHashCode">
      <summary>
            Returns the hash code for this instance.
            </summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.EncodeTypes">
      <summary>
            Specifies the type of barcode to encode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.None">
      <summary>
            Unspecified encode type. 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Codabar">
      <summary>
            Specifies that the data should be encoded with <b>CODABAR</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code11">
      <summary>
            Specifies that the data should be encoded with <b>CODE 11</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code39Standard">
      <summary>
            Specifies that the data should be encoded with <b>Standard CODE 39</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code39Extended">
      <summary>
            Specifies that the data should be encoded with <b>Extended CODE 39</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code93Standard">
      <summary>
            Specifies that the data should be encoded with <b>Standard CODE 93</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code93Extended">
      <summary>
            Specifies that the data should be encoded with <b>Extended CODE 93</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code128">
      <summary>
            Specifies that the data should be encoded with <b>CODE 128</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.GS1Code128">
      <summary>
            Specifies that the data should be encoded with <b>GS1 Code 128</b> barcode specification. The codetext must contains parentheses for AI.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.EAN8">
      <summary>
            Specifies that the data should be encoded with <b>EAN-8</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.EAN13">
      <summary>
            Specifies that the data should be encoded with <b>EAN-13</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.EAN14">
      <summary>
            Specifies that the data should be encoded with <b>EAN14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.SCC14">
      <summary>
            Specifies that the data should be encoded with <b>SCC14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.SSCC18">
      <summary>
            Specifies that the data should be encoded with <b>SSCC18</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.UPCA">
      <summary>
            Specifies that the data should be encoded with <b>UPC-A</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.UPCE">
      <summary>
            Specifies that the data should be encoded with <b>UPC-E</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ISBN">
      <summary>
            Specifies that the data should be encoded with <b>ISBN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ISSN">
      <summary>
            Specifies that the data should be encoded with <b>ISSN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ISMN">
      <summary>
            Specifies that the data should be encoded with <b>ISMN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Standard2of5">
      <summary>
            Specifies that the data should be encoded with <b>Standard 2 of 5</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Interleaved2of5">
      <summary>
            Specifies that the data should be encoded with <b>INTERLEAVED 2 of 5</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Matrix2of5">
      <summary>
            Represents Matrix 2 of 5 BarCode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ItalianPost25">
      <summary>
            Represents Italian Post 25 barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.IATA2of5">
      <summary>
            Represents IATA 2 of 5 barcode.IATA (International Air Transport Assosiation) uses this barcode for the management of air cargo.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ITF14">
      <summary>
            Specifies that the data should be encoded with <b>ITF14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.ITF6">
      <summary>
            Represents ITF-6  Barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.MSI">
      <summary>
            Specifies that the data should be encoded with <b>MSI Plessey</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.VIN">
      <summary>
            Represents VIN (Vehicle Identification Number) Barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DeutschePostIdentcode">
      <summary>
            Represents Deutsch Post barcode, This Symbology is also known as Identcode,CodeIdentcode,German Postal 2 of 5 Identcode, 
            Deutsch Post AG Identcode, Deutsch Frachtpost Identcode,  Deutsch Post AG (DHL)
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DeutschePostLeitcode">
      <summary>
            Represents Deutsch Post Leitcode Barcode,also known as German Postal 2 of 5 Leitcode, CodeLeitcode, Leitcode, Deutsch Post AG (DHL).
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.OPC">
      <summary>
            Represents OPC(Optical Product Code) Barcode,also known as , VCA Barcode VCA OPC, Vision Council of America OPC Barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.PZN">
      <summary>
            Represents PZN barcode.This Symbology is also known as Pharmacy central number, Pharmazentralnummer
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code16K">
      <summary>
            Represents Code 16K barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Pharmacode">
      <summary>
            Represents Pharmacode barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DataMatrix">
      <summary>
            2D barcode symbology DataMatrix
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.QR">
      <summary>
            Specifies that the data should be encoded with <b>QR Code</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Aztec">
      <summary>
            Specifies that the data should be encoded with <b>Aztec</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Pdf417">
      <summary>
            Specifies that the data should be encoded with <b>Pdf417</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.MacroPdf417">
      <summary>
            Specifies that the data should be encoded with <b>MacroPdf417</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.GS1DataMatrix">
      <summary>
            2D barcode symbology DataMatrix with GS1 string format
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.MicroPdf417">
      <summary>
            Specifies that the data should be encoded with <b>MicroPdf417</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.GS1QR">
      <summary>
            2D barcode symbology QR with GS1 string format
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.MaxiCode">
      <summary>
            Specifies that the data should be encoded with <b>MaxiCode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DotCode">
      <summary>
            Specifies that the data should be encoded with <b>DotCode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.AustraliaPost">
      <summary>
            Represents Australia Post Customer BarCode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Postnet">
      <summary>
            Specifies that the data should be encoded with <b>Postnet</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Planet">
      <summary>
            Specifies that the data should be encoded with <b>Planet</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.OneCode">
      <summary>
            Specifies that the data should be encoded with USPS <b>OneCode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.RM4SCC">
      <summary>
            Represents RM4SCC barcode. RM4SCC (Royal Mail 4-state Customer Code) is used for automated mail sort process in UK.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarOmniDirectional">
      <summary>
            Specifies that the data should be encoded with <b>GS1 Databar omni-directional</b> barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarTruncated">
      <summary>
            Specifies that the data should be encoded with <b>GS1 Databar truncated</b> barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarLimited">
      <summary>
            Represents GS1 Databar limited barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarExpanded">
      <summary>
            Represents GS1 Databar expanded barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarExpandedStacked">
      <summary>
            Represents GS1 Databar expanded stacked barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarStacked">
      <summary>
            Represents GS1 Databar stacked barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DatabarStackedOmniDirectional">
      <summary>
            Represents GS1 Databar stacked omni-directional barcode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.SingaporePost">
      <summary>
            Specifies that the data should be encoded with <b>Singapore Post Barcode</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.AustralianPosteParcel">
      <summary>
            Specifies that the data should be encoded with <b>Australian Post Domestic eParcel Barcode</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.SwissPostParcel">
      <summary>
            Specifies that the data should be encoded with <b>Swiss Post Parcel Barcode</b> barcode specification. Supported types: Domestic Mail, International Mail, Additional Services (new) 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.PatchCode">
      <summary>
            Represents Patch code barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.Code32">
      <summary>
            Specifies that the data should be encoded with <b>Code32</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DataLogic2of5">
      <summary>
            Specifies that the data should be encoded with <b>DataLogic 2 of 5</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.DutchKIX">
      <summary>
            Specifies that the data should be encoded with <b>Dutch KIX</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.UpcaGs1Code128Coupon">
      <summary>
            Specifies that the data should be encoded with <b>UPC coupon with GS1-128 Extended Code</b> barcode specification.
            An example of the input string:
            BarCodeBuilder.Codetext = "514141100906(8102)03",
            where UPCA part is "514141100906", GS1Code128 part is (8102)03.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.UpcaGs1DatabarCoupon">
      <summary>
            Specifies that the data should be encoded with <b>UPC coupon with GS1 DataBar addition</b> barcode specification.
            An example of the input string:
            BarCodeBuilder.Codetext = "514141100906(8110)106141416543213500110000310123196000",
            where UPCA part is "514141100906", Databar part is "(8110)106141416543213500110000310123196000".
            To change the caption, use barCodeBuilder.CaptionAbove.Text = "company prefix + offer code";
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.CodablockF">
      <summary>
            Specifies that the data should be encoded with <b>Codablock-F</b> barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Generation.EncodeTypes.GS1CodablockF">
      <summary>
            Specifies that the data should be encoded with <b>GS1 Codablock-F</b> barcode specification. The codetext must contains parentheses for AI.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Generation.EncodeTypes.AllEncodeTypes">
      <summary>
            Specifies that data will be checked with all available symbologies.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Generation.EncodeTypes.GetNames">
      <summary>
            Retrieves an array of the names of the encode types.
            </summary>
      <returns>A string array of the names of the encode types.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.EncodeTypes.Parse(System.String,Aspose.BarCode.Generation.BaseEncodeType@)">
      <summary>
            Converts the string representation of a BaseEncodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string containing a BaseEncodeType representation to convert.</param>
      <param name="result">An actual BaseEncodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns null.</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Generation.EncodeTypes.TryParse(System.String,Aspose.BarCode.Generation.BaseEncodeType@)">
      <summary>
            Converts the string representation of a BaseEncodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as "Index:-1; Name:None" to convert.</param>
      <param name="result">An actual SingleEncodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns null.</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="T:Aspose.BarCode.Generation.SymbologyEncodeType">
      <summary>
            Symbology encode type. See EncodeTypes to get instance.
            </summary>
      <example>
            This sample shows how to get instance of SymbologyEncodeType class.
            <code>
            [C#]
            SymbologyEncodeType symbologyType = EncodeTypes.QR 
             
            [VB.NET]
            Dim symbologyType As SymbologyEncodeType 
            symbologyType = EncodeTypes.QR
            </code></example>
    </member>
    <member name="T:Aspose.BarCode.Generation.NamespaceGroupDoc">
      <summary>
            The <b>Aspose.BarCode</b> containing general classes for the implementation of BarCode generation functions.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Generation.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode</b> containing general classes for the implementation of BarCode generation functions.
            </summary>
    </member>
    <!-- Badly formed XML comment ignored for member "F:Aspose.BarCode.BarCodeRecognition.Common.Algorithms.ContourTracing.ChainScanExtArrayLeft" -->
    <member name="T:Aspose.BarCode.BarCodeRecognition.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.BarCodeRecognition</b> contains tools for the 1D/2D barcodes recognition.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.ChecksumValidation">
      <summary>
        <para>Enable checksum validation during recognition for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ChecksumValidation.Default">
      <summary>
            If checksum is required by the specification - it will be validated.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ChecksumValidation.On">
      <summary>
            Always validate checksum if possible.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ChecksumValidation.Off">
      <summary>
            Do not validate checksum.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.Code128DataPortion">
      <summary>
            Contains the data of subtype for Code128 type barcode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.Code128DataPortion.Data">
      <summary>
            Gets the part of code text related to subtype.
            </summary>
      <returns>The part of code text related to subtype</returns>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.Code128DataPortion.Code128SubType">
      <summary>
            Gets the type of Code128 subset
            </summary>
      <returns>The type of Code128 subset</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.Code128SubType">
      <summary>
            Contains types of Code128 subset
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.Code128SubType.CodeSetA">
      <summary>
            ASCII characters 00 to 95 (0–9, A–Z and control codes), special characters, and FNC 1–4 ///</summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.Code128SubType.CodeSetB">
      <summary>
            ASCII characters 32 to 127 (0–9, A–Z, a–z), special characters, and FNC 1–4 ///</summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.Code128SubType.CodeSetC">
      <summary>
            00–99 (encodes two digits with a single code point) and FNC1 ///</summary>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.BarCodeRecognitionException">
      <summary>
            General exception thrown by BarCodeReader, inherited from BarCodeException
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeRecognitionException.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeRecognitionException" /> class.
            </summary>
      <param name="message">error message</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeRecognitionException.#ctor(System.String,System.Exception)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeRecognitionException" /> class with the specified error message and the current exception.
            </summary>
      <param name="message">The error message of the exception.</param>
      <param name="innerException">The current exception is thrown.</param>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.ManualHint">
      <summary>
            Manual hints.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.None">
      <summary>
            There are no heavy recognition algorithms. The fastest recognition algorithms are used there, 
            however if image is noisy recognition will fail. Used by default.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.InvertImage">
      <summary>
            Use when image is white on black background. Typically BarCode images are black on white background.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.IncorrectBarcodes">
      <summary>
            Addition algorithms are included to recognize incorrectly generated or damaged barcodes (skipped bars, stop symbol, etc). May return deniable recognition.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.ComplexBackground">
      <summary>
            Analyzes barcode background. Useful with complex or colored backgrounds.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.MedianSmoothing">
      <summary>
            MedianSmoothing. Works with BarcodeReader's MedianSmoothingWindowSize property. The MaxQuality mode includes this flag by default.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.UseRestoration">
      <summary>
            Starts recognition using only the restoration algorithms from MaxQuality mode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.UseRegular">
      <summary>
            Starts recognition using algorithms from MaxPerfomance mode. Useful to combine with other hints.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.SpecialFormOfCells">
      <summary>
            Starts recognition barcodes with the special form of cells. Example: dot peen Datamatrix. The MaxQuality mode includes this flag by default.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.ManualHint.SkipRotatedBarcodes">
      <summary>
            Switches off algorithms of rotating and so increases the recognition speed.
            It works only for Datamatrix and linear barcodes.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.RecognitionMode">
      <summary>
            Recognition modes. Note: only one recognition mode can be selected.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.RecognitionMode.MaxPerformance">
      <summary>
            Finds all the possible good and average quality barcodes. Uses only the fastest algorithms. Enabled by default.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.RecognitionMode.MaxQuality">
      <summary>
            Finds all the possible barcodes with good or bad quality. Doesn't return potential barcodes. Uses different fast and slow algorithms.  
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.RecognitionMode.MaxBarCodes">
      <summary>
            Extends MaxQuality. Finds even potential barcodes. Uses extra algorithms which may recognize incorrect barcodes,
            barcodes on complex background, noisy or damaged barcodes and etc. You may observe extra spurious barcodes.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.RecognitionMode.ManualHints">
      <summary>
            User configures hints optionally. Allows you to adjust the balance between speed and quality manually.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.ICOMBarCodeReader">
      <summary>
            Interface for COM interop usage.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.ICOMBarCodeReader.SetBarCodeImage(System.String)">
      <summary>
            Sets bitmap image for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="filename">The image file for recogniton.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.ICOMBarCodeReader.SetBarCodeReadType(Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Default BarCodeReader constructor.
            Requires to set image (SetBitmapImage()) before to call Read() method.
            </summary>
      <param name="type">The type of barcode to read.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.ICOMBarCodeReader.Read">
      <summary>
            Reads barcode from the image.
            </summary>
      <returns>True if the next barcode was read successfully; false if there are no more nodes to read.</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader">
      <summary>
            BarCodeReader encapsulates an image which may contain one or several barcodes, it then can perform Read operation to detect barcodes.
            <example>
            This sample shows how to detect Code39 barcode with supplement.
            <code>
            [C#]
            using(BarCodeReader reader = new BarCodeReader(@"c:\test.jpg", DecodeType.Code39Standard))
            {
                while(reader.Read())
                {
                    Console.WriteLine("BarCode Type: " + reader.GetCodeType());
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                }
            }
            [VB.NET]
            Using reader As BarCodeReader = New BarCodeReader("c:\test.jpg", DecodeType.Code39Standard)
                While reader.Read()
                    Console.WriteLine("BarCode Type: " + reader.GetCodeTypeName())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText())
                End While
            End Using
            </code></example></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.IsLicensed">
      <summary>
            Gets a value indicating whether recognition module is licensed.
            </summary>
      <value>
        <c>true</c> if recognition module is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.ProcessorSettings">
      <summary>
            Gets a settings of using processor cores.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.Timeout">
      <summary>
            Gets or sets the timeout of recognition process.
            </summary>
      <value>
            The timeout.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.ChecksumValidation">
      <summary>
        <para>Enable checksum validation during recognition for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
      <value>
            The checksum validation flag.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.MedianSmoothingWindowSize">
      <summary>
            Gets or sets the median smoothing window size. Typical values are 3 or 4. Default value is 3. Recognition hint MedianSmoothing must be set.
            At this version a value is directly mirrored to QualitySettings.
            </summary>
      <value>
            The median smoothing window size. Typical values are 3 or 4. Default value is 3.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.StripFNC">
      <summary>
            Strip FNC1, FNC2, FNC3 characters from codetext. Default value is false.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.CustomerInformationInterpretingType">
      <summary>
            Gets or sets the Interpreting Type for the Customer Information of AustralianPost BarCode.Default is CustomerInformationInterpretingType.Other.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.Close">
      <summary>
            Closes barcode reader.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.Abort">
      <summary>
            Function requests termination of current recognition session from other thread. Abort is unblockable method and returns control just after calling. 
            The method should be used when recognition process is too long.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.Read">
      <summary>
            Reads barcode from the image.
            </summary>
      <example>
            This sample shows how to detect any barcode.
            <code>
            [C#]
            using(BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
                while(reader.Read())
                {
                    Console.WriteLine("BarCode Type: " + reader.GetCodeType());
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                }
            }
            
            [VB.NET]
            Using reader As BarCodeReader = New BarCodeReader("c:\test.jpg")
                While reader.Read()
                    Console.WriteLine("BarCode Type: " + reader.GetCodeTypeName())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText())
                End While
            End Using
            </code></example>
      <returns>True if the next barcode was read successfully; false if there are no more nodes to read.</returns>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.QualitySettings">
      <summary>
            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.
            <example>
            This sample shows how to use QualitySettings with BarCodeReader
            <code>
            [C#]
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //set high performance mode
               reader.QualitySettings = QualitySettings.HighPerformance;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //set high performance mode
               reader.QualitySettings = QualitySettings.HighPerformance;
               //set separate options
               reader.QualitySettings.AllowMedianSmoothing = true;
               reader.QualitySettings.MedianSmoothingWindowSize = 5;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //default mode is NormalQuality
               //set separate options
               reader.QualitySettings.AllowMedianSmoothing = true;
               reader.QualitySettings.MedianSmoothingWindowSize = 5;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            </code></example></summary>
      <value>
            QualitySettings to configure recognition quality and speed.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.RecognitionMode">
      <summary>
            Gets or sets the recognition mode. 
            This property allows to quickly set up and tune the processing speed and quality 
            in a way which is the most appropriate for you needs. Default value is MaxPerformance.
            At this version a value is directly mirrored to QualitySettings.
            </summary>
      <value>
            The recognition mode. Default value is MaxPerformance.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeReader.ManualHints">
      <summary>
            Allows you to configure options of recognition accuracy and speed manually. 
            You need to change the property "RecognitionMode" to "RecognitionMode.ManualHints". Default value is None.
            At this version values are directly mirrored to QualitySettings.
            </summary>
      <value>
            The manual hints. Default value is None.
            </value>
      <example>
            This sample shows how to detect barcode with manual hints.
            <code>
            [C#]
            using(BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
                reader.RecognitionMode = RecognitionMode.ManualHints;
                reader.ManualHints = ManualHint.InvertImage| ManualHint.IncorrectBarcodes;
                while(reader.Read())
                {
                    Console.WriteLine("BarCode Type: " + reader.GetCodeType());
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                }
            }
            
            [VB.NET]
            Using reader As BarCodeReader = New BarCodeReader("c:\test.jpg")
                reader.RecognitionMode = RecognitionMode.ManualHints
                reader.ManualHints = ManualHint.InvertImage Or ManualHint.IncorrectBarcodes 
                While reader.Read()
                    Console.WriteLine("BarCode Type: " + reader.GetCodeTypeName())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText())
                End While
            End Using
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeText">
      <summary>
            Gets the code text.
            Text will not contain the checksum for 1D barcode types, which support the checksum. Please use GetCodeText(true) method to get result with checksum.
            </summary>
      <returns>The code text of the barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeText(System.Text.Encoding)">
      <summary>
            Gets the code text with encoding.
            </summary>
      <param name="encoding">The encoding for codetext.</param>
      <returns>A string containing recognized code text.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeText(System.Boolean)">
      <summary>
            Gets the code text. 
            Allows to include checksum into result when includeCheckSum is true.
            </summary>
      <param name="includeCheckSum">true to include CheckSum into result; false to return only CodeText.</param>
      <returns>The code text of the barcode with CheckSum or not.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCheckSum">
      <summary>
            Gets the checksum for 1D barcodes.
            </summary>
      <returns>The checksum for 1D barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetAngle">
      <summary>
            Gets the angle of the barcode (0-360).
            </summary>
      <returns>The angle for barcode (0-360).</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeBytes">
      <summary>
            Gets the encoded code bytes.
            </summary>
      <returns>The code bytes of the barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetMacroPdf417FileID">
      <summary>
            Gets the file ID of the barcode, only available with MacroPdf417.
            </summary>
      <returns>The file ID for MacroPdf417</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetMacroPdf417SegmentID">
      <summary>
            Gets the segment ID of the barcode,only available with MacroPdf417.
            </summary>
      <returns>The segment ID of the barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetMacroPdf417SegmentsCount">
      <summary>
            Gets macro pdf417 barcode segments count. Default value is -1.
            </summary>
      <returns>Segments count.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCode128DataPortions">
      <summary>
            Gets Code128DataPortion instance for recognized Code128 barcode
            </summary>
      <returns>Array of the Code128 data portions. Returns <c>null</c> if barcode is not Code128.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetQRStructuredAppendModeBarCodesQuantity">
      <summary>
            Gets the QR structured append mode barcodes quantity. Default value is -1.
            </summary>
      <returns>The quantity of the QR structured append mode barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetQRStructuredAppendModeBarCodeIndex">
      <summary>
            Gets the index of the QR structured append mode barcode. Index starts from 0. Default value is -1.
            </summary>
      <returns>The index of the QR structured append mode barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetQRStructuredAppendModeParityData">
      <summary>
            Gets the QR structured append mode parity data. Default value is -1.
            </summary>
      <returns>The QR structured append mode parity data.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetIsDeniable">
      <summary>
            Checks the deniable recognition. Such recognition might occur in max count mode decoding or use ManualHint.IncorrectBarcodes
            </summary>
      <returns>True if the deniable recognition was read.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetRegion">
      <summary>
            Gets the barcode region.
            </summary>
      <returns>The region of the recognized barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeType">
      <summary>
            Gets the barcode type.
            </summary>
      <returns>The type information of the recognized barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetCodeTypeName">
      <summary>
            Gets the name of the barcode type.
            </summary>
      <returns>The type name of the recognized barcode.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetRecognitionQuality">
      <summary>
            Gets the recognition quality. Works for 1D and postal barcodes.
            </summary>
      <returns>The recognition quality percent.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.GetDetectEncoding">
      <summary>
            Gets flag to detect codetext encoding for Unicode codesets.
            </summary>
      <returns>Returns detection flag</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetDetectEncoding(System.Boolean)">
      <summary>
             Sets flag to detect codetext encoding for Unicode codesets.
             </summary>
      <param name="value">The flag to detect codetext encoding.</param>
      <example>
             This sample shows how to detect text encoding on the fly if DetectEncoding is enabled
             <code>
             [C#]
             using(MemoryStream ms = new MemoryStream())
             {
                 using (BarCodeBuilder bb = new BarCodeBuilder())
                 {
                      bb.CodeText = "Ñëîâî";
                      bb.EncodeType = EncodeTypes.QR;
                      bb.CodeTextEncoding = Encoding.UTF8;
                      bb.Save(ms, BarCodeImageFormat.Png);
                 }
                 using (BarCodeReader reader = new BarCodeReader(ms, BarCodeReadType.QR))
                 {
                      reader.SetDetectEncoding(true);
                      while(reader.Read())
                           Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                 }
                 
                 ms.Position = 0;
                 using (BarCodeReader reader = new BarCodeReader(ms, BarCodeReadType.QR))
                 {
                      reader.SetDetectEncoding(false);
                      while(reader.Read())
                           Console.WriteLine("BarCode CodeText: " + reader.GetCodeText(Encoding.UTF8));
                 }
            }
             </code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class with default values.
            Requires to set image (SetBitmapImage()) before to call Read() method.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeImage(System.Drawing.Bitmap)">
      <summary>
            Sets bitmap image for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="value">The bitmap image for recognition.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeImage(System.Drawing.Bitmap,System.Drawing.Rectangle[])">
      <summary>
            Sets bitmap image and areas for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="value">The bitmap image for recognition.</param>
      <param name="areas">areas list for recognition</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeImage(System.Drawing.Bitmap,System.Drawing.Rectangle)">
      <summary>
            Sets bitmap image and area for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="value">The bitmap image for recognition.</param>
      <param name="area">area for recognition</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeImage(System.String)">
      <summary>
            Sets image file for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="filename">The image file for recogniton.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeImage(System.IO.Stream)">
      <summary>
            Sets image stream for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="stream">The image stream for recogniton.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.SetBarCodeReadType(Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Sets decode type for recognition. 
            Must be called before Read() method. 
            </summary>
      <param name="type">The type of barcode to read.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class from an image.
            </summary>
      <param name="image">A Bitmap instance containing the image</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="image">The image.</param>
      <param name="decodeTypes">Decode types.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="image">The image.</param>
      <param name="type">The decode type1. It can be single or multy</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,System.Drawing.Rectangle,Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            <b>This constructor overload is not supported in compact framework.</b></summary>
      <param name="image">The image.</param>
      <param name="area">The area for recognition.</param>
      <param name="decodeTypes">Decode types.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,System.Drawing.Rectangle,Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            <b>This constructor overload is not supported in compact framework.</b></summary>
      <param name="image">The image.</param>
      <param name="area">The area for recognition.</param>
      <param name="type">The decode type.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,System.Drawing.Rectangle[],Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            <b>This constructor overload is not supported in Silverlight.</b></summary>
      <param name="image">The image to read</param>
      <param name="areas">The array of recognition areas</param>
      <param name="decodeTypes">The decode types applicable for all the areas specified.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.Drawing.Bitmap,System.Drawing.Rectangle[],Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            <b>This constructor overload is not supported in Silverlight.</b></summary>
      <param name="image">The image to read</param>
      <param name="areas">The array of recognition areas</param>
      <param name="type">The decode type applicable for all the areas specified.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class from file.
            </summary>
      <param name="filename">The filename.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.String,Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="filename">The filename.</param>
      <param name="decodeTypes">Decode types.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.String,Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="filename">The filename.</param>
      <param name="type">The decode type.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.IO.Stream)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="stream">The stream.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.IO.Stream,Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="stream">The stream.</param>
      <param name="type">The decode type.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.#ctor(System.IO.Stream,Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.BarCodeReader" /> class.
            </summary>
      <param name="stream">The stream.</param>
      <param name="decodeTypes">Decode types.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.Dispose(System.Boolean)">
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.ExportToXml(System.String)">
      <summary>
            Exports BarCode properties to the xml-file specified
            </summary>
      <param name="xmlFile">The name for the file</param>
      <returns>Whether or not export completed successfully.
             <para>Returns <b>True</b> in case of success; <b>False</b> Otherwise </para></returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeReader.ImportFromXml(System.String)">
      <summary>
            Imports BarCode properties from the xml-file specified and applies them to the current BarCodeBuilder instance. 
            </summary>
      <param name="xmlFile">The name for the file</param>
      <returns>Returns <b>True</b> in case of success; <para><b>False</b> Otherwise </para></returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.BaseDecodeType">
      <summary>
            Base class for MultyDecodeType and SingleDecodeType.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.ContainsAny(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Determines whether any of the given decode types is included into 
            </summary>
      <param name="types">Types to verify</param>
      <returns>Value is a true if any types are included into</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.Equals(Aspose.BarCode.BarCodeRecognition.SingleDecodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.Equals(Aspose.BarCode.BarCodeRecognition.MultyDecodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.Equals(Aspose.BarCode.BarCodeRecognition.BaseDecodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.BaseDecodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.BarCodeRecognition.BaseDecodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.Equals(System.Object)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.BaseDecodeType" /> value.
            </summary>
      <param name="obj">An System.Object value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.GetHashCode">
      <summary>
            Returns the hash code for this instance.
            </summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.SingleDecodeType@)">
      <summary>
            Converts the string representation of a SingleDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string containing a SingleDecodeType representation to convert.</param>
      <param name="result">An actual SingleDecodeType is returned, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or  SingleDecodeType (-1, "None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.MultyDecodeType@)">
      <summary>
            Converts the string representation of a MultyDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string containing a MultyDecodeType representation to convert.</param>
      <param name="result">An actual MultyDecodeType is returned, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or MultyDecodeType ("None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BaseDecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.BaseDecodeType@)">
      <summary>
            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.
            </summary>
      <param name="parsingType">A string containing a MultyDecodeType representation to convert.</param>
      <param name="result">An actual MultyDecodeType is returned, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or MultyDecodeType ("None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.DecodeType">
      <summary>
            Specify the type of barcode to read. 
            <example>
            This sample shows how to detect Code39 and Code128 barcode.
            <code>
            [C#]
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg", DecodeType.Code39Standard, DecodeType.Code128))
            {
                while (reader.Read())
                {
                      Console.WriteLine("BarCode Type: " + reader.GetCodeType());
                      Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                }
            }
            [VB.NET]
            Using reader As BarCodeReader = New BarCodeReader("c:\test.jpg", DecodeType.Code39Standard, DecodeType.Code128)
                While reader.Read()
                Console.WriteLine("BarCode Type: " + reader.GetCodeTypeName())
                Console.WriteLine("BarCode CodeText: " + reader.GetCodeText())
                End While
            End Using
            </code></example></summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None">
      <summary>
            Unspecified decode type. 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Codabar">
      <summary>
            Specifies that the data should be decoded with <b>CODABAR</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code11">
      <summary>
            Specifies that the data should be decoded with <b>CODE 11</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code39Standard">
      <summary>
            Specifies that the data should be decoded with <b>Standard CODE 39</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code39Extended">
      <summary>
            Specifies that the data should be decoded with <b>Extended CODE 39</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code93Standard">
      <summary>
            Specifies that the data should be decoded with <b>Standard CODE 93</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code93Extended">
      <summary>
            Specifies that the data should be decoded with <b>Extended CODE 93</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code128">
      <summary>
            Specifies that the data should be decoded with <b>CODE 128</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.GS1Code128">
      <summary>
            Specifies that the data should be decoded with <b>GS1 CODE 128</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.EAN8">
      <summary>
            Specifies that the data should be decoded with <b>EAN-8</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.EAN13">
      <summary>
            Specifies that the data should be decoded with <b>EAN-13</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.EAN14">
      <summary>
            Specifies that the data should be decoded with <b>EAN14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.SCC14">
      <summary>
            Specifies that the data should be decoded with <b>SCC14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.SSCC18">
      <summary>
            Specifies that the data should be decoded with <b>SSCC18</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.UPCA">
      <summary>
            Specifies that the data should be decoded with <b>UPC-A</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.UPCE">
      <summary>
            Specifies that the data should be decoded with <b>UPC-E</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ISBN">
      <summary>
            Specifies that the data should be decoded with <b>ISBN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Standard2of5">
      <summary>
            Specifies that the data should be decoded with <b>Standard 2 of 5</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Interleaved2of5">
      <summary>
            Specifies that the data should be decoded with <b>INTERLEAVED 2 of 5</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Matrix2of5">
      <summary>
            Specifies that the data should be decoded with <b>Matrix 2 of 5</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ItalianPost25">
      <summary>
            Specifies that the data should be decoded with <b>Italian Post 25</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.IATA2of5">
      <summary>
            Specifies that the data should be decoded with <b>IATA 2 of 5</b> barcode specification. IATA (International Air Transport Association) uses this barcode for the management of air cargo.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ITF14">
      <summary>
            Specifies that the data should be decoded with <b>ITF14</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ITF6">
      <summary>
            Specifies that the data should be decoded with <b>ITF6</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MSI">
      <summary>
            Specifies that the data should be decoded with <b>MSI Plessey</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.VIN">
      <summary>
            Specifies that the data should be decoded with <b>VIN</b> (Vehicle Identification Number) barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DeutschePostIdentcode">
      <summary>
            Specifies that the data should be decoded with <b>DeutschePost Ident code</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DeutschePostLeitcode">
      <summary>
            Specifies that the data should be decoded with <b>DeutschePost Leit code</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.OPC">
      <summary>
            Specifies that the data should be decoded with <b>OPC</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.PZN">
      <summary>
             Specifies that the data should be decoded with <b>PZN</b> barcode specification. This symbology is also known as Pharma Zentral Nummer
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Pharmacode">
      <summary>
            Specifies that the data should be decoded with <b>Pharmacode</b> barcode. This symbology is also known as Pharmaceutical Binary Code
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DataMatrix">
      <summary>
            Specifies that the data should be decoded with <b>DataMatrix</b> barcode symbology
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.GS1DataMatrix">
      <summary>
            Specifies that the data should be decoded with <b>GS1DataMatrix</b> barcode symbology
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.QR">
      <summary>
            Specifies that the data should be decoded with <b>QR Code</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Aztec">
      <summary>
            Specifies that the data should be decoded with <b>Aztec</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Pdf417">
      <summary>
            Specifies that the data should be decoded with <b>Pdf417</b> barcode symbology
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MacroPdf417">
      <summary>
            Specifies that the data should be decoded with <b>MacroPdf417</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MicroPdf417">
      <summary>
            Specifies that the data should be decoded with <b>MicroPdf417</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.CodablockF">
      <summary>
            Specifies that the data should be decoded with <b>CodablockF</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.AustraliaPost">
      <summary>
            Specifies that the data should be decoded with <b>Australia Post</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Postnet">
      <summary>
            Specifies that the data should be decoded with <b>Postnet</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Planet">
      <summary>
            Specifies that the data should be decoded with <b>Planet</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.OneCode">
      <summary>
            Specifies that the data should be decoded with USPS <b>OneCode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.RM4SCC">
      <summary>
            Specifies that the data should be decoded with <b>RM4SCC</b> barcode specification. RM4SCC (Royal Mail 4-state Customer Code) is used for automated mail sort process in UK.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarOmniDirectional">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar omni-directional</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarTruncated">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar truncated</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarLimited">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar limited</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarExpanded">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar expanded</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarStackedOmniDirectional">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar stacked omni-directional</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarStacked">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar stacked</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DatabarExpandedStacked">
      <summary>
            Specifies that the data should be decoded with <b>GS1 Databar expanded stacked</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.PatchCode">
      <summary>
            Specifies that the data should be decoded with <b>Patch code</b> barcode specification. Barcode symbology is used for automated scanning
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ISSN">
      <summary>
            Specifies that the data should be decoded with <b>ISSN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.ISMN">
      <summary>
            Specifies that the data should be decoded with <b>ISMN</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Supplement">
      <summary>
            Specifies that the data should be decoded with <b>Supplement(EAN2, EAN5)</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.AustralianPosteParcel">
      <summary>
            Specifies that the data should be decoded with <b>Australian Post Domestic eParcel Barcode</b> barcode specification 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.SwissPostParcel">
      <summary>
            Specifies that the data should be decoded with <b>Swiss Post Parcel Barcode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code16K">
      <summary>
            Specifies that the data should be decoded with <b>SCode16K</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MicroQR">
      <summary>
            Specifies that the data should be decoded with <b>MicroQR Code</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.CompactPdf417">
      <summary>
            Specifies that the data should be decoded with <b>CompactPdf417</b> (Pdf417Truncated) barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.GS1QR">
      <summary>
            Specifies that the data should be decoded with <b>GS1 QR</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MaxiCode">
      <summary>
            Specifies that the data should be decoded with <b>MaxiCode</b> barcode specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MicrE13B">
      <summary>
            Specifies that the data should be decoded with <b>MICR E-13B</b> blank specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Code32">
      <summary>
            Specifies that the data should be decoded with <b>Code32</b> blank specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DataLogic2of5">
      <summary>
            Specifies that the data should be decoded with <b>DataLogic 2 of 5</b> blank specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DotCode">
      <summary>
            Specifies that the data should be decoded with <b>DotCode</b> blank specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.DutchKIX">
      <summary>
            Specifies that the data should be decoded with <b>DotCode</b> blank specification
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.Types1D">
      <summary>
            Specifies that data will be checked with all of <b>1D</b> barcode symbologies
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.PostalTypes">
      <summary>
            Specifies that data will be checked with all of <b>1.5D Postal</b> barcode symbologies, like <b>Planet, Postnet, AustraliaPost, OneCode, RM4SCC, DutchKIX</b></summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.MostCommonTypes">
      <summary>
            Specifies that data will be checked with most commonly used symbologies
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeRecognition.DecodeType.AllSupportedTypes">
      <summary>
            Specifies that data will be checked with all available symbologies
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.DecodeType.AllSupportedTypesArray">
      <summary>
            Gets an array that represents AllSupportedTypes
            </summary>
      <returns>
      </returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.DecodeType.ScanSets(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Specify scan sets by barcodeTypes
            </summary>
      <param name="barcodeTypes">Array of single and multy decode types</param>
      <returns>A multi decode type</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.DecodeType.GetNames">
      <summary>
            Retrieves an array of the names of the decode types.
            </summary>
      <returns>A string array of the names of the decode types.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.DecodeType.Parse(System.String,Aspose.BarCode.BarCodeRecognition.SingleDecodeType@)">
      <summary>
            Converts the string representation of a SingleDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string containing a SingleDecodeType representation to convert.</param>
      <param name="result">An actual SingleDecodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or  SingleDecodeType (-1, "None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.DecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.SingleDecodeType@)">
      <summary>
            Converts the string representation of a SingleDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as "Index:-1; Name:None" to convert.</param>
      <param name="result">An actual SingleDecodeType returns, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or  SingleDecodeType (-1, "None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.DecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.MultyDecodeType@)">
      <summary>
            Converts the string representation of a MultyDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as either "AllSupportedTypes" or "EAN8,EAN13,CodaBar" to convert.</param>
      <param name="result">An actual MultyDecodeType is returned, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or  MultyDecodeType ("None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType">
      <summary>
            Composite decode type.
            </summary>
      <example>
            This sample shows how to create compound MultyDecode types that combine SingleDecodeType and MultiDecode types.
            <code> 
            [C#]
            MultyDecodeType types1 = new MultyDecodeType(DecodeType.QR, DecodeType.DataMatrix);
            MultyDecodeType types2 = new MultyDecodeType(types1, DecodeType.Code128, DecodeType.Code39Standard);
            [VB.NET]
            Dim multyType1 As MultyDecodeType 
            multyType1 = New MultyDecodeType(DecodeType.QR, DecodeType.DataMatrix)
            Dim multyType2 As MultyDecodeType
            multyType2 = New MultyDecodeType(multyType1, DecodeType.Code128, DecodeType.Code39Standard)
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.#ctor(Aspose.BarCode.BarCodeRecognition.SingleDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> class.
            </summary>
      <param name="barcodeTypes">Array of single decode types</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.#ctor(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> class.
            </summary>
      <param name="barcodeTypes">Array of multy and single decode types</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.Add(Aspose.BarCode.BarCodeRecognition.SingleDecodeType)">
      <summary>
            Adds one more <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> to the MultyDecodeType.
            </summary>
      <param name="singleType">A Single DecodeType to be added to the list</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.ContainsAll(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Check if this contains all types from barcode types.
            </summary>
      <param name="barcodeTypes">Input single or multy barcode types</param>
      <returns>Value is a true if all types are included into</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.ToString">
      <summary>
            Overridden method representing MultyDecodeType as a string.
            </summary>
      <returns>
            A string representing MultyDecodeType instance as "singleDecodeType1, singleDecodeType2, ..."
            <para><b>"AllSupportedTypes"</b> returns when all types are included.</para></returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.TryParse(System.String,Aspose.BarCode.BarCodeRecognition.MultyDecodeType@)">
      <summary>
            Converts the string representation of a MultyDecodeType to its instance.
            A return value indicates whether the conversion succeeded or failed.
            </summary>
      <param name="parsingType">A string in the format as either "AllSupportedTypes" or "EAN8,EAN13,CodaBar" to convert.</param>
      <param name="result">An actual MultyDecodeType is returned, when conversion has completed successfully; 
            <para>otherwise it returns indefinite type. <seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /> or  MultyDecodeType ("None").</para></param>
      <returns>
        <b>true</b> if s was converted successfully; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.ContainsAny(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Is contain any of types
            </summary>
      <param name="decodeTypes">Decode types</param>
      <returns>Value is a true if any types are included into</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.GetSingleTypes">
      <summary>
            Represents a list of single types.
            </summary>
      <returns>List of single types</returns>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.GetSingleTypesCount">
      <summary>
            Returns a number of single types.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.Equals(Aspose.BarCode.BarCodeRecognition.MultyDecodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.Equals(System.Object)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.MultyDecodeType" /> value.
            </summary>
      <param name="obj">An System.Object value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.MultyDecodeType.GetHashCode">
      <summary>
            Returns the hash code for this instance.
            </summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType">
      <summary>
            Single decode type. See decode type to get instance.
            </summary>
      <example>
            This sample shows how to get instance of single decode type.
            <code>
            [C#]
            SingleDecodeType singleType = DecodeType.QR 
             
            [VB.NET]
            Dim singleType As SingleDecodeType 
            singleType = DecodeType.QR
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.TypeIndex">
      <summary>
            Gets an index of decode type
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.TypeName">
      <summary>
            Gets a name of decode type
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.ToString">
      <summary>
            Returns the name of the given SingleDecodeType as a string.
            </summary>
      <returns>A string representing the name of the single decode type</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.GetString">
      <summary>
            Converts the instance of SingleDecodeType to its equivalent string representation.
            The string format is: "Index:-1; Name:None".
            </summary>
      <returns>A string representing the complete value of the single decode type</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.GetString(Aspose.BarCode.BarCodeRecognition.SingleDecodeType)">
      <summary>
            Converts the instance of SingleDecodeType to its equivalent string representation.
            The string format is: "Index:-1; Name:None".
            </summary>
      <param name="instance">The SingleDecodeType instance to convert</param>
      <returns>A string representing the complete value of the given single decode type</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.ContainsAny(Aspose.BarCode.BarCodeRecognition.BaseDecodeType[])">
      <summary>
            Returns a value indicating whether this instance is included into the list specified.
            </summary>
      <param name="types">Array of single and multy decode types</param>
      <returns>Value is a true if any types are included into</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.Equals(Aspose.BarCode.BarCodeRecognition.SingleDecodeType)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> value.
            </summary>
      <param name="other">An <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.Equals(System.Object)">
      <summary>
            Returns a value indicating whether this instance is equal to a specified <see cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" /> value.
            </summary>
      <param name="obj">An System.Object value to compare to this instance.</param>
      <returns>
        <b>true</b> if obj has the same value as this instance; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.GetHashCode">
      <summary>
            Returns the hash code for this instance.
            </summary>
      <returns>A 32-bit signed integer hash code.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.SingleDecodeType.Parse(System.String)">
      <summary>
            Converts the string representation of the name of a SingleDecodeType to its instance.
            </summary>
      <param name="stringDecodeType">A string containing the name of a SingleDecodeType to convert.</param>
      <returns>the instance of <seealso cref="T:Aspose.BarCode.BarCodeRecognition.SingleDecodeType" />, if conversion was successful; otherwise, it returns <b><seealso cref="F:Aspose.BarCode.BarCodeRecognition.DecodeType.None" /></b>.</returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.QualitySettings">
      <summary>
            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.
            <example>
            This sample shows how to use QualitySettings with BarCodeReader
            <code>
            [C#]
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //set high performance mode
               reader.QualitySettings = QualitySettings.HighPerformance;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
                //normal quality mode is set by default
                while (reader.Read())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
                //set high quality mode with low speed recognition 
                reader.QualitySettings = QualitySettings.HighQuality;
                while (reader.Read())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
                //set max barcodes mode, which tries to find all possible barcodes, even incorrect. The slowest recognition mode
                reader.QualitySettings = QualitySettings.MaxBarCodes;
                while (reader.Read())
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //set high performance mode
               reader.QualitySettings = QualitySettings.HighPerformance;
               //set separate options
               reader.QualitySettings.AllowMedianSmoothing = true;
               reader.QualitySettings.MedianSmoothingWindowSize = 5;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
            {
               //default mode is NormalQuality
               //set separate options
               reader.QualitySettings.AllowMedianSmoothing = true;
               reader.QualitySettings.MedianSmoothingWindowSize = 5;
               while (reader.Read())
                   Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
            }
            </code></example></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.HighPerformance">
      <summary>
            HighPerformance recognition quality preset. High quality barcodes are recognized well in this mode.
            <code>
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
                reader.QualitySettings = QualitySettings.HighPerformance;
            </code></summary>
      <value>
            HighPerformance recognition quality preset.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.NormalQuality">
      <summary>
            NormalQuality recognition quality preset. Suitable for the most of barcodes
            <code>
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
                reader.QualitySettings = QualitySettings.NormalQuality;
            </code></summary>
      <value>
            NormalQuality recognition quality preset.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.HighQuality">
      <summary>
            HighQuality recognition quality preset. This preset is developed for low quality barcodes.
            <code>
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
                reader.QualitySettings = QualitySettings.HighQuality;
            </code></summary>
      <value>
            HighQuality recognition quality preset.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.MaxBarCodes">
      <summary>
            MaxBarCodes recognition quality preset. This preset is developed to recognize all possible barcodes, even incorrect barcodes.
            <code>
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg"))
                reader.QualitySettings = QualitySettings.MaxBarCodes;
            </code></summary>
      <value>
            MaxBarCodes recognition quality preset.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowInvertImage">
      <summary>
            Allows engine to recognize inverse color image as additional scan. Mode can be used when barcode is white on black background.
            </summary>
      <value>
            Allows engine to recognize inverse color image.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowIncorrectBarcodes">
      <summary>
            Allows engine to recognize barcodes which has incorrect checksumm or incorrect values. 
            Mode can be used to recognize damaged barcodes with incorrect text.
            </summary>
      <value>
            Allows engine to recognize incorrect barcodes.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowComplexBackground">
      <summary>
            Allows engine to recognize color barcodes on color background as additional scan. Extremely slow mode.
            </summary>
      <value>
            Allows engine to recognize color barcodes on color background.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowMedianSmoothing">
      <summary>
            Allows engine to enable median smoothing as additional scan. Mode helps to recognize noised barcodes. 
            </summary>
      <value>
            Allows engine to enable median smoothing.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.MedianSmoothingWindowSize">
      <summary>
            Window size for median smoothing. Typical values are 3 or 4. Default value is 3. AllowMedianSmoothing must be set.
            </summary>
      <value>
            Window size for median smoothing.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowRegularImage">
      <summary>
            Allows engine to recognize regular image without any restorations as main scan. Mode to recognize image as is.
            </summary>
      <value>
            Allows to recognize regular image without any restorations.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowDecreasedImage">
      <summary>
            Allows engine to recognize decreased image as additional scan. Size for decreasing is selected by internal engine algorithms.
            Mode helps to recognize barcodes which are noised and blurred but captured with high resolution.
            </summary>
      <value>
            Allows engine to recognize decreased image
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowWhiteSpotsRemoving">
      <summary>
            Allows engine to recognize image without small white spots as additional scan. Mode helps to recognize noised image as well as median smoothing filtering.
            </summary>
      <value>
            Allows engine to recognize image without small white spots.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowOneDAdditionalScan">
      <summary>
            Allows engine for 1D barcodes to recognize regular image with different params as additional scan. Mode helps to recongize low height 1D barcodes.
            </summary>
      <value>
            Allows engine for 1D barcodes to run additional scan.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowOneDFastBarcodesDetector">
      <summary>
            Allows engine for 1D barcodes to quickly recognize high quality barcodes which fill almost whole image. 
            Mode helps to quickly recognize generated barcodes from Internet.
            </summary>
      <value>
            Allows engine for 1D barcodes to quickly recognize high quality barcodes.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowMicroWhiteSpotsRemoving">
      <summary>
            Allows engine for Postal barcodes to recognize slightly noised images. Mode helps to recognize sligtly damaged Postal barcodes.
            </summary>
      <value>
            Allows engine for Postal barcodes to recognize slightly noised images.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowSaltAndPaperFiltering">
      <summary>
            Allows engine to recognize barcodes with salt and paper noise type. Mode can remove small noise with white and black dots.
            </summary>
      <value>
            Allows engine to recognize barcodes with salt and paper noise type.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowDetectScanGap">
      <summary>
            Allows engine to use gap between scans to increase recognition speed. Mode can make recognition problems with low height barcodes.
            </summary>
      <value>
            Allows engine to use gap between scans to increase recognition speed.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowDatamatrixIndustrialBarcodes">
      <summary>
            Allows engine for Datamatrix to recognize dashed industrial Datamatrix barcodes. 
            Slow mode which helps only for dashed barcodes which consist from spots.
            </summary>
      <value>
            Allows engine for Datamatrix to recognize dashed industrial barcodes.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowQRMicroQrRestoration">
      <summary>
            Allows engine for QR/MicroQR to recognize damaged MicroQR barcodes.
            </summary>
      <value>
            Allows engine for QR/MicroQR to recognize damaged MicroQR barcodes.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.QualitySettings.AllowOneDWipedBarsRestoration">
      <summary>
            Allows engine for 1D barcodes to recognize barcodes with single wiped/glued bars in pattern.
            </summary>
      <value>
            Allows engine for 1D barcodes to recognize barcodes with single wiped/glued bars in pattern.
            </value>
    </member>
    <member name="T:Aspose.BarCode.BarCodeRecognition.BarCodeRegion">
      <summary>
            Represents the barcode's region.
            </summary>
      <example>
            This sample shows how to draw edges of the barcode region, then fill it.
            <code>
            [C#]
            using (BarCodeReader reader = new BarCodeReader(@"c:\test.jpg",BarCodeReadType.Code39Standard))
            {
                int counter = 0;
                while(reader.Read())
                {
                    Console.WriteLine("BarCode Type: "+reader.GetReadType());
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText());
                    BarCodeRegion region = reader.GetRegion();
                    if(region != null)
                    {
                        Image img = System.Drawing.Image.FromFile(file);
                        Graphics g = Graphics.FromImage(img);
                        region.DrawBarCodeEdges(g,new Pen(Color.Red,1f));
                        img.Save(string.Format(@".\edge_{0}.png" ,counter++));
                        region.FillBarCodeRegion(g,Brushes.Green);
                        img.Save(string.Format(@".\fill_{0}.png", counter++));
                    }
                }
            }
            [VB.NET]
            Using reader As BarCodeReader = New BarCodeReader("c:\test.jpg", BarCodeReadType.Code39Standard)
                Dim counter As Integer
                While reader.Read()
                    counter = counter + 1
                    Console.WriteLine("BarCode Type: " + reader.GetReadType().ToString)
                    Console.WriteLine("BarCode CodeText: " + reader.GetCodeText())
                    Dim region As BarCodeRegion
                    region = reader.GetRegion()
                    If Not region Is Nothing Then
                        Dim img As Image = System.Drawing.Image.FromFile("c:\test.jpg")
                        Dim g As Graphics = Graphics.FromImage(img)
                        region.DrawBarCodeEdges(g, New Pen(Color.Red, 1.0F))
                        img.Save(String.Format(".\edge_{0}.png", counter))
                        region.FillBarCodeRegion(g, Brushes.Green)
                        img.Save(String.Format(".\fill_{0}.png", counter))
                    End If
                End While
            End Using
            </code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeRecognition.BarCodeRegion.Points">
      <summary>
            Gets the points of the region.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeRegion.DrawBarCodeEdges(System.Drawing.Graphics,System.Drawing.Pen)">
      <summary>
            Draws the bar code edges.
            </summary>
      <param name="g">The graphics.</param>
      <param name="pen">Pen that determines the color, width, and style of the polygon.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeRecognition.BarCodeRegion.FillBarCodeRegion(System.Drawing.Graphics,System.Drawing.Brush)">
      <summary>
            Fills the bar code region.
            </summary>
      <param name="g">The graphics.</param>
      <param name="brush">The brush.</param>
    </member>
    <member name="T:Aspose.BarCode.Recognition.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.BarCodeRecognition</b> contains tools for the 1D/2D barcodes recognition.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.ExtCodetextBuilder">
      <summary>
            Helper class for automatic codetext generation of the Extended Codetext Mode
            </summary>
    </member>
    <member name="M:Aspose.BarCode.ExtCodetextBuilder.Clear">
      <summary>
            Clears extended codetext items
            </summary>
    </member>
    <member name="M:Aspose.BarCode.ExtCodetextBuilder.AddPlainCodetext(System.String)">
      <summary>
            Adds plain codetext to the extended codetext items
            </summary>
      <param name="codetext">Codetext in unicode to add as extended codetext item</param>
    </member>
    <member name="M:Aspose.BarCode.ExtCodetextBuilder.AddECICodetext(Aspose.BarCode.ECIEncodings,System.String)">
      <summary>
            Adds codetext with Extended Channel Identifier
            </summary>
      <param name="ECIEncoding">Extended Channel Identifier</param>
      <param name="codetext">Codetext in unicode to add as extended codetext item with Extended Channel Identifier</param>
    </member>
    <member name="M:Aspose.BarCode.ExtCodetextBuilder.GetExtendedCodetext">
      <summary>
            Generate extended codetext from generation items list
            </summary>
      <returns>Return string of extended codetext</returns>
    </member>
    <member name="T:Aspose.BarCode.QrExtCodetextBuilder">
      <summary>
        <para>Extended codetext generator for 2D QR barcodes for ExtendedCodetext Mode of QREncodeMode</para>
        <para>Use Display2DText property of BarCodeBuilder to set visible text to removing managing characters.</para>
      </summary>
      <example>
            This sample shows how to use FNC1 first position in Extended Mode.
            <code>
            [C#]
            //create codetext
            QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder();
            lTextBuilder.AddFNC1FirstPosition();
            lTextBuilder.AddPlainCodetext("000%89%%0");
            lTextBuilder.AddFNC1GroupSeparator();
            lTextBuilder.AddPlainCodetext("12345&lt;FNC1&gt;");
            
            //generate codetext
            string lCodetext = lTextBuilder.GetExtendedCodetext();
            
            //generate
            using(BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
      <example>
            This sample shows how to use FNC1 second position in Extended Mode.
            <code>
            [C#]
            //create codetext
            QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder();
            TextBuilder.AddFNC1SecondPosition("12");
            TextBuilder.AddPlainCodetext("TRUE3456"); 
            
            //generate codetext
            string lCodetext = lTextBuilder.GetExtendedCodetext();
            
            //generate
            using(BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
      <example>
            This sample shows how to use multi ECI mode in Extended Mode.
            <code>
            [C#]
            //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
            using (BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.QrExtCodetextBuilder.AddFNC1FirstPosition">
      <summary>
            Adds FNC1 in first position to the extended codetext items
            </summary>
    </member>
    <member name="M:Aspose.BarCode.QrExtCodetextBuilder.AddFNC1SecondPosition(System.String)">
      <summary>
            Adds FNC1 in second position to the extended codetext items
            </summary>
      <param name="codetext">Value of the FNC1 in the second position</param>
    </member>
    <member name="M:Aspose.BarCode.QrExtCodetextBuilder.AddFNC1GroupSeparator">
      <summary>
            Adds Group Separator (GS - '\\u001D') to the extended codetext items
            </summary>
    </member>
    <member name="M:Aspose.BarCode.QrExtCodetextBuilder.GetExtendedCodetext">
      <summary>
            Generates Extended codetext from the extended codetext list.
            </summary>
      <returns>Extended codetext as string</returns>
    </member>
    <member name="T:Aspose.BarCode.AztecSymbolMode">
      <summary>
             Specifies the Aztec symbol mode.
             </summary>
      <example>
             This sample shows how to change Aztec Symbol mode and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Aztec;
                   builder.CodeText = "125";
                   builder.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.Rune;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Aztec
                   builder.CodeText = "125"
                   builder.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.Rune
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="F:Aspose.BarCode.AztecSymbolMode.Auto">
      <summary>
            Specifies to automatically pick up the best symbol (Compact or Full-range) for Aztec.
            This is default value.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.AztecSymbolMode.Compact">
      <summary>
            Specifies the Compact symbol for Aztec.
            Aztec Compact symbol permits only 1, 2, 3 or 4 layers.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.AztecSymbolMode.FullRange">
      <summary>
            Specifies the Full-range symbol for Aztec.
            Aztec Full-range symbol permits from 1 to 32 layers.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.AztecSymbolMode.Rune">
      <summary>
            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.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.ICOMBarCodeBuilder">
      <summary>
            Interface for COM-interop usage.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.ICOMBarCodeBuilder.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
    </member>
    <member name="T:Aspose.BarCode.BarCodeBuilder">
      <summary>
             BarCodeBuilder for backend barcode images generation.
             <remarks>BarCodeBuilder is deprecated. Use <see cref="T:Aspose.BarCode.Generation.BarCodeGenerator" /> instead.</remarks><para>
             supported symbology:
             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:
             DataMatrix, PDf417, QR code
             </para></summary>
      <example>
             This sample shows how to create and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodeText = "12345678";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodeText = "12345678"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.IsLicensed">
      <summary>
            Gets a value indicating whether generation module is licensed.
            </summary>
      <value>
        <c>true</c> if generation module is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.EncodeType">
      <summary>
             BarCode's encode type (symbology).
             Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> to set one of more than 64 symbologies:
             Code128, Code39, EAN13, EAN8, DataMatrix, Pdf417, QR, Aztec, MaxiCode, DotCode, Postnet, Planet, OneCode and other.
             </summary>
      <example>
             This sample shows how to create and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodeText = "12345678";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodeText = "12345678"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeText">
      <summary>
             Data to be encoded, different types of BarCode may have different CodeText length restrictions.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.EnableEscape" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeLocation" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment" />.
             </summary>
      <example>
             This sample shows how to create and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodeText = "12345678";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodeText = "12345678"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.SetBinaryCodeText(System.Byte[])">
      <summary>
            Set the binary data to be encoded.
            </summary>
      <param name="codeText">The binary data to be encoded.</param>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Display2DText">
      <summary>
            Gets or sets the text will displayed on the barcode image. Available only for 2D barcodes. Limited to 1000 chars.
            </summary>
      <value>
            The text to display.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeTextEncoding">
      <summary>
            Gets or sets the encoding of codetext.
            </summary>
      <value>
            The encoding for codetext.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property. It is worked pdf417, DataMatrix, Code128 only
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \013 and \\CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont">
      <summary>
             Specify the displaying CodeText's font
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
             See <see cref="T:System.Drawing.Font" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeLocation" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor">
      <summary>
            Specify the displaying CodeText's Color
            See <see cref="T:System.Drawing.Color" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeLocation" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeLocation">
      <summary>
            Specify the displaying CodeText Location, set to CodeLocation.None to hide CodeText.
            CodeLocation will be ignored if SymbologyType is UPCE, UPCA, ISBN, EAN8 or EAN13
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor" />
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment">
      <summary>
            Gets or sets the alignment of the code text.
            See <see cref="T:System.Drawing.StringAlignment" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace" />.
            </summary>
      <remarks>
            StringAlignment.Near means CodeText will be aligned to the left
            StringAlignment.Far means CodeText will be aligned to the right
            StringAlignment.Center means CodeText will be aligned to the center
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.RotationAngleF">
      <summary>
            BarCode image rotation angle, measured in degree, e.g. RotationAngleF = 0 or RotationAngleF = 360 means no rotation
            If RotationAngleF NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image, please set quality mode to anti-alias
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CaptionAbove">
      <summary>
             Caption Above the BarCode image. See <see cref="T:Aspose.BarCode.Caption" />.
             CaptionAbove contains the following properties:
             CaptionAbove.Font,
             CaptionAbove.ForeColor,
             CaptionAbove.Space,
             CaptionAbove.Visible,
             CaptionAbove.Text,
             CaptionAbove.TextAlign
             </summary>
      <example>
             This sample shows how to set above caption and save BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
            	      builder.CaptionAbove.Text = "This is a BarCode image";
            	      builder.CaptionAbove.Visible = true;
                   builder.CaptionAbove.Font = new System.Drawing.Font("Arial", 8f);
                   //space between the barcode and the caption
                   builder.CaptionAbove.Space = 2f;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
            	      builder.CaptionAbove.Text = "This is a BarCode image"
            	      builder.CaptionAbove.Visible = True
                   builder.CaptionAbove.Font = New System.Drawing.Font("Arial", 8f)
                   'Space between the barcode and the caption
                   builder.CaptionAbove.Space = 2.0f
                   builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CaptionBelow">
      <summary>
             Caption Below the BarCode image. See <see cref="T:Aspose.BarCode.Caption" />.
             CaptionBelow contains the following properties:
             CaptionBelow.Font,
             CaptionBelow.ForeColor,
             CaptionBelow.Space,
             CaptionBelow.Visible,
             CaptionBelow.Text,
             CaptionBelow.TextAlign
             </summary>
      <example>
             This sample shows how to set below caption and save BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
            	      builder.CaptionBelow.Text = "This is a BarCode image";
            	      builder.CaptionBelow.Visible = true;
                   builder.CaptionBelow.Font = new System.Drawing.Font("Arial", 8f);
                   //space between the barcode and the caption
                   builder.CaptionBelow.Space = 2f;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
            	      builder.CaptionBelow.Text = "This is a BarCode image"
            	      builder.CaptionBelow.Visible = True
                   builder.CaptionBelow.Font = New System.Drawing.Font("Arial", 8f)
                   'Space between the barcode and the caption
                   builder.CaptionBelow.Space = 2.0f
                   builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.GraphicsUnit">
      <summary>
            Measurement of various properties such as Width, Height etc.
            Default GraphicsUnit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.Resolution" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.PrinterName">
      <summary>
            Choose printer, if not specified, Print() method will choose the first available printer
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ImageQuality">
      <summary>
            Graphics quality mode, when RotationAngleF not equal to 0, 90, 180 or 270, do set quality mode to anti-alias. Type: Aspose.BarCode.ImageQualityMode
            See <see cref="T:Aspose.BarCode.ImageQualityMode" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.TextRenderingHint">
      <summary>
            Specifies the quality of text rendering.
             </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.AutoSize">
      <summary>
            Adjusts the image size automatically. Recommended: true.
            Default value is true.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ImageWidth">
      <summary>
            BarCode image width See <see cref="P:Aspose.BarCode.BarCodeBuilder.AutoSize" />., if AutoSize is true, ImageWidth will
            be increased accordingly
            Default Graphics Unit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ImageHeight">
      <summary>
            BarCode image's height See <see cref="P:Aspose.BarCode.BarCodeBuilder.AutoSize" />., if AutoSize is true, ImageHeight will
            be increased accordingly
            Default Graphics Unit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BorderWidth">
      <summary>
            Border width of the BarCode image
            Default Graphics Unit: Millimeter
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderVisible" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderDashStyle" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderColor" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.xDimension">
      <summary>
            x-dimension is the smallest width of the unit of BarCode bars or spaces.
            increase this will increase the whole barcode image width if AutoSize is true
            Default Graphics Unit: Millimeter
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.yDimension" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.AutoSize" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.yDimension">
      <summary>
             y-dimension, smallest height unit of 2D BarCode's modules.
             Some square symbols (such as DataMatrix) may ignore this and
             use x-dimension for both width unit and height unit
            
             In 2D barcode, y-dimension * rows determines BarCode's height
             In 1D barcode, BarHeight determines BarCode's height.
             Default Graphics Unit: Millimeter
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.xDimension" />.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.BarHeight">BarHeight</see>.
             </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BarHeight">
      <summary>
            Height of 1D barcodes' bars.
            In 2D barcode, y-dimension * rows determines BarCode's height
            In 1D barcode, BarHeight determines BarCode's height.
            Default Graphics Unit: Millimeter
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.yDimension" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.AspectRatio">
      <summary>
            height/width ratio (yDimension/xDimension) of 2D BarCode module.
            calculated based on xDimension set to 0 means
            not using this feature.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.xDimension" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.yDimension" />.
            </summary>
      <remarks>
            Some 2D BarCodes are square shaped, then AspectRatio is not applicable
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Margins">
      <summary>
            Margin area around the core BarCode image
            If AutoSize is false, then Width and Height is fixed, thus Margins setting will be ignored
            Default Graphics Unit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode, default Graphics Unit: millimeter
            See <see cref="T:System.Drawing.GraphicsUnit" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.SupplementData" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.PostnetShortBarHeight">
      <summary>
            Short bar's height of Postnet barcode, it has to be between 1 millimeter and 1.5 millimeter (0.04 inch and 0.06 inch). To set up tall bar's height, see BarHeight, which has to be between 8.28 milimeter and 9.72 milimeter (0.115 inch and 0.135 inch)
            see changing See <see cref="P:Aspose.BarCode.BarCodeBuilder.GraphicsUnit" />.
            see setting tall bar's height: See <see cref="P:Aspose.BarCode.BarCodeBuilder.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.PlanetShortBarHeight">
      <summary>
            Short bar's height of Planet barcode, it has to be between 1 millimeter and 1.5 millimeters.
            see changing See <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            see setting tall bar's height: See <see cref="P:Aspose.BarCode.BarCodeBuilder.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodeTextSpace">
      <summary>
            Space between the CodeText and the BarCode.
            Default Graphics Unit: Millimeter
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeText" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeLocation" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextFont" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextColor" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodeTextAlignment" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BarCodeImage">
      <summary>
             Get the BarCode image under current settings.
             </summary>
      <example>
             This sample shows how to create and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodeText = "12345678";
                   builder.BarCodeImage.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodeText = "12345678"
            	      builder.BarCodeImage.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BorderVisible">
      <summary>
            Gets or sets a value indicating whether [border visible].
            </summary>
      <value>
        <c>true</c> if [border visible]; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BorderColor">
      <summary>
            BarCode Image's border's color
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderWidth" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderVisible" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderDashStyle" /></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BorderDashStyle">
      <summary>
            Border style of BarCode Image
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderWidth" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderVisible" />.
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.BorderColor" /></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodabarStartSymbol">
      <summary>
             Start symbol (character) of codabar symbology.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodabarStopSymbol" />.
             </summary>
      <example>
             This sample shows how to set start and stop Codabar symbol and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodabarStartSymbol = CodabarSymbol.A;
                   builder.CodabarStopSymbol = CodabarSymbol.B;
                   builder.CodeText = "123456";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodabarStartSymbol = CodabarSymbol.A
                   builder.CodabarStopSymbol = CodabarSymbol.B
                   builder.CodeText = "123456"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodabarStopSymbol">
      <summary>
             Stop symbol (character) of codabar symbology.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodabarStartSymbol" />.
             </summary>
      <example>
             This sample shows how to set start and stop Codabar symbol and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.CodabarStartSymbol = CodabarSymbol.A;
                   builder.CodabarStopSymbol = CodabarSymbol.B;
                   builder.CodeText = "123456";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.CodabarStartSymbol = CodabarSymbol.A
                   builder.CodabarStopSymbol = CodabarSymbol.B
                   builder.CodeText = "123456"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CodabarChecksumMode">
      <summary>
             Get or set the checksum algorithm for Codabar barcodes. Default value is CodabarChecksum.Mod16.
             To enable checksum calculation set value EnableChecksum.Yes to property EnableChecksum.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.CodabarChecksumMode" />.
             </summary>
      <example>
             This sample shows how to change Codabar checksum algorithm and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
                   builder.EnableChecksum = EnableChecksum.Yes;
                   builder.CodabarChecksumMode = CodabarChecksum.Mod10;
                   builder.CodeText = "0123456789";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar
                   builder.EnableChecksum = EnableChecksum.Yes
                   builder.CodabarChecksumMode = CodabarChecksum.Mod10
                   builder.CodeText = "0123456789"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.CustomerInformationInterpretingType">
      <summary>
             Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
             </summary>
      <example>
             This sample shows how to change Customer Information of AustralianPost and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.AustraliaPost;
                   builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable;
                   builder.CodeText = "5912345678ABCde";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.AustraliaPost
                   builder.CustomerInformationInterpretingType = CustomerInformationInterpretingType.CTable
                   builder.CodeText = "5912345678ABCde"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ITF14BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ITF14BorderThickness">
      <summary>
            Gets or sets an ITF14 border (bearer bar) thickness.
            Default value is -1, this means that the thickness is calculated automatically
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ForeColor">
      <summary>
            Foreground color of the barcode image, that is,
            Bar's color of 1D barcode, Module's color of 2D barcode
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BackColor">
      <summary>
            Background color of the barcode image
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.EnableChecksum">
      <summary>
        <para>Enable checksum during generation 1D barcodes.</para>
        <para>Default is treated as Yes for symbology which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN, Codabar</para>
        <para>Checksum always used: Rest symbology</para>
      </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ThrowExceptionWhenCodeTextIncorrect">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically
            applicable SymbologyType: Pdf417, CodablockF, DatabarExpandedStacked
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Rows">
      <summary>
            BarCode's rows, if setting is illegal then rows will be calculated automatically.
            Applicable Symbology: Pdf417, DatabarExpandedStacked, CodablockF, DatabarExpandedStacked
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.DataMatrixEncodeMode">
      <summary>
            Encode mode of Datamatrix barcode, default to Auto
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Pdf417CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode, default compaction mode is <c>Auto</c></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Pdf417Truncate">
      <summary>
            Whether pdf417 symbology type of BarCode is truncated (to reduce space)
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.Pdf417ErrorLevel">
      <summary>
            Gets or 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
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.MacroPdf417SegmentsCount">
      <summary>
            Gets or sets macro pdf417 barcode segments count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.MacroPdf417SegmentID">
      <summary>
            Gets or sets macro pdf417 barcode's segment ID, which starts from 0, to MacroPdf417SegmentCount - 1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.MacroPdf417FileID">
      <summary>
            Gets or sets macro pdf417 barcode's file ID.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode.
            Default WideNarrowRatio:3, that is, wide bars are 3 times as wide as narrow bars
            Applicable symbology: Code39Extended, Code39Standard, Standard2of5, Interleaved2of5, Pharmacode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.SupplementData">
      <summary>
             Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, ISBN, Interleaved2of5 or Standard2of5.
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.SupplementSpace" />.
             </summary>
      <example>
             This sample shows how to set supplement data for UPCE and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.UPCE;
                   builder.SupplementData = "11"
                   builder.CodeText = "123456";
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.UPCE
                   builder.SupplementData = "11"
                   builder.CodeText = "123456"
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.QRErrorLevel">
      <summary>
             Level of Reed-Solomon error correction for QR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. see QRErrorLevel.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.QRVersion">
      <summary>
            Version of QR Code.
            From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.
            Default value is QRVersion.Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.QREncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode, default mode is <c>Auto</c></summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.QREncodeType">
      <summary>
             QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
             </summary>
      <example>
             This sample shows how to encode MicroQR and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR;
                   builder.CodeText = "12345TEXT";
                   builder.QREncodeType = QREncodeType.ForceMicroQR;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR
                   builder.CodeText = "12345TEXT"
                   builder.QREncodeType = QREncodeType.ForceMicroQR
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.ECIEncoding">
      <summary>
             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.
             </summary>
      <example>
             This sample shows how to use ECI encoding and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR;
                   builder.CodeText = "12345TEXT";
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR;
                   builder.ECIEncoding = ECIEncodings.UTF8;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR
                   builder.CodeText = "12345TEXT"
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR
                   builder.ECIEncoding = ECIEncodings.UTF8
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.MaxiCodeEncodeMode">
      <summary>
            Gets or sets a MaxiCode encode mode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.AztectErrorLevel">
      <summary>
            Level of error correction of Aztec types of barcode. value should between 10 to 95
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.DotCodeMask">
      <summary>
            Mask of Dotcode barcode, default to Auto
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.AztecSymbolMode">
      <summary>
             Gets or sets a Aztec Symbol mode. Default is Auto mode.
             </summary>
      <example>
             This sample shows how to change Aztec Symbol mode and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Aztec;
                   builder.CodeText = "Aztec Full-range text";
                   builder.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.FullRange;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Aztec
                   builder.CodeText = "Aztec Full-range text"
                   builder.AztecSymbolMode = Aspose.BarCode.AztecSymbolMode.FullRange
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.FilledBars">
      <summary>
            Only for 1D barcodes.
            Gets or sets a value indicating whether bars filled.
            Default value is true.
            </summary>
      <value>
        <c>true</c> if bars filled; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.DatamatrixEcc">
      <summary>
            Gets or sets a Datamatrix ECC type. Default value is ECC200
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.BarWidthReduction">
      <summary>
            Bar width reduction. Default Graphics Unit: Millimeter 
            (to change see <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>).
            </summary>
    </member>
    <member name="P:Aspose.BarCode.BarCodeBuilder.AlwaysShowChecksum">
      <summary>
             Always display checksum digit in the human readable text for Code128 and GS1Code128 barcodes.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeBuilder" /> class
            default SymbologyType is Code128,
            default CodeText is 12345678.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.#ctor(System.ComponentModel.IContainer)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeBuilder" /> class
            , default SymbologyType is Code128,
            default CodeText is 12345678.
            </summary>
      <param name="container">Add correct component to the container.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeBuilder" /> class with codetext
            , default SymbologyType is Code128.
            </summary>
      <param name="codeText">string text data to be encoded</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.#ctor(System.String,Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.BarCodeBuilder" /> class.
            </summary>
      <param name="codeText">string text data to be encoded</param>
      <param name="type">BarCode's type. Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> class to setup a symbology.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Dispose(System.Boolean)">
      <param name="disposing">true to release both managed and unmanaged resources; false to release only unmanaged resources.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GenerateBarCodeImage">
      <summary>
            Generate the BarCode image under current settings
            </summary>
      <returns>BarCode Image See <see cref="T:System.Drawing.Bitmap" />.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Rotate">
      <summary>
            Rotate barcode image clockwise for 90 degrees
            </summary>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Rotate(System.Single)">
      <summary>
            Rotate barcode image clockwise
            </summary>
      <param name="angle">Rotation Angle</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Rotate(Aspose.BarCode.RotationDirection,System.Single)">
      <summary>
            Rotate the barcode image
            </summary>
      <param name="direction">rotation direction</param>
      <param name="angle">rotation angle</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Print">
      <summary>
             Print BarCodeImage
             See <see cref="P:Aspose.BarCode.BarCodeBuilder.PrinterName" />.
             </summary>
      <example>
             This sample shows how to print barcode on default printer.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Pdf417;
                   builder.CodeText = "123456";
                   builder.Print();
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Pdf417
                   builder.CodeText = "123456"
                   builder.Print()
            	  End Using
            	</code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GetMinimumBarCodeSize">
      <summary>
             Returns the minimum width and height, in current <see cref="P:Aspose.BarCode.BarCodeBuilder.GraphicsUnit" />, of this BarCode.
             </summary>
      <returns>A <see cref="T:System.Drawing.SizeF" /> structure that represents the minimum width and height, in current <see cref="P:Aspose.BarCode.BarCodeBuilder.GraphicsUnit" />, of this BarCode.</returns>
      <example>
             This sample shows how to save barcode image with minimum size.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Code128;
                   builder.CodeText = "1234567890";
                   builder.GraphicsUnit = GraphicsUnit.Pixel;
                   SizeF minSize = builder.GetMinimumBarCodeSize();      
             
                   builder.AutoSize = false;
                   builder.ImageWidth = minSize.Width;
                   builder.ImageHeight = minSize.Height;
                   builder.Save("test.bmp")
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.Code128;
                   builder.CodeText = "1234567890"
                   builder.GraphicsUnit = GraphicsUnit.Pixel
                   Dim SizeF minSize = builder.GetMinimumBarCodeSize()      
             
                   builder.AutoSize = False
                   builder.ImageWidth = minSize.Width
                   builder.ImageHeight = minSize.Height
                   builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GetOnlyBarCodeImage">
      <summary>
            Gets the only barcode image. Requires license.
            </summary>
      <exception cref="T:Aspose.BarCode.BarCodeException">Throws exception if no license set.</exception>
      <returns>Image's bitmap.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GetOnlyBarCodeImage(System.Int32)">
      <summary>
            Gets the only barcode image. Requires license.
            </summary>
      <param name="scaleFactor">Minimal value of scale factor is 1. Not limited by the code.</param>
      <exception cref="T:Aspose.BarCode.BarCodeException">Throws exception if no license set.</exception>
      <returns>Image's bitmap.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GetCustomSizeBarCodeImage(System.Drawing.Size,System.Boolean)">
      <summary>
            Gets the scaled barcode image.
            </summary>
      <param name="customBarCodeSize">BarCode full image size. Default Graphics Unit: Millimeter.</param>
      <param name="allowSpaceAround">if set to <c>true</c> allow space around the barcode.</param>
      <returns>
            Image's bitmap.
            </returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.GetCustomSizeBarCodeImage(System.Single,System.Single,System.Boolean)">
      <summary>
            Gets the scaled barcode image.
            </summary>
      <param name="customBarCodeWidth">BarCode full image width. Default Graphics Unit: Millimeter.</param>
      <param name="customBarCodeHeight">BarCode full image height. Default Graphics Unit: Millimeter.</param>
      <param name="allowSpaceAround">if set to <c>true</c> allow space around the barcode.</param>
      <returns>
            Image's bitmap.
            </returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Save(System.IO.Stream,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save BarCodeImage to stream in specific format.
            </summary>
      <param name="stream">Output System.IO.Stream.</param>
      <param name="format">Specifies the file format of the output image.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.DrawWpf(System.Windows.Media.DrawingContext)">
      <summary>
            Draws barcode image on WPF canvas.
            </summary>
      <param name="context">WPF drawing context.</param>
      <returns>Actual image size</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Save(System.String,Aspose.BarCode.BarCodeImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="filename">Save to this file path.</param>
      <param name="format">Specifies the file format of the output image.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Save(System.String,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="filename">Save to this file path.</param>
      <param name="format">System.Drawing.Imaging.ImageFormat.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="stream">Output System.IO.Stream.</param>
      <param name="format">System.Drawing.Imaging.ImageFormat.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format.
            </summary>
      <param name="filename">Save to this file path.</param>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.ExportToXml(System.String)">
      <summary>
            Exports BarCode properties to the xml-file specified.
            </summary>
      <param name="xmlFile">The name for the file.</param>
      <returns>Whether or not export completed successfully.
             <para>Returns <b>True</b> in case of success; <b>False</b> Otherwise </para></returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.ImportFromXml(System.String)">
      <summary>
            Imports BarCode properties from the xml-file specified and applies them to the current BarCodeBuilder instance. 
            </summary>
      <param name="xmlFile">The name for the file.</param>
      <returns>Returns <b>True</b> in case of success; <para><b>False</b> Otherwise </para></returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.IsOverridedDimensionX">
      <summary>
            Check if x dimension is specified by the user
            </summary>
      <returns>
        <b>true</b>in case x dimension is specified by the user; <b>false</b> otherwise.</returns>
    </member>
    <member name="M:Aspose.BarCode.BarCodeBuilder.ToString">
      <summary>
            Overridden method representing BarCodeBuilder as a string.
            </summary>
      <returns>A string representing BarCodeBuilder instance with the following format: "BarCode: SymbologyType:CodeText" </returns>
    </member>
    <member name="T:Aspose.BarCode.BarCodeImageFormat">
      <summary>
            Specifies the file format of the image.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Bmp">
      <summary>
            Specifies the bitmap (BMP) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Gif">
      <summary>
            Specifies the Graphics Interchange Format (GIF) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Jpeg">
      <summary>
            Specifies the Joint Photographic Experts Group (JPEG) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Png">
      <summary>
            Specifies the W3C Portable Network Graphics (PNG) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Tiff">
      <summary>
            Specifies the Tagged Image File Format (TIFF) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.TiffInCmyk">
      <summary>
            Specifies the Tagged Image File Format (TIFF) image format in CMYK color model.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Emf">
      <summary>
            Specifies the Enhanced Metafile (EMF) image format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BarCodeImageFormat.Svg">
      <summary>
            Specifies the Scalable Vector Graphics (SVG) image format.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.BorderDashStyle">
      <summary>
            Specifies the style of dashed border lines.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BorderDashStyle.Solid">
      <summary>
            Specifies a solid line.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BorderDashStyle.Dash">
      <summary>
            Specifies a line consisting of dashes.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BorderDashStyle.Dot">
      <summary>
            Specifies a line consisting of dots.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BorderDashStyle.DashDot">
      <summary>
            Specifies a line consisting of a repeating pattern of dash-dot.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BorderDashStyle.DashDotDot">
      <summary>
            Specifies a line consisting of a repeating pattern of dash-dot-dot.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Caption">
      <summary>
            The text caption shown in the barcode image. There are two captions: CaptionBelow and CaptionAbove
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Caption.Copy">
      <summary>
            Get a new copy of the caption instance.
            </summary>
      <returns>The new copy of the instance.</returns>
    </member>
    <member name="M:Aspose.BarCode.Caption.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Caption" /> class with default vaule.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Caption.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Caption" /> class with specified text. 
            </summary>
      <param name="text">The text content of the caption object</param>
    </member>
    <member name="M:Aspose.BarCode.Caption.#ctor(System.String,System.Boolean,System.Drawing.StringAlignment,System.Single,System.Drawing.Color,System.Drawing.Font)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Caption" /> class.
            </summary>
      <param name="text">The context of the caption.</param>
      <param name="visible">Indicates whether the caption is visible.</param>
      <param name="alignment">The alignment of the text in the caption.</param>
      <param name="space">The amount of space in the caption.</param>
      <param name="color">The forecolor of the text in the caption.</param>
      <param name="font">The font of the text in the caption.</param>
    </member>
    <member name="P:Aspose.BarCode.Caption.Visible">
      <summary>
            Gets or sets a value indicates whether the <see cref="T:Aspose.BarCode.Caption">caption</see> is visible. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Caption.ForeColor">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Color">forecolor</see> of the <see cref="T:Aspose.BarCode.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Caption.Font">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Font">font</see> of the <see cref="T:Aspose.BarCode.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Caption.Space">
      <summary>
            Gets or sets the space between the caption and the barcode,
            and the space between border and the caption
            </summary>
      <remarks>
            The measure unit of the <b>space</b> for the caption is indicated by the <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            </remarks>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Caption.TextAlign">
      <summary>
            Gets or sets the text alignment of the caption.
            e.g. when the text is writing from left to right, StringAlignment.Near means the Caption will be aligned to the left
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Caption.Text">
      <summary>
            Gets or sets the content of the caption.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Caption.Dispose">
      <summary>
            Dispose the Caption instance
            </summary>
    </member>
    <member name="T:Aspose.BarCode.CodabarChecksumMode">
      <summary>
            Specifies the checksum algorithm for Codabar
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarChecksumMode.Mod10">
      <summary>
            Specifies Mod 10 algorithm for Codabar.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarChecksumMode.Mod16">
      <summary>
            Specifies Mod 16 algorithm for Codabar (recomended AIIM).
            </summary>
    </member>
    <member name="T:Aspose.BarCode.CodabarSymbol">
      <summary>
            Specifies the start or stop symbol of the Codabar barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarSymbol.A">
      <summary>
            Specifies character A as the start or stop symbol of the Codabar barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarSymbol.B">
      <summary>
            Specifies character B as the start or stop symbol of the Codabar barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarSymbol.C">
      <summary>
            Specifies character C as the start or stop symbol of the Codabar barcode specification.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodabarSymbol.D">
      <summary>
            Specifies character D as the start or stop symbol of the Codabar barcode specification.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.CodeLocation">
      <summary>
            Specifies the location of the code text shown in the image.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodeLocation.Above">
      <summary>
            Specifies that the code text is shown on the top of the bar code.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodeLocation.Below">
      <summary>
            Specifies that the code text is shown on the bottom of the bar code.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodeLocation.None">
      <summary>
            Specifies that the code text is hidden. 
            </summary>
    </member>
    <member name="F:Aspose.BarCode.CodeLocation.Right">
      <summary>
            Specifies that the code text is shown on the right of the bar code.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.DataMatrixEccType">
      <summary>
            Specify the type of the ECC to encode.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.EccAuto">
      <summary>
            Specifies that encoded Ecc type is defined by default Reed-Solomon error correction or ECC 200.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc000">
      <summary>
            Specifies that encoded Ecc type is defined ECC 000.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc050">
      <summary>
            Specifies that encoded Ecc type is defined ECC 050.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc080">
      <summary>
            Specifies that encoded Ecc type is defined ECC 080.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc100">
      <summary>
            Specifies that encoded Ecc type is defined ECC 100.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc140">
      <summary>
            Specifies that encoded Ecc type is defined ECC 140.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEccType.Ecc200">
      <summary>
            Specifies that encoded Ecc type is defined ECC 200. Recommended to use.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.DataMatrixEncodeMode">
      <summary>
            DataMatrix encoder's encoding mode, default to Auto
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.Auto">
      <summary>
            Automatically pick up the best encode mode for Datamatrix encoding
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.ASCII">
      <summary>
            Encodes one alphanumeric or two numeric characters per byte
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.Full">
      <summary>
            Encode 8 bit values
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.Custom">
      <summary>
            Encode with the encoding specified in BarCodeBuilder.CodeTextEncoding
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.C40">
      <summary>
            Uses C40 encoding. Encodes Upper-case alphanumeric, Lower case and special characters
            </summary>
    </member>
    <member name="F:Aspose.BarCode.DataMatrixEncodeMode.Text">
      <summary>
            Uses Text encoding. Encodes Lower-case alphanumeric, Upper case and special characters
            </summary>
    </member>
    <member name="T:Aspose.BarCode.ECIEncodings">
      <summary>
        <para>
             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.
             </para>
      </summary>
      <example>
             This sample shows how to use ECI encoding and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR;
                   builder.CodeText = "12345TEXT";
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR;
                   builder.ECIEncoding = ECIEncodings.UTF8;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR
                   builder.CodeText = "12345TEXT"
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR
                   builder.ECIEncoding = ECIEncodings.UTF8
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_1">
      <summary>ISO/IEC 8859-1 Latin alphabet No. 1 encoding. ECI Id:"\000003"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_2">
      <summary>ISO/IEC 8859-2 Latin alphabet No. 2 encoding. ECI Id:"\000004"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_3">
      <summary>ISO/IEC 8859-3 Latin alphabet No. 3 encoding. ECI Id:"\000005"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_4">
      <summary>ISO/IEC 8859-4 Latin alphabet No. 4 encoding. ECI Id:"\000006"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_5">
      <summary>ISO/IEC 8859-5 Latin/Cyrillic alphabet encoding. ECI Id:"\000007"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_6">
      <summary>ISO/IEC 8859-6 Latin/Arabic alphabet encoding. ECI Id:"\000008"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_7">
      <summary>ISO/IEC 8859-7 Latin/Greek alphabet encoding. ECI Id:"\000009"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_8">
      <summary>ISO/IEC 8859-8 Latin/Hebrew alphabet encoding. ECI Id:"\000010"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_9">
      <summary>ISO/IEC 8859-9 Latin alphabet No. 5 encoding. ECI Id:"\000011"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_10">
      <summary>ISO/IEC 8859-10 Latin alphabet No. 6 encoding. ECI Id:"\000012"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_11">
      <summary>ISO/IEC 8859-11 Latin/Thai alphabet encoding. ECI Id:"\000013"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_13">
      <summary>ISO/IEC 8859-13 Latin alphabet No. 7 (Baltic Rim) encoding. ECI Id:"\000015"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_14">
      <summary>ISO/IEC 8859-14 Latin alphabet No. 8 (Celtic) encoding. ECI Id:"\000016"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_15">
      <summary>ISO/IEC 8859-15 Latin alphabet No. 9 encoding. ECI Id:"\000017"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.ISO_8859_16">
      <summary>ISO/IEC 8859-16 Latin alphabet No. 10 encoding. ECI Id:"\000018"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Shift_JIS">
      <summary>Shift JIS (JIS X 0208 Annex 1 + JIS X 0201) encoding. ECI Id:"\000020"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Win1250">
      <summary>Windows 1250 Latin 2 (Central Europe) encoding. ECI Id:"\000021"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Win1251">
      <summary>Windows 1251 Cyrillic encoding. ECI Id:"\000022"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Win1252">
      <summary>Windows 1252 Latin 1 encoding. ECI Id:"\000023"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Win1256">
      <summary>Windows 1256 Arabic encoding. ECI Id:"\000024"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.UTF16BE">
      <summary>ISO/IEC 10646 UCS-2 (High order byte first) encoding. ECI Id:"\000025"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.UTF8">
      <summary>ISO/IEC 10646 UTF-8 encoding. ECI Id:"\000026"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.US_ASCII">
      <summary>ISO/IEC 646:1991 International Reference Version of ISO 7-bit coded character set encoding. ECI Id:"\000027"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.Big5">
      <summary>Big 5 (Taiwan) Chinese Character Set encoding. ECI Id:"\000028"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.GB18030">
      <summary>GB (PRC) Chinese Character Set encoding. ECI Id:"\000029"</summary>
    </member>
    <member name="F:Aspose.BarCode.ECIEncodings.EUC_KR">
      <summary>Korean Character Set encoding. ECI Id:"\000030"</summary>
    </member>
    <member name="T:Aspose.BarCode.EnableChecksum">
      <summary>
        <para>Enable checksum during generation for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
    </member>
    <member name="F:Aspose.BarCode.EnableChecksum.Default">
      <summary>
            If checksum is required by the specification - it will be attached.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.EnableChecksum.Yes">
      <summary>
            Always use checksum if possible.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.EnableChecksum.No">
      <summary>
            Do not use checksum.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.IBarCodeControl">
      <summary>
            IBarCodeControl
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.ImageWidth">
      <summary>
            BarCode image's width.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.ImageHeight">
      <summary>
            BarCode image's height.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BarCodeImage">
      <summary>
            Get the BarCode image under current settings.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.xDimension">
      <summary>
            x-dimension, smallest width unit of BarCode's bars or spaces.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.yDimension">
      <summary>
            y-dimension
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BackColor">
      <summary>
            Background color of the barcode image.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.ForeColor">
      <summary>
            Foreground color of the barcode image, that is, 
            Bar's color of 1D barcode, Module's color of 2D barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.AutoSize">
      <summary>
            Gets or sets a value indicating whether the image size is to be adjusted automatically. Recommended value is <b> true</b>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.RotationAngleF">
      <summary>
            BarCode image's rotation angle, measured in degree, e.g. RotationAngleF = 0 or RotationAngleF = 360 means no rotation
            If RotationAngleF NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image, please set quality mode to anti-alias
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.GraphicsUnit">
      <summary>
            Measurement of various properties such as Width, Height etc. 
            Default GraphicsUnit: Millimeter
            See <see cref="T:System.Drawing.GraphicsUnit" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BorderVisible">
      <summary>
            BorderVisible
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BorderDashStyle">
      <summary>
            BorderDashStyle
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BorderWidth">
      <summary>
            BorderWidth
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BorderColor">
      <summary>
            BorderColor
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CaptionAbove">
      <summary>
            CaptionAbove
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CaptionBelow">
      <summary>
            CaptionBelow
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Margins">
      <summary>
            Margin area around the core BarCode image.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Resolution">
      <summary>
            Resolution
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeText">
      <summary>
            Data to be encoded, different types of BarCode may have different CodeText length restrictions.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Display2DText">
      <summary>
            Display2DText
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Pdf417Truncate">
      <summary>
            Pdf417Truncate
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Pdf417ErrorLevel">
      <summary>
            Pdf417ErrorLevel
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Pdf417CompactionMode">
      <summary>
            Pdf417CompactionMode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.AspectRatio">
      <summary>
            AspectRatio
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically
            appliable SymbologyType: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.EnableEscape">
      <summary>
            EnableEscape
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.EnableChecksum">
      <summary>
            EnableChecksum
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CustomerInformationInterpretingType">
      <summary>
            CustomerInformationInterpretingType
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.BarHeight">
      <summary>
            height of 1D barcodes' bars.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.WideNarrowRatio">
      <summary>
            WideNarrowRatio
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeTextColor">
      <summary>
            CodeTextColor
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeLocation">
      <summary>
            CodeLocation
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeTextAlignment">
      <summary>
            CodeTextAlignment
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeTextSpace">
      <summary>
            CodeTextSpace
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodabarStartSymbol">
      <summary>
            CodabarStartSymbol
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodabarStopSymbol">
      <summary>
            CodabarStopSymbol
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.CodeTextFont">
      <summary>
            CodeTextFont
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.SupplementData">
      <summary>
            SupplementData
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.SupplementSpace">
      <summary>
            SupplementSpace
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.ImageQuality">
      <summary>
            ImageQuality
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.PostnetShortBarHeight">
      <summary>
            PostnetShortBarHeight
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.PlanetShortBarHeight">
      <summary>
            PlanetShortBarHeight
            </summary>
    </member>
    <member name="P:Aspose.BarCode.IBarCodeControl.TextRenderingHint">
      <summary>
            TextRenderingHint
            </summary>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Rotate">
      <summary>
            Rotate barcode image clockwise for 90 degrees
            </summary>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Rotate(System.Single)">
      <summary>
            Rotate barcode image clockwise
            </summary>
      <param name="angle">Rotation Angle</param>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Rotate(Aspose.BarCode.RotationDirection,System.Single)">
      <summary>
            Rotate the barcode image
            </summary>
      <param name="direction">rotation direction</param>
      <param name="angle">rotation angle</param>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="stream">System.IO.Stream</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="M:Aspose.BarCode.IBarCodeControl.Save(System.String,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="T:Aspose.BarCode.ImageQualityMode">
      <summary>
            Specifies the quality of the created barcode image. Only applicable to Jpeg format, such as save as .jpg files
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ImageQualityMode.Default">
      <summary>
            Specifies No anti-aliasing image rendering.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ImageQualityMode.AntiAlias">
      <summary>
            Specifies Anti-aliased image rendering. Much better quality due to anti-aliasing, but at a higher performance cost.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.ITF14BorderType">
      <summary>
            ITF14 border type of barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ITF14BorderType.None">
      <summary>
            No border enclosing the barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ITF14BorderType.Frame">
      <summary>
            Frame enclosing the barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ITF14BorderType.Bar">
      <summary>
            Two horizontal bars enclosing the barcode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ITF14BorderType.FrameOut">
      <summary>
            Frame enclosing the barcode. It drawn outside of the barcode, and does not affect the height
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ITF14BorderType.BarOut">
      <summary>
            Two horizontal bars enclosing the barcode. It drawn outside of the barcode, and does not affect the height
            </summary>
    </member>
    <member name="T:Aspose.BarCode.MarginsF">
      <summary>
            Specifies the margins of a barcode image.
            </summary>
      <remarks>
        <p>This class is used to manipulate margins in barcode image.</p>
        <p>
          <b>
            <I>Note</I>
          </b>: The actual amount of the margins are determined by the specified mesure <see cref="T:System.Drawing.GraphicsUnit">unit</see> of the barcode image.</p>
        <p>
          <see cref="P:Aspose.BarCode.MarginsF.Left">Left</see>, <see cref="P:Aspose.BarCode.MarginsF.Right">Right</see>, <see cref="P:Aspose.BarCode.MarginsF.Top">Top</see>, and <see cref="P:Aspose.BarCode.MarginsF.Bottom">Bottom</see> are properties that define the margins.</p>
        <p>
          <see cref="M:Aspose.BarCode.MarginsF.Equals(System.Object)">Equals</see> determines if another object is equal to a <b>MarginsF</b> object.</p>
      </remarks>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.MarginsF" /> class with 0 margins.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.#ctor(System.Single,System.Single,System.Single,System.Single)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.MarginsF" /> class with specified left, right, top, bottom marigns. 
            </summary>
      <param name="left">The Left marign.</param>
      <param name="right">The right marign.</param>
      <param name="top">The top marign.</param>
      <param name="bottom">The bottom marign.</param>
      <exception cref="T:System.ArgumentException">
        <p>The left parameter value is less than 0.</p>
        <p>-or-</p>
        <p>The right parameter value is less than 0.</p>
        <p>-or-</p>
        <p>The top parameter value is less than 0.</p>
        <p>-or-</p>
        <p>The bottom parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.Set(System.Single)">
      <summary>
            Sets the specified margin for all sides.
            </summary>
      <param name="margin">The margin for all sides.</param>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.Set(System.Single,System.Single,System.Single,System.Single)">
      <summary>
            Sets the specified margins.
            </summary>
      <param name="left">The left side.</param>
      <param name="right">The right side.</param>
      <param name="top">The top side.</param>
      <param name="bottom">The bottom side.</param>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.Equals(System.Object)">
      <summary>
            Determines whether two <see cref="T:Aspose.BarCode.MarginsF">MarginsF</see> instances are equal.
            </summary>
      <param name="obj">The <see cref="T:Aspose.BarCode.MarginsF">MarginsF</see> instance on the left</param>
      <returns>
        <b>true</b> if the left <see cref="T:Aspose.BarCode.MarginsF">MarginsF</see> instances is equal to the right one; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.GetHashCode">
      <summary>
            Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
            </summary>
      <returns>A hash code for the current Object.</returns>
    </member>
    <member name="M:Aspose.BarCode.MarginsF.ToString">
      <summary>
            Returns a String that represents the current <see cref="T:Aspose.BarCode.MarginsF">MarginsF</see> instance.
            </summary>
      <returns>A <see cref="T:System.String">String</see> that represents the current Object.</returns>
    </member>
    <member name="P:Aspose.BarCode.MarginsF.Bottom">
      <summary>
            Gets or sets the <b>bottom</b> marign.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>bottom</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.MarginsF.Left">
      <summary>
            Gets or sets the <b>left</b> margin.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Left</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.MarginsF.Right">
      <summary>
            Gets or sets the <b>right</b> margin.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Right</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.MarginsF.Top">
      <summary>
            Gets or sets the <b>top</b> marign.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Top</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="T:Aspose.BarCode.Pdf417CompactionMode">
      <summary>
            Pdf417 barcode compaction mode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417CompactionMode.Auto">
      <summary>
            auto detect compaction mode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417CompactionMode.Text">
      <summary>
            text compaction
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417CompactionMode.Numeric">
      <summary>
            numeric compaction mode
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417CompactionMode.Binary">
      <summary>
            binary compaction mode
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Pdf417ErrorLevel">
      <summary>
            pdf417 barcode's error correction level, from level 0 to level 9, level 0 means no error correction, level 9 means best error correction
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level0">
      <summary>
            level = 0.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level1">
      <summary>
            level = 1.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level2">
      <summary>
            level = 2.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level3">
      <summary>
            level = 3.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level4">
      <summary>
            level = 4.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level5">
      <summary>
            level = 5.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level6">
      <summary>
            level = 6.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level7">
      <summary>
            level = 7.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Pdf417ErrorLevel.Level8">
      <summary>
            level = 8.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.QREncodeMode">
      <summary>
            Encoding mode for QR barcodes. It is recommended to Use Auto with CodeTextEncoding = Encoding.UTF8 for Latin symbols or digits and Utf8BOM for Unicode symbols.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.Auto">
      <summary>
            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.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.Bytes">
      <summary>
            Encode codetext as plain bytes. If it detects any Unicode character, the character will be encoded as two bytes, lower byte first.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.Utf8BOM">
      <summary>
            Encode codetext with UTF8 encoding with first ByteOfMark character.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.Utf16BEBOM">
      <summary>
            Encode codetext with UTF8 encoding with first ByteOfMark character. It can be problems with some barcode scanners.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.ECIEncoding">
      <summary>
             Encode codetext with value set in the ECIEncoding property. It can be problems with some old (pre 2006) barcode scanners.
             </summary>
      <example>
             This sample shows how to use ECI encoding and save a BarCode image.
             <code>
             [C#]
            	  using(Aspose.BarCode.BarCodeBuilder builder = new Aspose.BarCode.BarCodeBuilder())
            	  {
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR;
                   builder.CodeText = "12345TEXT";
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR;
                   builder.ECIEncoding = ECIEncodings.UTF8;
                   builder.Save("test.bmp");
               }
            
            	[VB.NET]
            	  Using builder As Aspose.BarCode.BarCodeBuilder = new Aspose.BarCode.BarCodeBuilder()
                   builder.EncodeType = Aspose.BarCode.EncodeTypes.QR
                   builder.CodeText = "12345TEXT"
                   builder.QREncodeMode = QREncodeMode.ECIEncoding;
                   builder.QREncodeType = QREncodeType.ForceQR
                   builder.ECIEncoding = ECIEncodings.UTF8
            	      builder.Save("test.bmp")
            	  End Using
            	</code></example>
    </member>
    <member name="F:Aspose.BarCode.QREncodeMode.ExtendedCodetext">
      <summary>
        <para>Extended Channel mode which supports FNC1 first position, FNC1 second position and multi ECI modes.</para>
        <para>It is better to use QrExtCodetextBuilder for extended codetext generation.</para>
        <para>Use Display2DText property to set visible text to removing managing characters.</para>
        <para>Encoding Principles:</para>
        <para>All symbols "\" must be doubled "\\" in the codetext.</para>
        <para>FNC1 in first position is set in codetext as as "&lt;FNC1&gt;"</para>
        <para>FNC1 in second position is set in codetext as as "&lt;FNC1(value)&gt;". The value must be single symbols (a-z, A-Z) or digits from 0 to 99.</para>
        <para>Group Separator for FNC1 modes is set as 0x1D character '\\u001D' </para>
        <para> If you need to insert "&lt;FNC1&gt;" string into barcode write it as "&lt;\FNC1&gt;" </para>
        <para>ECI identifiers are set as single slash and six digits identifier "\000026" - UTF8 ECI identifier</para>
        <para>TO disable current ECI mode and convert to default JIS8 mode zero mode ECI indetifier is set. "\000000"</para>
        <para>All unicode characters after ECI identifier are automatically encoded into correct character codeset.</para>
      </summary>
      <example>
            This sample shows how to use FNC1 first position in Extended Mode.
            <code>
            [C#]
            //create codetext
            QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder();
            lTextBuilder.AddFNC1FirstPosition();
            lTextBuilder.AddPlainCodetext("000%89%%0");
            lTextBuilder.AddFNC1GroupSeparator();
            lTextBuilder.AddPlainCodetext("12345&lt;FNC1&gt;");
            
            //generate codetext
            string lCodetext = lTextBuilder.GetExtendedCodetext();
            
            //generate
            using(BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
      <example>
            This sample shows how to use FNC1 second position in Extended Mode.
            <code>
            [C#]
            //create codetext
            QrExtCodetextBuilder lTextBuilder = new QrExtCodetextBuilder();
            TextBuilder.AddFNC1SecondPosition("12");
            TextBuilder.AddPlainCodetext("TRUE3456"); 
            
            //generate codetext
            string lCodetext = lTextBuilder.GetExtendedCodetext();
            
            //generate
            using(BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
      <example>
            This sample shows how to use multi ECI mode in Extended Mode.
            <code>
            [C#]
            //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
            using (BarCodeBuilder builder = new BarCodeBuilder())
            {
            	builder.SymbologyType = Symbology.QR;
            	builder.QREncodeMode = QREncodeMode.ExtendedCodetext;
            	builder.QRErrorLevel = QRErrorLevel.LevelL;
            	builder.CodeText = lCodetext;
            	builder.Display2DText = "My Text";
            	builder.Save("test.bmp");
            }
            </code></example>
    </member>
    <member name="T:Aspose.BarCode.QREncodeType">
      <summary>
            QR / MicroQR selector mode. Select ForceQR for standard QR symbols, Auto for MicroQR.
            ForceMicroQR is used for strongly MicroQR symbol generation if it is possible.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeType.Auto">
      <summary>
            Mode starts barcode version negotiation from MicroQR V1
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeType.ForceQR">
      <summary>
            Mode starts barcode version negotiation from QR V1
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QREncodeType.ForceMicroQR">
      <summary>
            Mode starts barcode version negotiation from from MicroQR V1 to V4. If data cannot be encoded into MicroQR, exception is thrown.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.QRErrorLevel">
      <summary>
            Level of Reed-Solomon error correction. From low to high: LevelL, LevelM, LevelQ, LevelH.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRErrorLevel.LevelL">
      <summary>
            Allows recovery of 7% of the code text
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRErrorLevel.LevelM">
      <summary>
            Allows recovery of 15% of the code text
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRErrorLevel.LevelQ">
      <summary>
            Allows recovery of 25% of the code text
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRErrorLevel.LevelH">
      <summary>
            Allows recovery of 30% of the code text
            </summary>
    </member>
    <member name="T:Aspose.BarCode.QRVersion">
      <summary>
            Version of QR Code.
            From Version1 to Version40 for QR code and from M1 to M4 for MicroQr.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Auto">
      <summary>
            Specifies to automatically pick up the best version for QR.
            This is default value.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version01">
      <summary>
            Specifies version 1 with 21 x 21 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version02">
      <summary>
            Specifies version 2 with 25 x 25 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version03">
      <summary>
            Specifies version 3 with 29 x 29 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version04">
      <summary>
            Specifies version 4 with 33 x 33 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version05">
      <summary>
            Specifies version 5 with 37 x 37 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version06">
      <summary>
            Specifies version 6 with 41 x 41 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version07">
      <summary>
            Specifies version 7 with 45 x 45 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version08">
      <summary>
            Specifies version 8 with 49 x 49 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version09">
      <summary>
            Specifies version 9 with 53 x 53 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version10">
      <summary>
            Specifies version 10 with 57 x 57 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version11">
      <summary>
            Specifies version 11 with 61 x 61 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version12">
      <summary>
            Specifies version 12 with 65 x 65 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version13">
      <summary>
            Specifies version 13 with 69 x 69 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version14">
      <summary>
            Specifies version 14 with 73 x 73 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version15">
      <summary>
            Specifies version 15 with 77 x 77 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version16">
      <summary>
            Specifies version 16 with 81 x 81 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version17">
      <summary>
            Specifies version 17 with 85 x 85 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version18">
      <summary>
            Specifies version 18 with 89 x 89 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version19">
      <summary>
            Specifies version 19 with 93 x 93 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version20">
      <summary>
            Specifies version 20 with 97 x 97 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version21">
      <summary>
            Specifies version 21 with 101 x 101 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version22">
      <summary>
            Specifies version 22 with 105 x 105 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version23">
      <summary>
            Specifies version 23 with 109 x 109 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version24">
      <summary>
            Specifies version 24 with 113 x 113 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version25">
      <summary>
            Specifies version 25 with 117 x 117 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version26">
      <summary>
            Specifies version 26 with 121 x 121 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version27">
      <summary>
            Specifies version 27 with 125 x 125 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version28">
      <summary>
            Specifies version 28 with 129 x 129 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version29">
      <summary>
            Specifies version 29 with 133 x 133 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version30">
      <summary>
            Specifies version 30 with 137 x 137 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version31">
      <summary>
            Specifies version 31 with 141 x 141 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version32">
      <summary>
            Specifies version 32 with 145 x 145 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version33">
      <summary>
            Specifies version 33 with 149 x 149 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version34">
      <summary>
            Specifies version 34 with 153 x 153 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version35">
      <summary>
            Specifies version 35 with 157 x 157 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version36">
      <summary>
            Specifies version 36 with 161 x 161 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version37">
      <summary>
            Specifies version 37 with 165 x 165 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version38">
      <summary>
            Specifies version 38 with 169 x 169 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version39">
      <summary>
            Specifies version 39 with 173 x 173 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.Version40">
      <summary>
            Specifies version 40 with 177 x 177 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.VersionM1">
      <summary>
            Specifies version M1 for Micro QR with 11 x 11 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.VersionM2">
      <summary>
            Specifies version M2 for Micro QR with 13 x 13 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.VersionM3">
      <summary>
            Specifies version M3 for Micro QR with 15 x 15 modules.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.QRVersion.VersionM4">
      <summary>
            Specifies version M4 for Micro QR with 17 x 17 modules.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Resolution">
      <summary>
            The resolution information of the barcode image
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Resolution.DpiX">
      <summary>
            Gets or sets the horizontal resolution 
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>DpiX</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Resolution.DpiY">
      <summary>
            Gets or sets the vertical resolution
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>DpiY</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Resolution.Mode">
      <summary>
            Gets or sets the <see cref="T:Aspose.BarCode.ResolutionMode">mode</see> of the resolution
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Resolution.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Resolution" /> class.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Resolution.#ctor(System.Single,System.Single,Aspose.BarCode.ResolutionMode)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Resolution" /> class.
            </summary>
      <param name="dpix">The horizontal resolution.</param>
      <param name="dpiy">The vertical resolution.</param>
      <param name="mode">The <see cref="T:Aspose.BarCode.ResolutionMode">ResolutionMode</see>.</param>
    </member>
    <member name="M:Aspose.BarCode.Resolution.ToString">
      <summary>
            Returns a String that represents the current <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance.
            </summary>
      <returns>A <see cref="T:System.String">String</see> that represents the current Object.</returns>
    </member>
    <member name="M:Aspose.BarCode.Resolution.op_Equality(Aspose.BarCode.Resolution,Aspose.BarCode.Resolution)">
      <summary>
            Determines whether two <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances are equal.
            </summary>
      <param name="left">The <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance on the left</param>
      <param name="right">The <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance on the right</param>
      <returns>
        <b>true</b> if the left <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances is equal to the right one; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Resolution.op_Inequality(Aspose.BarCode.Resolution,Aspose.BarCode.Resolution)">
      <summary>
            Determines whether two <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances are not equal.
            </summary>
      <param name="left">The <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance on the left</param>
      <param name="right">The <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance on the right</param>
      <returns>
        <b>false</b> if the left <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances is equal to the right one; otherwise, <b>true</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Resolution.Equals(System.Object)">
      <summary>
            Determines whether two <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances are equal.
            </summary>
      <param name="obj">The <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instance on the left</param>
      <returns>
        <b>true</b> if the left <see cref="T:Aspose.BarCode.Resolution">Resolution</see> instances is equal to the right one; otherwise, <b>false</b>.</returns>
    </member>
    <member name="M:Aspose.BarCode.Resolution.GetHashCode">
      <summary>
            Serves as a hash function for a particular type, suitable for use in hashing algorithms and data structures like a hash table.
            </summary>
      <returns>A hash code for the current Object.</returns>
    </member>
    <member name="T:Aspose.BarCode.ResolutionMode">
      <summary>
            Specifies the resolution mode used to create barcode image.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ResolutionMode.Graphics">
      <summary>
             Apply the resolution of the barcode image according to the resolution of the specified Graphics object.		
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ResolutionMode.Customized">
      <summary>
             Apply the resolution of the barcode image according to the user defined DpiX and DpiY properties.		
            </summary>
    </member>
    <member name="F:Aspose.BarCode.ResolutionMode.Printer">
      <summary>
             Apply the resolution of the barcode image according to the resolution of the specified printer.		 
            </summary>
    </member>
    <member name="T:Aspose.BarCode.RotationDirection">
      <summary>
            Rotation Direction, must be the following: Clockwise or AntiClockwise
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RotationDirection.Clockwise">
      <summary>
            clock wise rotate
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RotationDirection.AntiClockwise">
      <summary>
            anti clockwise rotate
            </summary>
    </member>
    <!-- Badly formed XML comment ignored for member "P:Aspose.BarCode.VisualParameters_Old.ActualImageWidth" -->
    <member name="T:Aspose.BarCode.License">
      <summary>
            Provides methods to license the component.
            </summary>
      <example>
            In this example, an attempt will be made to find a license file named MyLicense.lic
            in the folder that contains 
            the component, in the folder that contains the calling assembly,
            in the folder of the entry assembly and then in the embedded resources of the calling assembly.
            <code>
            [C#]
            
            License license = new License();
            license.SetLicense("MyLicense.lic");
            
            
            [Visual Basic]
            
            Dim license As license = New license
            License.SetLicense("MyLicense.lic")
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.License.SetLicense(System.String)">
      <summary>
            Licenses the component.
            </summary>
      <remarks>
        <p>Tries to find the license in the following locations:</p>
        <p>1. Explicit path.</p>
        <p>2. The folder that contains the Aspose component assembly.</p>
        <p>3. The folder that contains the client's calling assembly.</p>
        <p>4. The folder that contains the entry (startup) assembly.</p>
        <p>5. An embedded resource in the client's calling assembly.</p>
        <p>
          <b>Note:</b>On the .NET Compact Framework, tries to find the license only in these locations:</p>
        <p>1. Explicit path.</p>
        <p>2. An embedded resource in the client's calling assembly.</p>
      </remarks>
      <example>
            In this example, an attempt will be made to find a license file named MyLicense.lic
            in the folder that contains 
            the component, in the folder that contains the calling assembly,
            in the folder of the entry assembly and then in the embedded resources of the calling assembly.
            <code>
            [C#]
            
            License license = new License();
            license.SetLicense("MyLicense.lic");
            
            
            [Visual Basic]
            
            Dim license As License = New License
            license.SetLicense("MyLicense.lic")
            </code><param name="licenseName">Can be a full or short file name or name of an embedded resource.
            Use an empty string to switch to evaluation mode.</param></example>
    </member>
    <member name="P:Aspose.BarCode.License.IsLicensed">
      <summary>
            Gets a value indicating whether product is licensed.
            </summary>
      <value>
        <c>true</c> if product is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="M:Aspose.BarCode.License.SetLicense(System.IO.Stream)">
      <summary>
            Licenses the component.
            </summary>
      <param name="stream">A stream that contains the license.</param>
      <remarks>
        <p>Use this method to load a license from a stream.</p>
      </remarks>
      <example>
        <code>
            [C#]
            
            License license = new License();
            license.SetLicense(myStream);
            
            
            [Visual Basic]
            
            Dim license as License = new License
            license.SetLicense(myStream)
            </code>
      </example>
    </member>
    <member name="T:Aspose.BarCode.Metered">
      <summary>
            Provides methods to set metered key.
            </summary>
      <example>
            In this example, an attempt will be made to set metered public and private key
            <code>
            [C#]
            
            Metered matered = new Metered();
            matered.SetMeteredKey("PublicKey", "PrivateKey");
            
            
            [Visual Basic]
            
            Dim matered As Metered = New Metered
            matered.SetMeteredKey("PublicKey", "PrivateKey")
            </code></example>
    </member>
    <member name="M:Aspose.BarCode.Metered.SetMeteredKey(System.String,System.String)">
      <summary>
            Sets metered public and private key
            </summary>
      <param name="publicKey">public key</param>
      <param name="privateKey">private key</param>
    </member>
    <member name="M:Aspose.BarCode.Metered.GetConsumptionQuantity">
      <summary>
            Gets consumption quantity
            </summary>
      <returns>consumption quantity</returns>
    </member>
    <member name="T:Aspose.BarCode.BuildVersionInfo">
      <summary>
            Contains the current build version information.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.AssemblyVersion">
      <summary>
            The assembly version.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.FileVersion">
      <summary>
            The file version.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.Product">
      <summary>
            The product title.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.ProductMajor">
      <summary>
            The major product version.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.ProductMinor">
      <summary>
            The minor product version.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.BuildVersionInfo.ReleaseDate">
      <summary>
            The product release date.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Web.BarCodeImageHandler">
      <summary>
            Defines the contract that ASP.NET implements to synchronously process HTTP Web requests using custom HTTP handlers.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.BarCodeImageHandler.#ctor">
      <summary>
            Initializes a new instance of the BarCodeImageHandler class.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.BarCodeImageHandler.ProcessRequest(System.Web.HttpContext)">
      <summary>
            Processes the request.
            </summary>
      <param name="c">Encapsulates all HTTP-specific information about an individual HTTP request.</param>
    </member>
    <member name="P:Aspose.BarCode.Web.BarCodeImageHandler.IsReusable">
      <summary>
            Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler" /> instance.
            </summary>
      <returns>true if the <see cref="T:System.Web.IHttpHandler" /> instance is reusable; otherwise, false.
              </returns>
    </member>
    <member name="T:Aspose.BarCode.Web.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.Web</b> contains the ASP.NET contract to synchronously process HTTP Web requests.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Web.UI.Design.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.Web.Design</b> contains the designers for Web server controls.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Web.UI.Design.BarCodeWebCtrlDesigner">
      <summary>
            This class provides design-time rendering for a Web server control by acting as a mediator between the run-time control
            and the host environment.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.Design.BarCodeWebCtrlDesigner.PostFilterAttributes(System.Collections.IDictionary)">
      <summary>
            Allows a designer to change or remove items from the set of attributes that it exposes through a <see cref="T:System.ComponentModel.TypeDescriptor" />.
            </summary>
      <param name="attributes">The attributes for the class of the component.</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.Design.BarCodeWebCtrlDesigner.Initialize(System.ComponentModel.IComponent)">
      <summary>
            Initializes the specified component.
            </summary>
      <param name="component">The component.</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.Design.BarCodeWebCtrlDesigner.GetDesignTimeHtml">
      <summary>
            Gets the design time HTML.
            </summary>
      <returns>Html presentation to be used in design time</returns>
    </member>
    <member name="T:Aspose.BarCode.Web.UI.BarCodeWebControl">
      <summary>
            BarCode Web Control, Goto your toolbox's panel and add BarCode.dll,
            then BarCodeWebControl will appear, just drag and drop it to your 
            web form.
            supported symbology: 
            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:
            DataMatrix, PDf417, QR code
            
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Web.UI.BarCodeWebControl" /> class.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.#ctor(System.Web.UI.HtmlTextWriterTag)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Web.UI.BarCodeWebControl" /> class and renders
            it as a SPAN tag.
            </summary>
      <param name="tag">One of the HtmlTextWriterTag values. </param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.#ctor(System.String)">
      <summary>
        <para> 
                  Initializes a new instance of the <see cref="T:Aspose.BarCode.Web.UI.BarCodeWebControl" /> class and renders
                  it as the specified tag. 
               </para>
      </summary>
      <param name="tag">One of the HtmlTextWriterTag values. </param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.#ctor(System.String,Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Web.UI.BarCodeWebControl" /> class.
            </summary>
      <param name="codeText">data to be encoded</param>
      <param name="encodeType">type of barcode</param>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.RenderFormat">
      <summary>
            Gets and sets the format of the rendered barcode image
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.RenderMethod">
      <summary>
            Gets and sets the render method of BarCodeWebControl. If RenderMethod is set to be HttpHandler, add the following into your web.config:
            <code><system.web><httpHandlers><add verb="*" path="BarCodeImageHandler.axd" type="Aspose.BarCode.Web.BarCodeImageHandler,Aspose.BarCode" /></httpHandlers></system.web></code></summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            Use <see cref="!:Aspose.BarCode.EncodeTypes">EncodeTypes</see> to set one of more than 64 symbologies:
            Code128, Code39, EAN13, EAN8, DataMatrix, Pdf417, QR, Aztec, MaxiCode, DotCode, Postnet, Planet, OneCode and other.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText">
      <summary>
            Data to be encoded, different types of BarCode may have different CodeText length restrictions
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.EnableEscape" />.  
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeLocation" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextSpace" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Display2DText">
      <summary>
            Gets or sets the text will displayed on the barcode's image. Available only for 2D barcodes. Limited to 1000 chars.
            </summary>
      <value>
            The text to display.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property.
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ASCII code and mnemonic for ASCII control-code characters, 0 through 31. For example, \013 and \CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont">
      <summary>
             Specify the displaying CodeText's font
             see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
             see <seealso cref="T:System.Drawing.Font" />. 
             see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor" />. 
             see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeLocation" />. 
             see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextSpace" />. 
             see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor">
      <summary>
            Specify the displaying CodeText's Color
            see <see cref="T:System.Drawing.Color" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeLocation" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextSpace" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ITF14BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings.
            </summary>
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.Margins" />.
        </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeLocation">
      <summary>
            Specify the displaying CodeText's Location, set to CodeLocation.None to hide CodeText.
            CodeLocation will be ignored if SymbologyType is UPCE, UPCA, ISBN, EAN8 or EAN13
            see <see cref="T:Aspose.BarCode.CodeLocation" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextSpace" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor" />
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextSpace">
      <summary>
            Space between the CodeText and the BarCode.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeLocation" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextAlignment">
      <summary>
            Gets or sets the alignment of the code text. 
            see <see cref="T:System.Drawing.StringAlignment" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeText" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextFont" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodeTextColor" />. 
            </summary>
      <remarks>
            StringAlignment.Near means CodeText will be aligned to the left
            StringAlignment.Far means CodeText will be aligned to the right
            StringAlignment.Center means CodeText will be aligned to the center
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.RotationAngleF">
      <summary>
            BarCode image's rotation angle, measured in degree, e.g. RotationAngleF = 0 or RotationAngleF = 360 means no rotation
            If RotationAngleF NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image, please set quality mode to anti-alias
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AutoSize">
      <summary>
            Wether ajust image's size automatically. Recommended:true
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ImageWidth">
      <summary>
            BarCode image's width see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AutoSize" />. , if AutoSize is true, ImageWidth will 
            be increased accordingly
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ImageHeight">
      <summary>
            BarCode image's height see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AutoSize" />. , if AutoSize is true, ImageHeight will
            be increased accordingly
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CaptionAbove">
      <summary>
            Caption Above the BarCode image. see <see cref="T:Aspose.BarCode.Caption" />. 
            CaptionAbove contains the following properties: 
            CaptionAbove.Font, 
            CaptionAbove.ForeColor,
            CaptionAbove.Space, 
            CaptionAbove.Visible, 
            CaptionAbove.Text, 
            CaptionAbove.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CaptionBelow">
      <summary>
            Caption Below the BarCode image. see <see cref="T:Aspose.BarCode.Caption" />. 
            CaptionBelow contains the following properties: 
            CaptionBelow.Font, 
            CaptionBelow.ForeColor, 
            CaptionBelow.Space, 
            CaptionBelow.Visible, 
            CaptionBelow.Text, 
            CaptionBelow.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarCodeImage">
      <summary>
            Get the BarCode image under current settings.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.GraphicsUnit">
      <summary>
            Measurement of various properties such as Width, Height etc. 
            Default GraphicsUnit: Millimeter
            see <see cref="T:System.Drawing.GraphicsUnit" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image
            see <see cref="T:Aspose.BarCode.Resolution" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderWidth">
      <summary>
            BarCode Image's border's width
            Default Graphics Unit: Millimeter
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderVisible" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderDashStyle" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderColor" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderVisible">
      <summary>
            wether BarCode Image's border is visible
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderWidth" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderDashStyle" />. 
            see <seealso cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderColor" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderColor">
      <summary>
            BarCode Image's border's color
            see <see cref="T:System.Drawing.Color" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderWidth" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderVisible" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderDashStyle" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderDashStyle">
      <summary>
            BarCode Image's border's style
            see <see cref="T:Aspose.BarCode.BorderDashStyle" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderWidth" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderVisible" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BorderColor" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodabarStartSymbol">
      <summary>
            Start symbol (character) of codabar symbology
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodabarStopSymbol" />. 
            see <see cref="T:Aspose.BarCode.CodabarSymbol" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodabarStopSymbol">
      <summary>
            Stop symbol (character) of codabar symbology
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CodabarStartSymbol" />. 
            see <see cref="T:Aspose.BarCode.CodabarSymbol" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.CustomerInformationInterpretingType">
      <summary>
            Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
            See <see cref="T:Aspose.BarCode.CustomerInformationInterpretingType" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.xDimension">
      <summary>
            x-dimension, smallest width unit of BarCode's bars or spaces.
            increase this will increase the whole barcode image's width if AutoSize is true
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.yDimension" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AutoSize" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarHeight" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.yDimension">
      <summary>
            y-dimension, smallest height unit of 2D BarCode's modules. 
            Some square symbols (such as DataMatrix) may ignore this and
            use x-dimension for both width unit and height unit
            
            In 2D barcode, y-dimension * rows determines BarCode's height
            In 1D barcode, BarHeight determines BarCode's height.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.xDimension" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarHeight" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarHeight">
      <summary>
            height of 1D barcodes' bars.
            In 2D barcode, y-dimension * rows determines BarCode's height
            In 1D barcode, BarHeight determines BarCode's height.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.yDimension" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ForeColor">
      <summary>
            Foreground color of the barcode image, that is, 
            Bar's color of 1D barcode, Module's color of 2D barcode
            see <see cref="T:System.Drawing.Color" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BackColor">
      <summary>
            Background color of the barcode image
            see <see cref="T:System.Drawing.Color" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.EnableChecksum">
      <summary>
        <para>Enable checksum during generation for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AspectRatio">
      <summary>
            2D BarCode's module's height/width ratio (yDimension/xDimension). 
            calculated based on xDimension set to 0 means 
            not using this feature.
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.xDimension" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.yDimension" />. 
            </summary>
      <remarks>
            Some 2D BarCodes are square shaped, then AspectRatio is not appliable
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically
            appliable SymbologyType: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Rows">
      <summary>
            2D BarCode's rows, if setting is illegal then rows will be calculated automatically. 
            appliable SymbologyType: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.DataMatrixEncodeMode">
      <summary>
            Encode mode of Datamatrix barcode, default to Auto
            see <see cref="T:Aspose.BarCode.DataMatrixEncodeMode">DataMatrixEncodeMode </see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Pdf417CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode, default compaction mode is <c>Auto</c>
            see <see cref="T:Aspose.BarCode.Pdf417CompactionMode" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Pdf417Truncate">
      <summary>
            whether pdf417 symbology type of BarCode is truncated (to reduce space)
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Pdf417ErrorLevel">
      <summary>
            Gets or sets Pdf417 symbology type of BarCode's error coccrection level
            ranging from level0 to level9, level0 means no error correction info, 
            level9 means best error correction which means a larger picture
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.MacroPdf417">
      <summary>
            Gets or sets whether this is a MacroPdf417 barcode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.MacroPdf417SegmentsCount">
      <summary>
            Gets or sets macro pdf417 barcode segments count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.MacroPdf417SegmentID">
      <summary>
            Gets or sets macro pdf417 barcode's segment ID, which starts from 0, to MacroPdf417SegmentCount - 1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.MacroPdf417FileID">
      <summary>
            Gets or sets macro pdf417 barcode's file ID.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.QRErrorLevel">
      <summary>
             Level of Reed-Solomon error correction for QR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. see <see cref="T:Aspose.BarCode.QRErrorLevel">QRErrorLevel</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.QREncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode, default mode is <c>Auto</c></summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.AztectErrorLevel">
      <summary>
            Level of error corection of Aztect types of barcode. value should between 10 to 95
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode. 
            Default WideNarrowRatio:3, that is, wide bars are 3 times as wide as narrow bars
            Appliable symbology: Code39Extended, Code39Standard, Standard2of5, Interleaved2of5
            see <see cref="!:Symbology" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.Margins">
      <summary>
            Margin area around the core BarCode image
            If AutoSize is false, then Width and Height is fixed, thus Margins setting will be ignored
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.SupplementData">
      <summary>
            Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, ISBN, Interleaved2of5 or Standard2of5.
            see <see cref="!:Symbology" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.SupplementSpace" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode, default Graphics Unit: millimeter
            see <see cref="T:System.Drawing.GraphicsUnit" />. 
            see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.SupplementData" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.PostnetShortBarHeight">
      <summary>
            Short bar's height of Postnet barcode, it has to be between 1 millimeter and 1.5 milimeter (0.04 inch and 0.06 inch). To set up tall bar's height, see BarHeight, which has to be between 8.28 milimeter and 9.72 milimeter (0.115 inch and 0.135 inch)
            see changing see <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            see setting tall bar's height: see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.PlanetShortBarHeight">
      <summary>
            Short bar's height of Planet barcode, it has to be between 1 millimeter and 1.5 milimeters.
            see changing see <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            see setting tall bar's height: see <see cref="P:Aspose.BarCode.Web.UI.BarCodeWebControl.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ImageQuality">
      <summary>
            Graphics quality mode, when RotationAngleF not equal to 0, 90, 180 or 270, do set quality mode to anti-alias. Type: Aspose.BarCode.ImageQualityMode
            see <see cref="T:Aspose.BarCode.ImageQualityMode" />. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.TextRenderingHint">
      <summary>
            Specifies the quality of text rendering. 
             </summary>
    </member>
    <member name="P:Aspose.BarCode.Web.UI.BarCodeWebControl.ImageCreator">
      <summary>
            Gets the BarCodeBuilder instance.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.RenderContents(System.Web.UI.HtmlTextWriter)">
      <summary>
            Render Html Text
            </summary>
      <param name="writer">The HtmlTextWriter object that receives the control content.</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Render(System.Web.UI.HtmlTextWriter)">
      <summary>
            Render Html Text
            </summary>
      <param name="output">The HtmlTextWriter object that receives the control content.</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.OnInit(System.EventArgs)">
      <summary>
            Raises the Init event.
            </summary>
      <param name="e">An EventArgs object that contains the event data.</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.GenerateBarCodeImage">
      <summary>
            Generates Barcode images
            </summary>
      <returns>A Bitmap that contains the barcode image.</returns>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Rotate">
      <summary>
            Rotate barcode image clockwise for 90 degrees
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Rotate(System.Single)">
      <summary>
            Rotate barcode image clockwise
            </summary>
      <param name="angle">Rotation Angle</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Rotate(Aspose.BarCode.RotationDirection,System.Single)">
      <summary>
            Rotate the barcode image
            </summary>
      <param name="direction">rotation direction</param>
      <param name="angle">rotation angle</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="stream">System.IO.Stream</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.Save(System.String,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="M:Aspose.BarCode.Web.UI.BarCodeWebControl.ToString">
      <summary>
            overried to string method
            </summary>
      <returns>BarCode: SymbologyType: CodeText</returns>
    </member>
    <member name="T:Aspose.BarCode.Web.UI.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.Web.UI</b> contains ASP.NET controls for the 1D/2D barcodes generation and drawing.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Web.UI.RenderMethod">
      <summary>
            Represents how to render barcode images to client browsers.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Web.UI.RenderMethod.FromCache">
      <summary>
            Barcode images will be generated in cache, and then render to client browsers.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Web.UI.RenderMethod.FromSession">
      <summary>
            Barcode images will be generated in session, and then render to client browsers.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.Web.UI.RenderMethod.FromHttpHandler">
      <summary>
            Barcode images will be generated by barcode http handler.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.RenderFormat">
      <summary>
            Represents the image formats rendering to the target.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RenderFormat.Jpeg">
      <summary>
            Jpeg format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RenderFormat.Gif">
      <summary>
            Gif format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RenderFormat.Bmp">
      <summary>
            Bitmap format.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.RenderFormat.Png">
      <summary>
            Png format.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.BarCodeControl">
      <summary>
            BarCode Windows Control, goto your toolbox panel and add BarCode.dll, 
            and you will see BarCodeControl appears.
            Just drag it and drop to your windows form
            see <seealso cref="T:Aspose.BarCode.Web.UI.BarCodeWebControl" />
            see <seealso cref="T:Aspose.BarCode.BarCodeBuilder" />
            supported symbology: 
            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:
            DataMatrix, PDf417, QR code
            
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.#ctor">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Windows.Forms.BarCodeControl" /> class.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.#ctor(System.String)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Windows.Forms.BarCodeControl" /> class.
            </summary>
      <param name="codeText">data to be encoded</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.#ctor(System.String,Aspose.BarCode.Generation.BaseEncodeType)">
      <summary>
            Initializes a new instance of the <see cref="T:Aspose.BarCode.Windows.Forms.BarCodeControl" /> class.
            </summary>
      <param name="codeText">data to be encoded</param>
      <param name="encodeType">barcode's type </param>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.IsLicensed">
      <summary>
            Gets a value indicating whether recognition module is licensed.
            </summary>
      <value>
        <c>true</c> if recognition module is licensed; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes">EncodeTypes</see> to set one of more than 64 symbologies:
            Code128, Code39, EAN13, EAN8, DataMatrix, Pdf417, QR, Aztec, MaxiCode, DotCode, Postnet, Planet, OneCode and other.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextEncoding">
      <summary>
            Sets and gets a character encoding.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText">
      <summary>
            Data to be encoded, different types of BarCode may have different CodeText length restrictions
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.EnableEscape" /> 
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextColor" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextSpace" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Display2DText">
      <summary>
            Gets or sets the text will displayed on the barcode's image. Available only for 2D barcodes. Limited to 1000 chars.
            </summary>
      <value>
            The text to display.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.ITF14BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings.
            </summary>
            See <see cref="P:Aspose.BarCode.BarCodeBuilder.Margins" />.
        </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property.
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters, 0 through 31. For example, \013 and \CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont">
      <summary>
             Specify the displaying CodeText's font
             see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
             see <seealso cref="T:System.Drawing.Font" />
             see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextColor" />
             see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation" />
             see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextSpace" />
             see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextColor">
      <summary>
            Specify the displaying CodeText's Color
            see <see cref="T:System.Drawing.Color" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextSpace" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation">
      <summary>
            Specify the displaying CodeText's Location, set to CodeLocation.None to hide CodeText.
            CodeLocation will be ignored if SymbologyType is UPCE, UPCA, ISBN, EAN8 or EAN13
            see <see cref="T:Aspose.BarCode.CodeLocation" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextSpace" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextSpace">
      <summary>
            Space between the CodeText and the BarCode.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeLocation" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextColor" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextAlignment">
      <summary>
            Gets or sets the alignment of the code text. 
            see <see cref="T:System.Drawing.StringAlignment" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeText" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextFont" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodeTextColor" /></summary>
      <remarks>
            StringAlignment.Near means CodeText will be aligned to the left
            StringAlignment.Far means CodeText will be aligned to the right
            StringAlignment.Center means CodeText will be aligned to the center
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.RotationAngleF">
      <summary>
            BarCode image's rotation angle, measured in degree, e.g. RotationAngleF = 0 or RotationAngleF = 360 means no rotation
            If RotationAngleF NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image, please set quality mode to anti-alias
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AutoSize">
      <summary>
            Wether ajust image's size automatically. Recommended:true
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.ImageWidth">
      <summary>
            BarCode image's width see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AutoSize" />, if AutoSize is true, ImageWidth will 
            be increased accordingly
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.ImageHeight">
      <summary>
            BarCode image's height see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AutoSize" />, if AutoSize is true, Height will
            be increased accordingly
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CaptionAbove">
      <summary>
            Caption Above the BarCode image. see <see cref="T:Aspose.BarCode.Generation.Caption" />
            CaptionAbove contains the following properties: 
            CaptionAbove.Font, 
            CaptionAbove.ForeColor, 
            CaptionAbove.Space, 
            CaptionAbove.Visible, 
            CaptionAbove.Text, 
            CaptionAbove.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CaptionBelow">
      <summary>
            Caption Below the BarCode image. see <see cref="T:Aspose.BarCode.Generation.Caption" />
            CaptionBelow contains the following properties: 
            CaptionBelow.Font, 
            CaptionBelow.ForeColor, 
            CaptionBelow.Space, 
            CaptionBelow.Visible, 
            CaptionBelow.Text, 
            CaptionBelow.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.GraphicsUnit">
      <summary>
            Measurement of various properties such as Width, Height etc. 
            Default GraphicsUnit: Millimeter
            see <see cref="T:System.Drawing.GraphicsUnit" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image
            see <see cref="T:Aspose.BarCode.Resolution" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderWidth">
      <summary>
            BarCode Image's border's width
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderVisible" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderDashStyle" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderColor" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderVisible">
      <summary>
            wether BarCode Image's border is visible
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderWidth" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderDashStyle" />
            see <seealso cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderColor" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderColor">
      <summary>
            BarCode Image's border's color
            see <see cref="T:System.Drawing.Color" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderWidth" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderVisible" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderDashStyle" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderDashStyle">
      <summary>
            BarCode Image's border's style
            see <see cref="T:Aspose.BarCode.BorderDashStyle" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderWidth" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderVisible" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BorderColor" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodabarStartSymbol">
      <summary>
            Start symbol (character) of codabar symbology
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodabarStopSymbol" />
            see <see cref="T:Aspose.BarCode.CodabarSymbol" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodabarStopSymbol">
      <summary>
            Stop symbol (character) of codabar symbology
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CodabarStartSymbol" />
            see <see cref="T:Aspose.BarCode.CodabarSymbol" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.CustomerInformationInterpretingType">
      <summary>
            Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
            See <see cref="T:Aspose.BarCode.CustomerInformationInterpretingType" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.xDimension">
      <summary>
            x-dimension, smallest width unit of BarCode's bars or spaces.
            increase this will increase the whole barcode image's width if AutoSize is true
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.yDimension" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AutoSize" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarHeight" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.yDimension">
      <summary>
            y-dimension, smallest height unit of 2D BarCode's modules. 
            Some square symbols (such as DataMatrix) may ignore this and
            use x-dimension for both width unit and height unit
            
            In 2D barcode, y-dimension * rows determines BarCode's height
            In 1D barcode, BarHeight determines BarCode's height.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.xDimension" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarHeight" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarHeight">
      <summary>
            height of 1D barcodes' bars.
            In 2D barcode, y-dimension * rows determines BarCode's height
            In 1D barcode, BarHeight determines BarCode's height.
            Default Graphics Unit: Millimeter 
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.yDimension" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.ForeColor">
      <summary>
            Foreground color of the barcode image, that is, 
            Bar's color of 1D barcode, Module's color of 2D barcode
            see <see cref="T:System.Drawing.Color" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BackColor">
      <summary>
            Background color of the barcode image
            see <see cref="T:System.Drawing.Color" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.EnableChecksum">
      <summary>
        <para>Enable checksum during generation for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AspectRatio">
      <summary>
            2D BarCode's module's height/width ratio (yDimension/xDimension). 
            calculated based on xDimension set to 0 means 
            not using this feature.
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.xDimension" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.yDimension" /></summary>
      <remarks>
            Some 2D BarCodes are square shaped, then AspectRatio is not appliable
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically
            appliable SymbologyType: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Rows">
      <summary>
            2D BarCode's rows, if setting is illegal then rows will be calculated automatically
            appliable SymbologyType: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.DataMatrixEncodeMode">
      <summary>
            Encode mode of Datamatrix barcode, default to Auto
            see <see cref="T:Aspose.BarCode.DataMatrixEncodeMode">DataMatrixEncodeMode </see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Pdf417CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode, default compaction mode is <c>Auto</c>
            see <see cref="T:Aspose.BarCode.Pdf417CompactionMode" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Pdf417Truncate">
      <summary>
            whether pdf417 symbology type of BarCode is truncated (to reduce space)
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Pdf417ErrorLevel">
      <summary>
            Gets or sets Pdf417 symbology type of BarCode's error coccrection level
            ranging from level0 to level9, level0 means no error correction info, 
            level9 means best error correction which means a larger picture
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.MacroPdf417SegmentsCount">
      <summary>
            Gets or sets macro pdf417 barcode segments count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.MacroPdf417SegmentID">
      <summary>
            Gets or sets macro pdf417 barcode's segment ID, which starts from 0, to MacroPdf417SegmentCount - 1.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.MacroPdf417FileID">
      <summary>
            Gets or sets macro pdf417 barcode's file ID.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode. 
            Default WideNarrowRatio:3, that is, wide bars are 3 times as wide as narrow bars
            Appliable symbology: Code39Extended, Code39Standard, Standard2of5, Interleaved2of5
            see <see cref="!:Symbology" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Margins">
      <summary>
            Margin area around the core BarCode image
            If AutoSize is false, then Width and Height is fixed, thus Margins setting will be ignored
            Default Graphics Unit: Millimeter 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.SupplementData">
      <summary>
            Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, ISBN, Interleaved2of5 or Standard2of5.
            see <see cref="!:Symbology" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.SupplementSpace" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode, default Graphics Unit: millimeter
            see <see cref="T:System.Drawing.GraphicsUnit" />
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.SupplementData" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.PrinterName">
      <summary>
            Choose printer, if not specified, Print() method will choose the first available printer
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.ImageQuality">
      <summary>
            Graphics quality mode, when RotationAngleF not equal to 0, 90, 180 or 270, do set quality mode to anti-alias. Type: Aspose.BarCode.ImageQualityMode
            see <see cref="T:Aspose.BarCode.ImageQualityMode" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.TextRenderingHint">
      <summary>
            Specifies the quality of text rendering. 
             </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.QRErrorLevel">
      <summary>
             Level of Reed-Solomon error correction for QR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH. see <see cref="T:Aspose.BarCode.QRErrorLevel">QRErrorLevel</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.QREncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode, default mode is <c>Auto</c></summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Rotate">
      <summary>
            Rotate barcode image clockwise for 90 degrees
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Rotate(System.Single)">
      <summary>
            Rotate barcode image clockwise
            </summary>
      <param name="angle">Rotation Angle</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Rotate(Aspose.BarCode.RotationDirection,System.Single)">
      <summary>
            Rotate the barcode image
            </summary>
      <param name="direction">rotation direction</param>
      <param name="angle">rotation angle</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Save(System.String)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="stream">System.IO.Stream</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.Save(System.String,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save BarCodeImage to specific file in specific format
            </summary>
      <param name="filename">save to this file path</param>
      <param name="format">System.Drawing.Imaging.ImageFormat</param>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.print">
      <summary>
            Print BarCodeImage
            see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.PrinterName" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarCodeImage">
      <summary>
            Gets the BarCode Image. Type:Bitmap
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.PostnetShortBarHeight">
      <summary>
            Short bar's height of Postnet barcode, it has to be between 1 millimeter and 1.5 milimeter (0.04 inch and 0.06 inch). To set up tall bar's height, see BarHeight, which has to be between 8.28 milimeter and 9.72 milimeter (0.115 inch and 0.135 inch)
            see changing see <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            see setting tall bar's height: see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.PlanetShortBarHeight">
      <summary>
            Short bar's height of Planet barcode, it has to be between 1 millimeter and 1.5 milimeters.
            see changing see <see cref="T:System.Drawing.GraphicsUnit">GraphicsUnit</see>.
            see setting tall bar's height: see <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BarHeight">BarHeight</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.AztectErrorLevel">
      <summary>
            Level of error corection of Aztect types of barcode. value should between 10 to 95
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Text">
      <summary>
            Gets or sets the text associated with this control.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.Dock">
      <summary>
            Gets or sets which control borders are docked to its parent control and determines how a control is resized with its parent.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.RightToLeft">
      <summary>
            Gets or sets a value indicating whether control's elements are aligned to support locales using right-to-left fonts.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeControl.BackgroundImage">
      <summary>
            Gets or sets the background image displayed in the control.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BarCodeControl.ToString">
      <summary>
            overried to string method
            </summary>
      <returns>BarCode: SymbologyType: CodeText</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl">
      <summary>
            BarCode Windows Control, goto your toolbox panel and add Aspose.BarCode.dll, 
            and you will see BarCodeGeneratorControl appears.
            Just drag it and drop to your Windows form.
            see <seealso cref="T:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl" />
            see <seealso cref="T:Aspose.BarCode.Generation.BarCodeGenerator" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CodeText">
      <summary>
            Data to be encoded, different types of BarCode may have different CodeText length restrictions.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes" /> to get current symbology.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CaptionAbove">
      <summary>
            Caption Above the BarCode image. See <see cref="T:Aspose.BarCode.Caption" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CaptionBelow">
      <summary>
            Caption Below the BarCode image. See <see cref="T:Aspose.BarCode.Caption" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.ForeBarsColor">
      <summary>
            Foreground color of the barcode image, that is,
            Bar's color of 1D barcode, Module's color of 2D barcode.
            See <see cref="T:System.Drawing.Color" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.BackgroundColor">
      <summary>
            Background color of the barcode image
            see <see cref="T:System.Drawing.Color" /></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.FilledBars">
      <summary>
            Gets or sets a value indicating whether bars filled.
            Only for 1D barcodes.
            Default value is true.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.BarHeight">
      <summary>
            Height of 1D barcodes' bars in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.XDimension">
      <summary>
            x-dimension is the smallest width of the unit of BarCode bars or spaces.
            Increase this will increase the whole barcode image width.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode.
            Default WideNarrowRatio is 3, that is, wide bars are 3 times as wide as narrow bars.
            Applicable symbology: Code39Extended, Code39Standard, Standard2of5, Interleaved2of5, Pharmacode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Resolution">
      <summary>
            Gets or sets the resolution of the BarCode image.
            One value for both dimensions.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Margins">
      <summary>
            Margin area around the core BarCode image.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.D2">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.D2Properties" /> that contains all configuration properties for 2D barcodes.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.ITF">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.ITFProperties" /> that contains all configuration properties for ITF14 barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.QR">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.QRProperties" /> that contains all configuration properties for QR barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.DataMatrix">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.DataMatrixProperties" /> that contains all configuration properties for DataMatrix barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Aztec">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.AztecProperties" /> that contains all configuration properties for Aztec barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Pdf417">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.Pdf417Properties" /> that contains all configuration properties for Pdf417 barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Codabar">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.CodabarProperties" /> that contains all configuration properties for Codabar barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Supplement">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.SupplementProperties" /> that contains all configuration properties for Supplement part of barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Border">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.BorderProperties" /> that contains all configuration properties for barcode border.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.Checksum">
      <summary>
            Gets the <see cref="T:Aspose.BarCode.Generation.ChecksumProperties" /> that contains all configuration properties for checksum of barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.RotationAngle">
      <summary>
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.AutoSizeMode">
      <summary>
            Gets or sets the mode by which the barcode automatically resizes.
            Default value is AutoSizeMode.None.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CodeTextStyle">
      <summary>
            Gets the <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CodeTextStyle" /> that contains all configuration properties for codetext of barcode.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.ThrowExceptionWhenCodeTextIncorrect">
      <summary>
            If codetext is incorrect and value set to true - exception will be thrown. Otherwise codetext will be corrected to match barcode's specification.
            Only for 1D barcodes.
            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.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.AustralianPostEncodingTable">
      <summary>
            Interpreting type for the Customer Information of AustralianPost, default to CustomerInformationInterpretingType.Other"
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.EnableEscape">
      <summary>
            Indicates whether explains the character "\" as an escape character in CodeText property. It is worked pdf417, DataMatrix, Code128 only
            See <see cref="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.CodeText" />.
            If the EnableEscape is true, "\" will be explained as a special escape character. Otherwise, "\" acts as normal characters.
            <remarks>Aspose.BarCode supports inputing decimal ascii code and mnemonic for ASCII control-code characters. For example, \013 and \\CR stands for CR.</remarks></summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.PostalShortBarHeight">
      <summary>
            Short bar's height of Postal barcodes.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.DotCodeMask">
      <summary>
            Mask of Dotcode barcode, default to Auto.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BarCodeGeneratorControl.MaxiCodeEncodeMode">
      <summary>
            Gets or sets a MaxiCode encode mode.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.IBarCodeGeneratorControl">
      <summary>
            IBarCodeGeneratorControl for TypeConverters
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.IBarCodeGeneratorControl.EncodeType">
      <summary>
            BarCode's encode type (symbology).
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.IBarCodeGeneratorControl.RotationAngle">
      <summary>
            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.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.Windows.Forms</b> contains WinForms controls for the 1D/2D barcodes generation and drawing.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.BorderPropertiesUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.BorderProperties" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BorderPropertiesUI.Visible">
      <summary>
            Gets or sets a value indicating whether [border visible].
            </summary>
      <value>
        <c>true</c> if [border visible]; otherwise, <c>false</c>.
            </value>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BorderPropertiesUI.Width">
      <summary>
            Border width of the BarCode image in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Width</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BorderPropertiesUI.DashStyle">
      <summary>
            Border style of BarCode Image.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.BorderPropertiesUI.Color">
      <summary>
            BarCode Image's border's color.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.BorderPropertiesUI.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Windows.Forms.BorderPropertiesUI" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Windows.Forms.BorderPropertiesUI" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.CaptionUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Caption" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Visible">
      <summary>
            Gets or sets a value indicates whether the <see cref="T:Aspose.BarCode.Caption">caption</see> is visible. 
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Color">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Color">forecolor</see> of the <see cref="T:Aspose.BarCode.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Font">
      <summary>
            Gets or sets the <see cref="T:System.Drawing.Font">font</see> of the <see cref="T:Aspose.BarCode.Caption">caption</see>.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Space">
      <summary>
            Gets or sets the space between the caption and the barcode,
            and the space between border and the caption in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Alignment">
      <summary>
            Gets or sets the text <see cref="T:System.Drawing.StringAlignment">alignment</see> of the caption.
            e.g. when the text is writing from left to right, StringAlignment.Near means the Caption will be aligned to the left
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CaptionUI.Text">
      <summary>
            Gets or sets the content of the caption.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.CaptionUI.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Windows.Forms.CaptionUI" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Windows.Forms.CaptionUI" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.CodeTextStyleUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.CodeTextStyle" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CodeTextStyleUI.Location">
      <summary>
            Specify the displaying CodeText Location, set to CodeLocation.None to hide CodeText.
            CodeLocation will be ignored if SymbologyType is UPCE, UPCA, ISBN, EAN8 or EAN13.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CodeTextStyleUI.Alignment">
      <summary>
            Gets or sets the alignment of the code text.
            </summary>
      <remarks>
            StringAlignment.Near means CodeText will be aligned to the left.
            StringAlignment.Far means CodeText will be aligned to the right.
            StringAlignment.Center means CodeText will be aligned to the center.
            </remarks>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CodeTextStyleUI.Color">
      <summary>
            Specify the displaying CodeText's Color.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CodeTextStyleUI.Space">
      <summary>
            Space between the CodeText and the BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
      <exception cref="T:System.ArgumentException">
        <p>The <b>Space</b> parameter value is less than 0.</p>
      </exception>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.CodeTextStyleUI.Font">
      <summary>
             Specify the displaying CodeText's font.
            </summary>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.FontUnitUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.FontUnit" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.FontUnitUI.FamilyName">
      <summary>
            Gets or sets the face name of this Font.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.FontUnitUI.Style">
      <summary>
            Gets or sets style information for this FontUnit.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.FontUnitUI.Size">
      <summary>
            Gets or sets size of this FontUnit in Unit value.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.FontUnitUI.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Windows.Forms.FontUnitUI" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Windows.Forms.FontUnitUI" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.ITFPropertiesUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.ITFProperties" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.ITFPropertiesUI.BorderThickness">
      <summary>
            Gets or sets an ITF14 border (bearer bar) thickness in Unit value.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.ITFPropertiesUI.BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings.
            Default value is ITF14BorderType.Bar.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.ITFPropertiesUI.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Windows.Forms.ITFPropertiesUI" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Windows.Forms.ITFPropertiesUI" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.MarginsUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.Margins" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.MarginsUI.Bottom">
      <summary>
            Gets the <b>bottom</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.MarginsUI.Top">
      <summary>
            Gets the <b>top</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.MarginsUI.Right">
      <summary>
            Gets the <b>right</b> marign in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.MarginsUI.Left">
      <summary>
            Gets the <b>left</b> margin in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.MarginsUI.ToString">
      <summary>
            Returns a String that represents the current <see cref="T:Aspose.BarCode.Generation.Margins">Margins</see> instance.
            </summary>
      <returns>A <see cref="T:System.String">String</see> that represents the current Object.</returns>
    </member>
    <member name="T:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI">
      <summary>
            UI wrapper for  <see cref="T:Aspose.BarCode.Generation.SupplementProperties" /> class.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI.Data">
      <summary>
            Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, ISBN, Interleaved2of5 or Standard2of5.
            See <see cref="P:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI.Space" />.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI.Space">
      <summary>
            Space between main the BarCode and supplement BarCode in <see cref="T:Aspose.BarCode.Generation.Unit" /> value.
            It can be used with Supplement data, UpcaGs1Code128Coupon and UpcaGs1DatabarCoupon encode types.
            </summary>
    </member>
    <member name="M:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI.ToString">
      <summary>
            Returns a human-readable string representation of this <see cref="T:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI" />.
            </summary>
      <returns>A string that represents this <see cref="T:Aspose.BarCode.Windows.Forms.SupplementPropertiesUI" />.</returns>
    </member>
    <member name="T:Aspose.BarCode.WPF.BarCodeElement">
      <summary>
            BarCodeControl is a WPF control that can be used in a WPF window or page.
            It has design time support in Microsoft Visual Studio 2008.
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.EncodeTypeProperty">
      <summary>
            SymbologyTypeEncodeType
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextProperty">
      <summary>
            CodeTextProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.DisplayTextProperty">
      <summary>
            DisplayTextProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.AspectRatioProperty">
      <summary>
            AspectRatioProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.AutoSizeProperty">
      <summary>
            AutoSizeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.AztecErrorLevelProperty">
      <summary>
            AztecErrorLevelProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BackColorProperty">
      <summary>
            BackColorProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BarHeightProperty">
      <summary>
            BarHeightProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BorderColorProperty">
      <summary>
            BorderColorProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BorderDashStyleProperty">
      <summary>
            BorderDashStyleProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BorderVisibleProperty">
      <summary>
            BorderVisibleProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.BorderWidthProperty">
      <summary>
            BorderWidthProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CaptionAboveProperty">
      <summary>
            CaptionAboveProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CaptionBelowProperty">
      <summary>
            CaptionBelowProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodabarStartSymbolProperty">
      <summary>
            CodabarStartSymbolProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodabarStopSymbolProperty">
      <summary>
            CodabarStopSymbolProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeLocationProperty">
      <summary>
            CodeLocationProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextAlignmentProperty">
      <summary>
            CodeTextAlignmentProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextColorProperty">
      <summary>
            CodeTextColorProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextFontNameProperty">
      <summary>
            CodeTextFontNameProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextFontSizeProperty">
      <summary>
            CodeTextFontSizeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.CodeTextSpaceProperty">
      <summary>
            CodeTextSpaceProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ColumnsProperty">
      <summary>
            ColumnsProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.DataMatrixEncodeModeProperty">
      <summary>
            DataMatrixEncodeModeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.EnableChecksumProperty">
      <summary>
            EnableChecksumProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.EnableEscapeProperty">
      <summary>
            EnableEscapeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ForeColorProperty">
      <summary>
            ForeColorProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.GraphicsUnitProperty">
      <summary>
            GraphicsUnitProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ImageHeightProperty">
      <summary>
            ImageHeightProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ImageQualityProperty">
      <summary>
            ImageQualityProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ImageWidthProperty">
      <summary>
            ImageWidthProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ITF14BorderTypeProperty">
      <summary>
            ITF14BorderTypeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417FileIDProperty">
      <summary>
            MacroPdf417FileIDProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417SegmentsCountProperty">
      <summary>
            MacroPdf417SegmentsCountProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417SegmentIDProperty">
      <summary>
            MacroPdf417SegmentIDProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MarginsProperty">
      <summary>
            MarginsProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MarginsLeftProperty">
      <summary>
            MarginsLeftProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MarginsTopProperty">
      <summary>
            MarginsTopProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MarginsRightProperty">
      <summary>
            MarginsRightProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.MarginsBottomProperty">
      <summary>
            MarginsBottomProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.Pdf417CompactionModeProperty">
      <summary>
            Pdf417CompactionModeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.Pdf417ErrorLevelProperty">
      <summary>
            Pdf417ErrorLevelProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.Pdf417TruncateProperty">
      <summary>
            Pdf417TruncateProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.PlanetShortBarHeightProperty">
      <summary>
            PlanetShortBarHeightProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.PostnetShortBarHeightProperty">
      <summary>
            PostnetShortBarHeightProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.PrinterNameProperty">
      <summary>
            PrinterNameProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.QREncodeModeProperty">
      <summary>
            QREncodeModeProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.QRErrorLevelProperty">
      <summary>
            QRErrorLevelProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.ResolutionProperty">
      <summary>
            ResolutionProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.RotationAngleProperty">
      <summary>
            RotationAngleProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.RotationAngleFProperty">
      <summary>
            RotationAngleFProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.RowsProperty">
      <summary>
            RowsProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.SupplementDataProperty">
      <summary>
            SupplementDataProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.SupplementSpaceProperty">
      <summary>
            SupplementSpaceProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.WideNarrowRatioProperty">
      <summary>
            WideNarrowRatioProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.xDimensionProperty">
      <summary>
            xDimensionProperty
            </summary>
    </member>
    <member name="F:Aspose.BarCode.WPF.BarCodeElement.yDimensionProperty">
      <summary>
            yDimensionProperty
            </summary>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.#ctor">
      <summary>
            Default constructor
            </summary>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.OnRenderSizeChanged(System.Windows.SizeChangedInfo)">
      <summary>
            Sets isDirty when render size is changed
            </summary>
      <param name="info">SizeChangedInfo object</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.OnRender(System.Windows.Media.DrawingContext)">
      <summary>
            Render BarCode image on screen
            </summary>
      <param name="dc">the drawing context</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Dispose">
      <summary>
            Dispose BarCode class
            </summary>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Save(System.String)">
      <summary>
            Save the BarCode image to the file
            </summary>
      <param name="filename">Name of the file to which BarCode image would be saved</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Save(System.IO.Stream,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save the BarCode image to the stream
            </summary>
      <param name="stream">stream to which BarCode image would be saved</param>
      <param name="imageFormat">The image format.</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Save(System.String,System.Drawing.Imaging.ImageFormat)">
      <summary>
            Save the BarCode image to file
            </summary>
      <param name="filename">Filename to which the BarCode image would be saved</param>
      <param name="format">Format of the BarCode image</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.SetBinaryCodeText(System.Byte[])">
      <summary>
            Set the CodeText for which BarCode image would be generated
            </summary>GenerateBarCodeImage
            <param name="codeText">The binary data to be encoded.</param></member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.ToString">
      <summary>
            String representation of the BarCodeBuilder class
            </summary>
      <returns>BarCode: SymbologyType: CodeText</returns>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.GenerateBarCodeImage">
      <summary>
            Generate the BarCode image
            </summary>
      <returns>BarCode Image. See <see cref="T:System.Drawing.Bitmap" />.</returns>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Print">
      <summary>
            Print the BarCode
            </summary>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Rotate">
      <summary>
            Rotate the BarCode image
            </summary>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Rotate(System.Single)">
      <summary>
            Rotate the BarCode image
            </summary>
      <param name="angle">Angle of rotation</param>
    </member>
    <member name="M:Aspose.BarCode.WPF.BarCodeElement.Rotate(Aspose.BarCode.RotationDirection,System.Single)">
      <summary>
            Rotate the BarCode image
            </summary>
      <param name="direction">Direction of rotation</param>
      <param name="angle">angle of rotation</param>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeText">
      <summary>
            Set the CodeText for which BarCode needs to be generated
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.DisplayText">
      <summary>
            Gets or sets the text will displayed on the barcode's image. Available only for 2D barcodes. Limited to 1000 chars.
            </summary>
      <value>
            The text to display.
            </value>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.EncodeType">
      <summary>
             BarCode's encode type (symbology).
             Use <see cref="T:Aspose.BarCode.Generation.EncodeTypes">EncodeTypes</see> to set one of more than 64 symbologies:
             Code128, Code39, EAN13, EAN8, DataMatrix, Pdf417, QR, Aztec, MaxiCode, DotCode, Postnet, Planet, OneCode and other.
             </summary>
      <example>
             Creates and saves a BarCode image
             <code>
             [C#]
            	  Aspose.BarCode.BarCodeBuilder barCodeBuilder = new BarCodeBuilder();
               barCodeBuilder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
               barCodeBuilder.CodeText = "12345678";
               barCodeBuilder.BarCodeImage.Save("test.bmp");
            
            	  [VB.NET]
            	  Dim barCodeBuilder as Aspose.BarCode.BarCodeBuilder
            	  barCodeBuilder = new BarCodeBuilder()
               barCodeBuilder.EncodeType = Aspose.BarCode.EncodeTypes.Codabar;
               barCodeBuilder.CodeText = "12345678"
            	  barCodeBuilder.BarCodeImage.Save("test.bmp")
            	  </code></example>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.AspectRatio">
      <summary>
            2D barcode's module's height/width ratio (yDimension/xDimension). set to 0 means not using this feature.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.AutoSize">
      <summary>
            Automatically set the image size, if set to true. Recommended:true
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.AztectErrorLevel">
      <summary>
            Level of error corection of Aztect types of barcode. value should between 10 to 95
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BackColor">
      <summary>
            Background color of the barcode image
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BarHeight">
      <summary>
            height of 1D barcodes' bars. In 2D barcode, y-dimension * rows determines BarCode's height. In 1D barcode, BarHeight determines BarCode's height
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BorderColor">
      <summary>
            BarCode Image's border's color
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BorderDashStyle">
      <summary>
            BarCode Image's border's style
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BorderVisible">
      <summary>
            whether BarCode Image's border is visible
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.BorderWidth">
      <summary>
            BarCode Image's border's width
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CaptionAbove">
      <summary>
            Caption Above the BarCode image. CaptionAbove contains the following properties: CaptionAbove.Font, CaptionAbove.ForeColor, CaptionAbove.Space, CaptionAbove.Visible, CaptionAbove.Text, CaptionAbove.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CaptionBelow">
      <summary>
            Caption Below the BarCode image. CaptionBelow contains the following properties: CaptionBelow.Font, CaptionBelow.ForeColor, CaptionBelow.Space, CaptionBelow.Visible, CaptionBelow.Text, CaptionBelow.TextAlign
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodabarStartSymbol">
      <summary>
            Start symbol (character) of codabar symbology
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodabarStopSymbol">
      <summary>
            Stop symbol (character) of codabar symbology
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeLocation">
      <summary>
            Specify the displaying CodeText's Location, set to CodeLocation.None to hide CodeText. CodeLocation will be ignored if SymbologyType is UPCE, UPCA, BooklandEAN, EAN8 or EAN13
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeTextAlignment">
      <summary>
            The alignment of the code text
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeTextColor">
      <summary>
            Specify the displaying CodeText's Color
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeTextFontName">
      <summary>
            Specifiy the name of CodeText's Font
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeTextFontSize">
      <summary>
            Specifiy the CodeText's FontSize
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.CodeTextSpace">
      <summary>
            Space between the CodeText and the BarCode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Columns">
      <summary>
            2D BarCode's columns, if setting is illegal then columns will be calculated automatically. appliable Symbology: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.DataMatrixEncodeMode">
      <summary>
            Encode mode of Datamatrix barcode, default to Auto
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.EnableChecksum">
      <summary>
        <para>Enable checksum during generation for 1D barcodes.</para>
        <para>Default is treated as Yes for symbologies which must contain checksum, as No where checksum only possible.</para>
        <para>Checksum never used: Codabar</para>
        <para>Checksum is possible: Code39 Standard/Extended, Standard2of5, Interleaved2of5, Matrix2of5, ItalianPost25, DeutschePostIdentcode, DeutschePostLeitcode, VIN</para>
        <para>Checksum always used: Rest symbologies</para>
      </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.EnableEscape">
      <summary>
            Indicates whether character '\' in CodeText should be interpreted as '\' or escape character
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.ForeColor">
      <summary>
            Foreground color of the barcode image
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.GraphicsUnit">
      <summary>
            Measurement of various properties such as Width, Height etc. Default GraphicsUnit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.ImageHeight">
      <summary>
            BarCode image's height, if AutoSize is true, ImageHeight will be increased accordingly Default Graphics Unit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.ImageQuality">
      <summary>
            Graphics quality mode, when RotationAngleF not equal to 0, 90, 180 or 270, do set quality mode to anti-alias. Type: Aspose.BarCode.ImageQualityMode
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.ImageWidth">
      <summary>
            BarCode image's width, if AutoSize is true, ImageWidth will be increased accordingly Default Graphics Unit: Millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.ITF14BorderType">
      <summary>
            Border type of ITF14 barcode, quiet zone will be determined by margin settings
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417FileID">
      <summary>
            Gets or sets macro pdf417 barcode's file ID
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417SegmentsCount">
      <summary>
            Gets or sets macro pdf417 barcode segments count.
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MacroPdf417SegmentID">
      <summary>
            Gets or sets the segment id for macropdf417 barcodes
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MarginsLeft">
      <summary>
            Gets or Sets the left margins
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MarginsBottom">
      <summary>
            Gets or Sets the bottom margins
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MarginsRight">
      <summary>
            Gets or Sets the right margins
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.MarginsTop">
      <summary>
            Gets or Sets the top margins
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Pdf417CompactionMode">
      <summary>
            Pdf417 symbology type of BarCode's compaction mode, default compaction mode is Auto
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Pdf417ErrorLevel">
      <summary>
            Gets or sets Pdf417 symbology type of BarCode's error coccrection level ranging from level0 to level8, level0 means no error correction info, level8 means best error correction which means a larger picture
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Pdf417Truncate">
      <summary>
            whether pdf417 symbology type of BarCode is truncated (to reduce space
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.PlanetShortBarHeight">
      <summary>
            Short bar's height of Planet barcode, it has to be between 1 millimeter and 1.5 milimeters
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.PostnetShortBarHeight">
      <summary>
            Short bar's height of Postnet barcode, it has to be between 1 millimeter and 1.5 milimeter (0.04 inch and 0.06 inch). To set up tall bar's height, see BarHeight, which has to be between 8.28 milimeter and 9.72 milimeter (0.115 inch and 0.135 inch)
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.PrinterName">
      <summary>
            Choose printer, if not specified, Print() method will choose the first available printer
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.QREncodeMode">
      <summary>
            QR symbology type of BarCode's encoding mode, default mode is Auto
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.QRErrorLevel">
      <summary>
            Level of Reed-Solomon error correction for QR barcode. From low to high: LevelL, LevelM, LevelQ, LevelH
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Resolution">
      <summary>
            Gets or sets the resolution of the image
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.RotationAngleF">
      <summary>
            BarCode image's rotation angle, measured in degree, e.g. RotationAngleF = 0 or RotationAngleF = 360 means no rotation. If RotationAngleF NOT equal to 90, 180, 270 or 0, it may increase the difficulty for the scanner to read the image, please set quality mode to anti-alias
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.Rows">
      <summary>
            2D BarCode's rows, if setting is illegal then rows will be calculated automatically. appliable Symbology: Pdf417
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.SupplementData">
      <summary>
            Supplement data following BarCodes of symbology UPCA, UPCE, EAN13, EAN8, BooklandEAN, Interleaved2of5 or Standard2of5
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.SupplementSpace">
      <summary>
            Space between main the BarCode and supplement BarCode, default Graphics Unit: millimeter
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.WideNarrowRatio">
      <summary>
            Wide bars to Narrow bars ratio for some 1D BarCode. Appliable symbology: Code39Extended, Code39Standard,  Standard2of5, Interleaved2of5
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.xDimension">
      <summary>
            x-dimension, smallest width unit of BarCode's bars or spaces
            </summary>
    </member>
    <member name="P:Aspose.BarCode.WPF.BarCodeElement.yDimension">
      <summary>
            y-dimension, smallest height unit of 2D BarCode's modules
            </summary>
    </member>
    <member name="T:Aspose.BarCode.WPF.NamespaceDoc">
      <summary>
            The <b>Aspose.BarCode.WPF</b> contains tools for the 1D/2D barcodes generation and drawing.
            </summary>
    </member>
  </members>
</doc>