Skip to content

Page::Text property

The Text property returns all the text contained on the page.

string Text { get; }
string getText() throws IGRException;
@property
def Text(self) -> string
std::wstring getText() const;
[propget] HRESULT Text([out, retval] BSTR *result);

Return Value

string : Unicode String containing the text of the page.

Sample Code

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
using Hyland.DocumentFilters;

var api = new Hyland.DocumentFilters.Api();
api.Initialize("License Code", ".");

using var doc = api.GetExtractor("filename.doc");
doc.Open(Hyland.DocumentFilters.OpenType.Paginated);

foreach (var page in doc.Pages)
{
    using (page)
    {
        Console.WriteLine($"Width: {page.Width}");
        Console.WriteLine($"Height: {page.Height}");
        Console.WriteLine($"Text: {page.Text}");
    }
}

See Also