SetUint64

SetUint64 1:

This method sets the value of a property to a value of the data type UInt64.

Syntax

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

SetUint64 2: Return value

Name

Type

SetUint64

SJsonValue

SetUint64 3: Inputs

Name

Type

v

SJsonValue

value

ULINT

Sample call:

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