Xml.XMLDoc.TXMLNodeList.Count

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property Count: Integer read GetCount;

C++

__property int Count = {read=GetCount, nodefault};

Properties

Type Visibility Source Unit Parent
property protected
Xml.XMLDoc.pas
Xml.XMLDoc.hpp
Xml.XMLDoc TXMLNodeList

Description

Indicates the number of nodes in the collection.

Read Count to determine the number of nodes in the list. To change the value of Count, use the IXMLNodeList interface. Add nodes using the Add or Insert method, or remove them using the Delete or Remove method.

See Also