PushbackInt64Value
This method appends a value of the data type Int64 to the end of an array.
Syntax
METHOD PushbackInt64Value : SJsonValue
VAR_INPUT
v : SJsonValue;
value : LINT;
END_VAR
Return value
Name | Type |
---|---|
PushbackInt64Value | SJsonValue (note possible invalidity) |
Inputs
Name | Type |
---|---|
v | sJsonValue (note possible invalidity) |
value | LINT |
Sample call:
jsonDoc := fbJson.ParseDocument(sExistingJsonDocument);
jsonArray := fbJson.FindMember(jsonDoc, 'array');
jsonValue := fbJson.PushbackInt64Value(jsonArray, 42);