[]
Gets the number of ReportItem objects in the ReportItemCollection.
public int Count { get; }
| Type | Description |
|---|---|
| int | An int value indicating the number of ReportItem objects. |
ReportItemCollection collection = new ReportItemCollection();
collection.Add(new TextBox());
int count = collection.Count;