Discuss this help topic in SecureBlackbox Forum

TElJsonArray.Item

TElJsonArray     See also     


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


This topic is under development…

Declaration

[C#]
    TElJsonEntity Item[int Index];

[VB.NET]
    Property Item(ByVal Index As Integer) As TElJsonEntity

[Pascal]
    property Item[Index : Integer] : TElJsonEntity;

[C++]
    TElJsonEntity* get_Item(int32_t Index);
    void set_Item(int32_t Index, const TElJsonEntity &Value);
    void set_Item(int32_t Index, const TElJsonEntity *Value);

[PHP]
    TElJsonEntity get_Item(integer $Index)
    void set_Item(integer $Index, TElJsonEntity $Value)

[Java]
    TElJsonEntity getItem(int Index);
    void setItem(int Index, TElJsonEntity Value);

Parameters

  • Index -

Description

    Gets or sets item's value at the specified Index. If OwnsItems is True, the object previously contained in the item is destoyed.

See also:         

Discuss this help topic in SecureBlackbox Forum