Property: MinSize

(TBarcode2D_DataMatrix)

Specifies the minimum symbol size for a Data Matrix (ECC 000 - 140) barcode symbol.

Syntax:

type

{ Defined in the pDataMatrix unit }

TDataMatrix_Size = (dmSize_09_09, dmSize_11_11, dmSize_13_13, dmSize_15_15, dmSize_17_17, dmSize_19_19, dmSize_21_21, dmSize_23_23, dmSize_25_25, dmSize_27_27, dmSize_29_29, dmSize_31_31, dmSize_33_33, dmSize_35_35, dmSize_37_37, dmSize_39_39, dmSize_41_41, dmSize_43_43, dmSize_45_45, dmSize_47_47, dmSize_49_49);

property MinSize: TDataMatrix_Size;

Description:

The property specifies the minimum symbol size for a Data Matrix (ECC 000 - 140) barcode symbol. It can be one of values from dmSize_09_09 to dmSize_49_49. These values denotation the number of rows and columns in every symbol size. For example, the symbol size value dmSize_29_29 denotations the Data Matrix (ECC 000 - 140) symbol size is 29 rows by 29 columns. These symbol size values are defined in the pDataMatrix 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_DataMatrix" article.

Contents