[Overview][Constants][Types][Classes][Procedures and functions][Variables][Index] |
[Properties (by Name)] [Methods (by Name)] [Events (by Name)]
Class to manage lookup list values
Source position: db.pas line 247
type TLookupList = class(TObject) end; |
||
public |
||
constructor Create; |
|
Create a new instance of TLookupList. |
destructor Destroy; override; |
|
Free a TLookupList instance from memory |
procedure Add(); |
|
Add a key, value pair to the list |
procedure Clear; |
|
Remove all key, value pairs from the list |
function FirstKeyByValue(); |
|
Find the first key that matches a value |
function ValueOfKey(); |
|
Look up value based on a key |
procedure ValuesToStrings(); |
|
Convert values to stringlist |
|
Class to manage lookup list values |
|
| | ||
TLookupList is a list object used for storing values of lookup operations by lookup fields. There should be no need to create an instance of TLookupList manually, the TField instance will create an instance of TlookupList on demand.
|
Should lookup values be cached |