PushbackInt64Value

PushbackInt64Value 1:

Diese Methode hängt einen Wert vom Datentyp Int64 an das Ende eines Arrays an.

Syntax

METHOD PushbackInt64Value : SJsonValue
VAR_INPUT
  v     : SJsonValue;
  value : LINT;
END_VAR

PushbackInt64Value 2: Rückgabewert

Name

Typ

PushbackInt64Value

SJsonValue

PushbackInt64Value 3: Eingänge

Name

Typ

v

sJsonValue

value

LINT

Beispielaufruf:

jsonDoc   := fbJson.ParseDocument(sExistingJsonDocument);
jsonArray := fbJson.FindMember(jsonDoc, 'array');
jsonValue := fbJson.PushbackInt64Value(jsonArray, 42);