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;

Source: src/files/castlexmlutils.pas (line 576).

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.

Source: src/files/castlexmlutils.pas (line 582).

Public destructor Destroy; override;

This item has no description.

Source: src/files/castlexmlutils.pas (line 583).

Public function GetNext: boolean;

This item has no description.

Source: src/files/castlexmlutils.pas (line 584).

Properties

Public property Current: String read FCurrent;

This item has no description.

Source: src/files/castlexmlutils.pas (line 585).


Generated by PasDoc 0.17.0.snapshot.