Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

Class iAztecDetails

iAztecDetails is one of the detailedResult in class iTextResult. It stores the Aztec code details.

  • Objective-C
  • Swift
  1. @interface iAztecDetails : NSObject
    
  2. class iAztecDetails : NSObject
    
Attribute Descriptions
moduleSize The barcode module size (the minimum bar width in pixel).
rows The row count of the barcode.
columns The column count of the barcode.
layerNumber A negative number (-1, -2, -3, -4) specifies a compact Aztec code. A positive number (1, 2, .. 32) specifies a normal (full-rang) Aztec code.

moduleSize

The barcode module size (the minimum bar width in pixel).

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger moduleSize
    
  2. var moduleSize: Int { get set }
    

rows

The row count of the barcode.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger rows
    
  2. var rows: Int { get set }
    

columns

The column count of the barcode.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger columns
    
  2. var columns: Int { get set }
    

layerNumber

A negative number (-1, -2, -3, -4) specifies a compact Aztec code. A positive number (1, 2, .. 32) specifies a normal (full-rang) Aztec code.

  • Objective-C
  • Swift
  1. @property (nonatomic, assign) NSInteger layerNumber
    
  2. var layerNumber: Int { get set }
    

This page is compatible for:

Is this page helpful?

YesYes NoNo

In this article: