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 .
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 .
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;
}
}
```