Property: MinSize

(TBarcodeFmx2D_AztecCode)

Specifies the minimum symbol size for an Aztec Code barcode symbol.

Syntax:

type

{ Defined in the pfmxAztecCode unit }

TAztecCode_Size = (azSize_15Compact, azSize_19, azSize_19Compact, azSize_23, azSize_23Compact, azSize_27, azSize_27Compact, azSize_31, azSize_37, azSize_41, azSize_45, azSize_49, azSize_53, azSize_57, azSize_61, azSize_67, azSize_71, azSize_75, azSize_79, azSize_83, azSize_87, azSize_91, azSize_95, azSize_101, azSize_105, azSize_109, azSize_113, azSize_117, azSize_121, azSize_125, azSize_131, azSize_135, azSize_139, azSize_143, azSize_147, azSize_151);

property MinSize: TAztecCode_Size;

Description:

The property specifies the minimum symbol size for an Aztec Code barcode symbol. It can be one of values from azSize_15Compact to azSize_151. These values denotation the symbol format, number of rows and columns in every symbol size. For example, the symbol size value azSize_19Compact denotations the Aztec Code symbol size is 19 rows by 19 columns, in compact format. These symbol size values are defined in the pfmxAztecCode 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 "TBarcodeFmx2D_AztecCode" article.

Contents