ActiveReports 19 .NET Edition
MESCIUS.ActiveReports.Core.Rdl Assembly / GrapeCity.ActiveReports.PageReportModel Namespace / PageCollection Class / Count Property
Example

In This Topic
    Count Property (PageCollection)
    In This Topic
    Gets the number of Page objects in the PageCollection.
    Syntax
    'Declaration
     
    Public ReadOnly Property Count As Integer
    public int Count {get;}

    Property Value

    An System.Int32 value indicating the number of Page objects.
    Example
    PageCollection collection = new PageCollection();
    collection.Add(new Page());
    int count = collection.Count;
    See Also