Declaration
function GetBoolean(const key: WideString; recursive: Boolean = True): Boolean; overload;
function GetBoolean(const key: WideString; const Def: Boolean; recursive: Boolean): Boolean; overload;
Description
Returns the Boolean 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 ));