[Overview][Constants][Types][Classes][Procedures and functions][Index] |
Find an element by name.
Source position: fpjson.pp line 521
public function TJSONObject.Find( |
const AName: string |
):TJSONData; overload; |
const AName: string; |
AType: TJSONtype |
):TJSONData; overload; |
AName |
|
Name to search for. |
Data element corresponding to AName
AName |
|
Name to search for. |
AType |
|
Type to match. |
Find compares the names of all elements in the object with AName and returns the matching element. If none of the element's names match, the function returns Nil
Since JSON is a case-sensitive specification, the names are searched case-sensitively.
If AType is specified then the element's type must also match the specified type.
IndexOf |
IndexOfName |