PDF417 Dimensions

Defined in namespace Scandit.DataCapture.Barcode.Generator

Pdf417Dimensions
class Pdf417Dimensions

Added in version 8.6.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).

Pdf417Dimensions()
Pdf417Dimensions(int minCols, int maxCols, int minRows, int maxRows)

Added in version 8.6.0

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

MinCols
int MinCols { get;set; }

Added in version 8.6.0

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

MaxCols
int MaxCols { get;set; }

Added in version 8.6.0

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

MinRows
int MinRows { get;set; }

Added in version 8.6.0

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

MaxRows
int MaxRows { get;set; }

Added in version 8.6.0

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