Return index of name in item list.
Source position: fpjson.pp line 711
public function TJSONObject.IndexOfName( |
const AName: TJSONStringType; |
CaseInsensitive: Boolean = False |
):Integer; |
AName |
|
Name to search for. |
CaseInsensitive |
|
Search case-insensitively or not ? |
Index of AName in the array, or -1.
IndexOfName compares the names of all elements in the object with AName and returns the index (in the TJSONData.Items property) of the element instance whose name matched AName. If none of the element's names match, the function returns -1.
Since JSON is a case-sensitive specification, the names are searched case-sensitively by default. This can be changed by setting the optional CaseInsensitive parameter to True
|
Return index of JSONData instance in object. |