Discuss this help topic in SecureBlackbox Forum

TElJsonArray.Append

TElJsonArray     See also     


Filter: C#/Java  VB.NET  Pascal  C++  PHP  


This topic is under development…

Declaration

[C#/Java]
    int Append(TElJsonEntity Value);

[VB.NET]
    Function Append(ByVal Value As TElJsonEntity) As Integer

[Pascal]
    function Append(Value : TElJsonEntity) : integer;

[C++]
    int32_t Append(TElJsonEntity &Value);
    int32_t Append(TElJsonEntity *Value);
    int32_t Append(int32_t Value);
    int32_t Append(double Value);
    int32_t Append(bool Value);
    int32_t Append(const std::string &Value);
    int32_t Append();

[PHP]
    integer Append(TElJsonEntity $Value)
    integer Append(integer $Value)
    integer Append(double $Value)
    integer Append(bool $Value)
    integer Append(string $Value)
    integer Append()

Parameters

  • Value -

Return value

    …

Description

    Adds new item to the end of the array and returns its index.

See also:         

Discuss this help topic in SecureBlackbox Forum