In This Topic
GdPicture14 Namespace / TextExtractionOutputInfo Enumeration

TextExtractionOutputInfo Enumeration

In This Topic
Specifies various output information available as output of text extraction engine.
Syntax
'Declaration
 
<ComVisibleAttribute(True)>
<FlagsAttribute()>
Public Enum TextExtractionOutputInfo 
   Inherits System.Enum
[ComVisible(true)]
[Flags()]
public enum TextExtractionOutputInfo : System.Enum 
public enum TextExtractionOutputInfo = class(System.Enum)
ComVisibleAttribute()
FlagsAttribute()
public enum TextExtractionOutputInfo extends System.Enum
[ComVisible(true)]
[Flags()]
__value public enum TextExtractionOutputInfo : public System.Enum 
[ComVisible(true)]
[Flags()]
public enum class TextExtractionOutputInfo : public System.Enum 
Members
MemberValueDescription
Default0The default option means the default behavior, when no flags are defined.
IncludeFontBoxHeight8Setting this flag will include in the output the font box height based on the used font information.
IncludeFontName4Setting this flag will include in the output the font name used to render the word.
IncludeGlyphCharacters128Setting this flag will include the array of character representations for each single glyph.
IncludeGlyphWidths64Setting this flag will include the array of widths for each single glyph of the extracted word.
IncludeTextMode16Setting this flag will include in the output the text mode used for rendering the word, equivalent to the PdfTextMode enumeration.
IncludeTextSize32Setting this flag will include the text size used for rendering the word.
IncludeWordBounds1Setting this flag will include in the output the coordinates of the word bounding box.
IncludeWordString2Setting 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