[]
        
(Showing Draft Content)

GrapeCity.ActiveReports.PageReportModel.ReportItemCollection.Count

Count Property

Count

Gets the number of ReportItem objects in the ReportItemCollection.

Declaration
public int Count { get; }
Property Value
Type Description
int

An int value indicating the number of ReportItem objects.

Implements
Examples
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
int count = collection.Count;