Property: MinSize

(TBarcode2D_MicroPDF417)

Specifies the minimum symbol size for an MicroPDF417 barcode symbol.

Syntax:

type

{ Defined in the pMicroPDF417 unit }

TMicroPDF417_Size = (mpSize_1_11, mpSize_1_14, mpSize_1_17, mpSize_1_20, mpSize_1_24, mpSize_1_28, mpSize_2_8, mpSize_2_11, mpSize_2_14, mpSize_2_17, mpSize_2_20, mpSize_2_23, mpSize_2_26, mpSize_3_6, mpSize_3_8, mpSize_3_10, mpSize_3_12, mpSize_3_15, mpSize_3_20, mpSize_3_26, mpSize_3_32, mpSize_3_38, mpSize_3_44, mpSize_4_4, mpSize_4_6, mpSize_4_8, mpSize_4_10, mpSize_4_12, mpSize_4_15, mpSize_4_20, mpSize_4_26, mpSize_4_32, mpSize_4_38, mpSize_4_44);

property MinSize: TMicroPDF417_Size;

Description:

The property specifies the minimum symbol size for a MicroPDF417 barcode symbol. It can be one of values from mpSize_1_11 to mpSize_4_44. These values denotation the number of columns and rows in every symbol size. For example, the symbol size value mpSize_3_12 denotations the MicroPDF417 symbol size is 12 stacked rows by 3 columns. These symbol size values are defined in the pMicroPDF417 unit.

The smallest symbol size that accommodates the barcode text will be automatically selected between the minimum symbol size specified by this property and the maximum symbol size that's specified by the MaxSize property.

The CurrentSize property can be used to get the factual symbol size.

Note, if the property is set to a value greater than the MaxSize property's value, the MaxSize property will be automatically changed to equal to this property's value. In other words, the MinSize property's value is always less than or equal to the MaxSize property's value.

See also the "Symbol sizes" section in the "TBarcode2D_MicroPDF417" article.

Contents