VintaSoft Imaging .NET SDK 14.0: Документация для .NET разработчика
Vintasoft.Imaging.Pdf.Tree Namespace / PdfPageCollection Class / Count Property
Синтаксис Example Требования Смотрите также
В этом разделе
    Count Свойство (PdfPageCollection)
    В этом разделе
    Возвращает количество страниц, содержащихся в коллекции.
    Синтаксис
    'Declaration
    
    Public ReadOnly Property Count As System.Int32
    
    
    public System.Int32 Count { get; }
    
    
    public: __property System.Int32 get_Count();
    
    
    
    public:
    property System.Int32 Count { System.Int32 get(); }
    Пример

    Вот пример, показывающий, как получить количество страниц в 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

    Смотрите также