RAD Studio VCL Reference
ContentsIndex
PreviousUpNext
TDBRichEdit.DataField Property

Specifies the field from which the rich edit control displays data.

Pascal
property DataField: WideString;
C++
__property BSTR DataField;

Use DataField to bind the rich edit control to a field in the dataset. To fully specify a database field, both the dataset and the field within that dataset must be defined. The DataSource property of the rich edit control specifies the dataset which contains the DataField.

DBRichEdit1.DataField := 'Document';

 

DBRichEdit1->DataField = "Document";

 

Copyright(C) 2008 CodeGear(TM). All Rights Reserved.
What do you think about this topic? Send feedback!