1HTMLDocument.appendExisting(3kKaayyaa)module refeHrTeMnLcDeocument.appendExisting(3kaya)
2
3
4
6 HTMLDocument::appendExisting - Append an existing element
7
9 Void appendExisting( ElementTree dest, ElementTree block )
10
12 dest The element to add to
13
14 block The element to append
15
17 Append an existing element as the final child of the specified element.
18
19
20 p = addParagraph(parent,"Hello world!");
21 // is equivalent to
22 p = addParagraph(anonymousBlock(),"Hello world!");
23 appendExisting(parent,p);
24
26 Kaya standard library by Edwin Brady, Chris Morris and others
27 (kaya@kayalang.org). For further information see http://kayalang.org/
28
30 The Kaya standard library is free software; you can redistribute it
31 and/or modify it under the terms of the GNU Lesser General Public
32 License (version 2.1 or any later version) as published by the Free
33 Software Foundation.
34
36 HTMLDocument.anonymousBlock (3kaya)
37 HTMLDocument.appendGenerator (3kaya)
38 HTMLDocument.prependExisting (3kaya)
39
40
41
42Kaya December 201H0TMLDocument.appendExisting(3kaya)