SetUint64

SetUint64 1:

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

Syntax

METHOD SetUint64 : SJsonValue
VAR_INPUT
  v     : SJsonValue;
  value : ULINT;
END_VAR

SetUint64 2: Rückgabewert

Name

Typ

SetUint64

SJsonValue

SetUint64 3: Eingänge

Name

Typ

v

SJsonValue

value

ULINT

Beispielaufruf:

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