Request (with code) to add PageCount property to pdfDocument
Brought to you by:
dogcane
Hi,
I'd like some way to retrieve the number of pages that is present in a document.
Could you add the following property to the pdfDocument object? Thanks!
[code]
/// <summary>
/// Returns the number of pages in this document
/// </summary>
public int PageCount
{
get
{
return _pages.Count;
}
}
[/code]
Cheers,
Mathieu