Show: Delphi
C++
Display Preferences
AdaptReq.IActionFieldValues.FieldNames
From XE2 API Documentation
Delphi
property FieldNames[I: Integer]: string read GetFieldName;
C++
__property System::UnicodeString FieldNames[int I] = {read=GetFieldName};
Properties
| Type | Visibility | Source | Unit | Parent |
|---|---|---|---|---|
| property | public | AdaptReq.pas AdaptReq.hpp |
AdaptReq | IActionFieldValues |
Description
Lists the names of the fields whose values are stored in the current request.
Read FieldNames to obtain the names of the fields about which the current request provides information.
I is the index of the field whose name this property identifies, where 0 indicates the first field, 1 indicates the second field, and so on. The FieldCount property provides an upper bound for this index.
Use FieldNames when iterating over all the fields in the request. To obtain information about a specific field, use the ValueOfField or OrigValueOfField method.