Flags that determine the behavior of the auto zoning process.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum AutoZoningOptions Inherits Enum |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
[FlagsAttribute()] public enum AutoZoningOptions : Enum |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class AutoZoningOptions : public Enum |
Member | Description |
---|---|
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) |
You can use a bitwise OR (|) to specify one or more flags.
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.AutoZoningOptions
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