Hi Team
I would like to get the page margin from a pdf
I tried the following code
Aspose.Pdf.Page pdfPage = pdfDocument.Pages[1];
var info = pdfPage.PageInfo;
var left = info.Margin.Left;
in which I receive the output as default value Left 90, Right 90, Top 72, Bottom 72
but this is not the correct values
Thanks in Advance
Bala