TextExtractionOutputInfo Enumeration
In This Topic
Specifies various output information available as output of text extraction engine.
Syntax
'Declaration
<FlagsAttribute()>
<ComVisibleAttribute(True)>
Public Enum TextExtractionOutputInfo
Inherits System.Enum
[Flags()]
[ComVisible(true)]
public enum TextExtractionOutputInfo : System.Enum
public enum TextExtractionOutputInfo = class(System.Enum)
FlagsAttribute()
ComVisibleAttribute()
public enum TextExtractionOutputInfo extends System.Enum
[Flags()]
[ComVisible(true)]
__value public enum TextExtractionOutputInfo : public System.Enum
[Flags()]
[ComVisible(true)]
public enum class TextExtractionOutputInfo : public System.Enum
Members
Member | Value | Description |
Default | 0 | The default option means the default behavior, when no flags are defined. |
IncludeFontBoxHeight | 8 | Setting this flag will include in the output the font box height based on the used font information. |
IncludeFontName | 4 | Setting this flag will include in the output the font name used to render the word. |
IncludeGlyphCharacters | 128 | Setting this flag will include the array of character representations for each single glyph. |
IncludeGlyphWidths | 64 | Setting this flag will include the array of widths for each single glyph of the extracted word. |
IncludeTextMode | 16 | Setting this flag will include in the output the text mode used for rendering the word, equivalent to the PdfTextMode enumeration. |
IncludeTextSize | 32 | Setting this flag will include the text size used for rendering the word. |
IncludeWordBounds | 1 | Setting this flag will include in the output the coordinates of the word bounding box. |
IncludeWordString | 2 | Setting this flag will include in the output the string representing the extracted word. |
Inheritance Hierarchy
System.Object
System.ValueType
System.Enum
GdPicture14.TextExtractionOutputInfo
See Also