Count Свойство (PdfPageCollection)
Возвращает количество страниц, содержащихся в коллекции.
Вот пример, показывающий, как получить количество страниц в PDF документе:
''' <summary>
''' Returns the number of pages in PDF document.
''' </summary>
''' <param name="pdfFileName">The filename of PDF document.</param>
Public Shared Function GetPagesCount(pdfFileName As String) As Integer
' open PDF document
Using document As New Vintasoft.Imaging.Pdf.PdfDocument(pdfFileName)
' get the number of pages
Dim pagesCount As Integer = document.Pages.Count
' return number of pages
Return pagesCount
End Using
End Function
/// <summary>
/// Returns the number of pages in PDF document.
/// </summary>
/// <param name="pdfFileName">The filename of PDF document.</param>
public static int GetPagesCount(string pdfFileName)
{
// open PDF document
using (Vintasoft.Imaging.Pdf.PdfDocument document =
new Vintasoft.Imaging.Pdf.PdfDocument(pdfFileName))
{
// get the number of pages
int pagesCount = document.Pages.Count;
// return number of pages
return pagesCount;
}
}
Целевые платформы: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5