[Overview][Constants][Types][Classes][Procedures and functions][Index] Reference for unit 'fpjson' (#fcl)

TJSONObject.Find

Find an element by name.

Declaration

Source position: fpjson.pp line 521

public function TJSONObject.Find(

  const AName: string

):TJSONData; overload;

function TJSONObject.Find(

  const AName: string;

  AType: TJSONtype

):TJSONData; overload;

Arguments

AName

  

Name to search for.

Function result

Data element corresponding to AName

Arguments

AName

  

Name to search for.

AType

  

Type to match.

Description

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.

See also

IndexOf

IndexOfName


Documentation generated on: Nov 14 2015