Hi,
I’m still evaluating Aspose.PDF and got a problem with the landscape property. The added document has 4 pages, all of them are in landscape format. The document is shown correctly in Adobe. Aspose does not recognize those pages as landscape.
The following code loads the documents and gets the landscape info of every page. It prints False for every page.
Dim pdf As Document = New Document(path)
For Each p As Page In pdf.Pages
Debug.WriteLine(p.PageInfo.IsLandscape)
Next
Am I doing something wrong? Do I have to set some other Properties while loading the document?