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

Public constructor Create(ParentElement: TDOMElement);
Public destructor Destroy; override;
Public function GetNext: boolean;

Properties

Public property Current: String read FCurrent;

Description

Methods

Public constructor Create(ParentElement: TDOMElement);

This item has no description.

Public destructor Destroy; override;

This item has no description.

Public function GetNext: boolean;

This item has no description.

Properties

Public property Current: String read FCurrent;

This item has no description.


Generated by PasDoc 0.16.0-snapshot.