PDF417 Dimensions

Defined in framework ScanditBarcodeCapture

PDF417Dimensions
open class PDF417Dimensions : NSObject

Added in version 8.3.0

Dimensions configuration for PDF417 barcode generation. This class allows you to control the minimum and maximum number of rows and columns in the generated barcode. All properties are optional and can be left unset (null).

Encoding will fail if incompatible dimensions are defined (e.g., if the data cannot fit within the specified constraints).

init
init()

Added in version 8.3.0

Creates a new PDF417Dimensions instance with all properties set to null.

minCols
open var minCols: NSNumber? { get, set }

Added in version 8.3.0

Minimum number of columns in the PDF417 barcode. Default is null (unset).

maxCols
open var maxCols: NSNumber? { get, set }

Added in version 8.3.0

Maximum number of columns in the PDF417 barcode. Default is null (unset).

minRows
open var minRows: NSNumber? { get, set }

Added in version 8.3.0

Minimum number of rows in the PDF417 barcode. Default is null (unset).

maxRows
open var maxRows: NSNumber? { get, set }

Added in version 8.3.0

Maximum number of rows in the PDF417 barcode. Default is null (unset).