Class TXMLCDataIterator
Unit
Declaration
type TXMLCDataIterator = class(TObject)
Description
Iterate over all CDATA nodes of given XML element.
Simple usage:
var I: TXMLCDataIterator; begin I := TXMLCDataIterator.Create(Element); try while I.GetNext do begin ... here goes your code to process I.Current ... end; finally FreeAndNil(I) end; end;
Hierarchy
- TObject
- TXMLCDataIterator
Overview
Methods
constructor Create(ParentElement: TDOMElement); |
|
destructor Destroy; override; |
|
function GetNext: boolean; |
Properties
property Current: String read FCurrent; |
Description
Methods
constructor Create(ParentElement: TDOMElement); |
|
This item has no description. |
destructor Destroy; override; |
|
This item has no description. |
function GetNext: boolean; |
|
This item has no description. |
Properties
property Current: String read FCurrent; |
|
This item has no description. |
Generated by PasDoc 0.16.0-snapshot.