VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.Text Namespace / TextRegion Class
Members Object Syntax Example Hierarchy Requirements SeeAlso
In This Topic
    TextRegion Class
    In This Topic
    Provides information about the text content that extracted from a page of document.
    Object Model
    TextRegionSymbol TextRegionSymbol AffineMatrix TextRegionFormatter TextRegionLine RegionF TextRegion
    Syntax
    'Declaration
    
    <DefaultMemberAttribute("Item")>
    Public Class TextRegion
    
    
    [DefaultMember("Item")]
    public class TextRegion
    
    
    [DefaultMember("Item")]
    public __gc class TextRegion
    
    
    [DefaultMember("Item")]
    public ref class TextRegion
    
    
    Example

      
    Public Sub WritePageTextContent(image As Vintasoft.Imaging.VintasoftImage)  
        If image.Metadata.TextRegion IsNot Nothing Then  
            System.Console.WriteLine(image.Metadata.TextRegion.TextContent)  
        End If  
    End Sub
    
    
    
    public void WritePageTextContent(Vintasoft.Imaging.VintasoftImage image)
    {
        if (image.Metadata.TextRegion != null)
            System.Console.WriteLine(image.Metadata.TextRegion.TextContent);
    }
    
    

    Inheritance Hierarchy

    System.Object
       Vintasoft.Imaging.Text.TextRegion

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also