SetUint64
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
Rückgabewert
Name | Typ |
---|---|
SetUint64 | SJsonValue |
Eingänge
Name | Typ |
---|---|
v | SJsonValue |
value | ULINT |
Beispielaufruf:
jsonDoc := fbJson.ParseDocument(sExistingJsonDocument);
jsonProp := fbJson.FindMember(jsonDoc, 'property');
jsonValue := fbJson.SetUint64(jsonProp, 42);