Discuss this help topic in SecureBlackbox Forum

TElJsonArray.Append

TElJsonArray     See also     


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


This topic is under development…

Declaration

[C#]
    int Append(TElJsonEntity Value);
    int Append(TElJsonEntity Value);
    int Append(double Value);
    int Append(bool Value);
    int Append(string Value);
    int Append();

[VB.NET]
    Function Append(ByVal Value As TElJsonEntity) As Integer
    Function Append(ByVal Value As TElJsonEntity) As Integer
    Function Append(ByVal Value As Double) As Integer
    Function Append(ByVal Value As Boolean) As Integer
    Function Append(ByVal Value As String) As Integer
    Function Append() 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()

[Java]
    int append(boolean Value);
    int append(TElJsonEntity Value);
    int append(TElJsonEntity Value);
    int append(String Value);
    int append();
    int append(double Value);

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