TdxMemField.Values Property
In This Article
Provides indexed access to all values stored in the memory field.
#Declaration
Delphi
property Values[AIndex: Integer]: TRecordBuffer read;
#Property Value
Type | Description |
---|---|
TRecord |
The pointer to a value. |
#Remarks
Pass an index as the Index
parameter to obtain a pointer to the corresponding data field value stored in memory. The Values
property returns nil
(in Delphi) or nullptr
(in C++Builder) if the memory field contains no value at the specified position.
See Also