Declaration
function GetDouble(const key: WideString; recursive: Boolean = True): Double; overload;
function GetDouble(const key: WideString; const Def: Double; recursive: Boolean = True): Double; overload;
Description
Returns the double 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 it will also search for this key in 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 ));