Click or drag to resize

DocumentAutoZoning_Column Property

This property is used to modify the behavior of Auto-zoning.

Namespace:  Kofax.OmniPageCSDK.IproPlus
Assembly:  Kofax.OmniPageCSDK.IproPlus (in Kofax.OmniPageCSDK.IproPlus.dll) Version: 1.0.0.0
Syntax
public int AutoZoning_Column { get; set; }

Property Value

Type: Int32
Remarks

Auto-zoning occurs on page areas that are not covered by user zones. If there are no user zones on the page, the whole page will be auto-zoned. Possible values of this property are:

AutoZoning_Column value Meaning
LZ_COLUMN_NO Do not find text zones.
LZ_COLUMN_ONE Single column mode.
LZ_COLUMN_AUTO Find text zones automatically.

The default value is LZ_COLUMN_NO. When there are no user zones on a page, LZ_COLUMN_NO has the same effect as LZ_COLUMN_AUTO. When this property is set to LZ_COLUMN_ONE or LZ_COLUMN_AUTO, the AutoZoning_Form property will be set to false.

LZ_COLUMN_ONE can be set not only when all the text really is in a single column, but also when the page appears to contain columns that should not be decolumnized when Plain Text or Formatted Text output are to be generated. These might be a set of side-by-side word lists whose positioning should be conserved, or a table-like structure that is created with tabulators that should retain its structure without being treated as a table.

LZ_COLUMN_AUTO will place content in columns if it detects a column-like structure in texts on a page. Auto-zoning can be done by calling the LocateZones method of Document or Page objects.

Changing this property will set the Modified property to True."

See Also