Property: MinRows

(TBarcode2D_Code16K)

Specifies the minimum number of stacked rows for a Code 16K barcode symbol.

Syntax:

type

{ Defined in the pCode16K unit }

TCode16K_Rows = 2..16;

property MinRows: TCode16K_Rows;

Description:

The property specifies the minimum number of stacked rows for a Code 16K barcode symbol. It can be one of values from 2 to 16. They are defined in the pCode16K unit.

The smallest number of stacked rows that accommodates the barcode text will be automatically selected between the minimum number of stacked rows (specified by this property) and the maximum number of stacked rows (that's specified by the MaxRows property).

The CurrentRows property can be used to get the factual number of stacked rows.

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

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

Contents