Data.DB.TDataSet.Designer

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Designer: TDataSetDesigner read FDesigner;

C++

__property TDataSetDesigner* Designer = {read=FDesigner};

Properties

Type Visibility Source Unit Parent
property public
Data.DB.pas
Data.DB.hpp
Data.DB TDataSet

Description

Returns a pointer to the DataSet designer for the dataset.

Use Designer to determine whether the dataset is currently being designed and, if so, to access the dataset designer. When a dataset designer, such as the Fields editor, is created for a dataset at design time, it sets the Designer property to itself. When the dataset designer is destroyed, the Designer property is set back to nil (Delphi) or NULL (C++). A DataSet designer enables a developer to specify the fields that belong to a dataset at design time.

See Also