Gets or sets the items contained in the DataRange.
Namespace: MindFusion.Reporting
Assembly: MindFusion.Reporting
SyntaxC#
Copy Code
|
|---|
public IList<ReportItem> Items { get; set; } |
Visual Basic
Copy Code
|
|---|
Public Property Items As IList(Of ReportItem) |
An instance of a IList(ReportItem) class with the report items contained in the DataRange.
RemarksThis collection does not include the items contained in the header or footer of the data range. To access these, use the Items property of the DataRangeSection object returned from the Header or Footer property of the data range respectively.
See Also