Web.DBWeb.TDSTableProducer.DataSet

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property DataSet: TDataSet read GetDataSet write SetDataSet;

C++

__property Data::Db::TDataSet* DataSet = {read=GetDataSet, write=SetDataSet};

Properties

Type Visibility Source Unit Parent
property public
Web.DBWeb.pas
Web.DBWeb.hpp
Web.DBWeb TDSTableProducer

Description

Specifies the dataset from which the data in the HTML table is taken. Set DataSet to specify where the TDSTableProducer should look for the data it displays in the HTML table. The individual field bindings specified by the THTMLTableColumn objects in the Columns property refer to fields in DataSet.

Specify the data binding of a TDSTableProducer using the DataSet property rather than through a DataSource property. TDSTableProducer objects do not use an external TDataSource object.

See Also