How to get page orientation from a word document in Aspose c#

Hi,
I have word document where pages are with different orientation portrait or landscape
I want to identify the orientation prophetically

Thanks
Rasmi Ranjan Mishra

@rasmi.mishra,

Thanks for your query.

I am moving your thread to Aspose.Words forums where one of my fellow colleagues from Aspose.Words team will help you soon.

@rasmi.mishra,

Thanks for your inquiry. Please use PageSetup.Orientation property to get or set the orientation of the page. Please check the following code example.

Document doc = new Document(MyDir + "in.docx");

foreach (Section section in doc.Sections)
{
    Console.WriteLine(section.PageSetup.Orientation);
}