Declaration
function GetInteger(const key: WideString; recursive: boolean = true): integer; overload;
function GetInteger(const key: WideString; const Def: Integer; recursive: boolean = true): integer; overload;
Description
Returns the integer value to which the key is mapped in this dictionary. If the key doesn't exist an exception is raised.
Parameter | Description |
key | A key in this dictionary |
recursive | If true then search this key inside sub-dictionaries |
Note: Use '#text' as the key to get the values from a tag list, e.g. memo1.lines.add( dict.GetString( '#text', false ));
// Return the Photoshop Color Mode from the XMP metadata
iColorMode := ImageEnView1.IO.Params.Dict.GetDictionary( 'XMP' ).GetInteger( 'photoshop:ColorMode' );