SetInt64

SetInt64 1:

Diese Methode setzt den Value eines Properties auf einen Wert vom Datentyp Int64.

Syntax

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

SetInt64 2: Rückgabewert

Name

Typ

SetInt64

SJsonValue

SetInt64 3: Eingänge

Name

Typ

v

SJsonValue

value

LINT

Beispielaufruf:

jsonDoc   := fbJson.ParseDocument(sExistingJsonDocument);
jsonProp  := fbJson.FindMember(jsonDoc, 'property');
jsonValue := fbJson.SetInt64(jsonProp, 42);