API:Data.DB.TMemoField.Value

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Value: AnsiString read GetAsAnsiString write SetAsAnsiString;

C++

__property System::AnsiString Value = {read=GetAsAnsiString, write=SetAsAnsiString};

Properties

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

Description


Represents the data in a field component.

Data.DB.TMemoField.Value inherits from Data.DB.TField.Value. All content below this line refers to Data.DB.TField.Value.

Represents the data in a field component.

Use Value to read data directly from and write data directly to a field component at run time. For example, use the Value property to affect the contents of a field that is not Visible.

Note: For BLOB fields (Data.DB.TBlobField), the Value property is equivalent to the AsString property. The string data (Delphi) or AnsiString (C++) type can store binary data as well as text. Thus, even BLOB fields for nontextual BLOB types such as ftGraphic or ftTypedBinary can get or set their data using a string (Delphi) or an AnsiString (C++).


See Also

Code Examples