Xml.XMLIntf.IXMLNodeList.Count
Delphi
property Count: Integer read GetCount;
C++
__property int Count = {read=GetCount};
Properties
Type | Visibility | Source | Unit | Parent |
---|---|---|---|---|
property | public | Xml.XMLIntf.pas Xml.XMLIntf.hpp |
Xml.XMLIntf | IXMLNodeList |
Description
Indicates the number of nodes in the list.
Read Count to determine the number of nodes in the list. Count provides an upper limit to the indexes that can be used with the Nodes property.
To change the value of Count, add nodes using the Add or Insert method, or remove them using the Delete or Remove method.