System.JSON.TJSONObject.RemovePair

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function RemovePair(const PairName: string): TJSONPair;

C++

TJSONPair* __fastcall RemovePair(const System::UnicodeString PairName);

Properties

Type Visibility Source Unit Parent
function public
System.JSON.pas
System.JSON.hpp
System.JSON TJSONObject

Description

Removes a key-value pair having the specified PairName key part from the current JSON object.

RemovePair returns the JSON pair has been removed, or nil if there is no key that matches PairName.

See Also