PushbackFileTimeValue
This method appends a value of the data type FILETIME to the end of an array.
Syntax
METHOD PushbackFileTimeValue : SJsonValue
VAR_INPUT
v : SJsonValue;
value : FILETIME;
END_VAR
Return value
Name | Type |
---|---|
PushbackFileTimeValue | SJsonValue (note possible invalidity) |
Inputs
Name | Type |
---|---|
v | sJsonValue (note possible invalidity) |
value | FILETIME |
Sample call:
jsonDoc := fbJson.ParseDocument(sExistingJsonDocument);
jsonArray := fbJson.FindMember(jsonDoc, 'array');
jsonValue := fbJson.PushbackFileTimeValue(jsonArray, fileTime);