Re: [xml] redicting parts of trees



Hi,

On Thu, 2005-05-19 at 21:00 +0200, Kasimier Buchcik wrote:

[...]

An example (in Delphi code):
(all vars are interfaces here, not objects)
var
  doc: IDOMDocument;
  elem: IDOMElement;
  node: IDOMNode;
begin
  elem := doc.documentElement;

  // Remove and put on garbage list.
  node := doc.documentElement.removeChild(elem);

Correction, this should be:  node := doc.removeChild(elem);

[...]

Kasimier



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]