dataRowCount

Specifies an optional number of data rows to encode for supported barcodes. This property applies to 2D barcodes only.

The form design can supply this property in conjunction with the dataColumnCount property to specify a fixed row and column barcode. Otherwise the rowColumnRatio property plus the actual length of the data being inserted determine the row and column count. The dataRowCount property cannot be present unless the dataColumnCount property is also present. When these properties are used the size of the barcode is fixed. If the supplied data does not fill the barcode the remaining cells are padded out with padding symbols.

Syntax

Reference_Syntax.dataRowCount = "string"

Values

Type

Values

String

A valid string representing the number of data rows to encode.

Applies to

Model

Object

Form Model

barcode

Version

XFA 2.1

Examples

JavaScript

Code11BarCode1.resolveNode("ui.#barcode").dataRowCount = "2";

FormCalc

Code11BarCode1.ui.#barcode.dataRowCount = "2"

// Ethnio survey code removed