Method to read Properties of the Pdf Document using aspose

HI Team

Looking out to find the methods to get the properties of the Pdf document . Actually, looking out for the retrieval of the Content inside the document to understand it’s a blank document .

@veera1208
Blank in the sense of content or do you mean nothing is displayed on the pages?

In the Sense of the Content . Have to Identify whether Content is available in the Pages

@veera1208
I apologize for the delay in response.
You can use code like this

```
bool isBlank = true;
foreach (Page page in pdfDocument.Pages)
{
    if (page.Contents == null || page.Contents.Length == 0)
    {
        isBlank = false;
        break;
    }
}
```