Discuss this help topic in SecureBlackbox Forum

TElXMLDOMNodeList.Item

TElXMLDOMNodeList     See also     


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


This property provides access to a particular node.

Declaration

[C#]
    TElXMLDOMNode Item[int index];

[VB.NET]
    Property Item(ByVal index As Integer) As TElXMLDOMNode

[Pascal]
    property Item[Index : integer] : TElXMLDOMNode;

[C++]
    TElXMLDOMNode* get_Item(int32_t index);

[PHP]
    TElXMLDOMNode get_Item(integer $index)

[Java]
    TElXMLDOMNode getItem(int index);

Parameters

  • Index - The index of desired node in the list. The first node has Index=0, the second has Index=1 and so on.

Description

    Use this property to access the individual items in the list of XML DOM nodes. If the index is not valid, the result value is null/Nothing/nil.

See also:     Length    

Discuss this help topic in SecureBlackbox Forum