System.JSON.TJSONAncestor.Clone

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function Clone: TJSONAncestor; virtual; abstract;

C++

virtual TJSONAncestor* __fastcall Clone() = 0 ;

Properties

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

Description

Declares the method that should create a deep clone of the current JSON value.

Descendants of TJSONAncestor implementing Clone, for example TJSONString, define Clone as creating a deep clone of the current JSON value and returning an exact copy of the current instance.

See Also