Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
AutoZoningOptions Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : AutoZoningOptions Enumeration



Flags that determine the behavior of the auto zoning process.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum AutoZoningOptions 
   Inherits Enum
Visual Basic (Usage)Copy Code
Dim instance As AutoZoningOptions
C# 
[FlagsAttribute()]
public enum AutoZoningOptions : Enum 
C++/CLI 
[FlagsAttribute()]
public enum class AutoZoningOptions : public Enum 

Members

MemberDescription
None None.
DetectText Detect text zones.
DetectGraphics Detect graphics zones.
DetectTable Detect table zones.
DetectAll Detect all zones.
AllowOverlap Allows overlapping zones.
DontAllowOverlap Don't allow overlapping zones.
DetectAccurateZones Don’t merge text zones and keep them separated (paragraphs)
DetectGeneralZones Merge text zones to the maximum.
DontRecognizeOneCellTable Don't recognize tables that contain only one cell. (ignore one-cell tables (borders), and detect what inside.)
RecognizeOneCellTable Recognize tables that contain only one cell, (consider the borders as one-cell tables).
UseMultiThreading Use Multithreading (that will be faster with a multi-core CPUs)
DontUseMultiThreading Don’t Use Multithreading (that will be used with a single-core CPUs)

Remarks

You can use a bitwise OR (|) to specify one or more flags.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.AutoZoningOptions

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also