TdxReportDataSetCollectionItem.DataSet Property
Specifies the dataset associated with the collection item.
Declaration
property DataSet: TDataSet read; write;
Property Value
Type | Description |
---|---|
TDataSet | The dataset associated with the collection item. |
Remarks
Use the DataSet
property to associate the collection item with a dataset (a TDataSet class descendant instance). The DataSetAlias property allows you to specify a user-friendly dataset name for the Report Designer.
Default Value
The DataSet
property’s default value is nil
(in Delphi) or nullptr
(in C++Builder).
Tip
The TdxReportDataSetCollection.Add procedure allows you to initialize DataSet
and DataSetAlias properties for newly created Report dataset collection items.
See Also