TIWCGJQCustomStore.Store(string,ISuperObject) Method

Method to store the value of property.

Namespace: IWCGJQStore
public
 procedure Store(const APropName: string; APropObjValue: ISuperObject); overload;

Parameters

APropName
Type: string

The name of property

APropObjValue
Type: ISuperObject

The value (ISuperObject) of property

var
 JSonObj: ISuperObject;
begin
 JSonObj:= SO();
 JSonObj.S['Prop1']:= 'Value1';
 JSonObj.I['Prop2']:= 5;
 JSonObj.B['Prop3']:= True;
end;