Skip to content

Page::Width property

The width property return the dimensions of a page in pixels.

int Width { get; }
int getWidth() throws IGRException;
@property
def Width(self) -> int
int getWidth() const;
[propget] HRESULT Width([out, retval] int *result);

Return Value

int : Integer containing the width of the page in pixels.

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}");
    }
}

Additional Information

The dimensions are calculated based on the stored page width of the source document, or the default page width for text documents.

The calculated dimensions of a page can be controlled by setting options, such as DPI, when loading the document.

See Also