HtmlElement.AppendChild Method
Assembly: System.Windows.Forms (in system.windows.forms.dll)
public HtmlElement AppendChild ( HtmlElement newElement )
public function AppendChild ( newElement : HtmlElement ) : HtmlElement
Not applicable.
Parameters
- newElement
The HtmlElement to append to this location in the tree.
Return Value
The element after it has been added to the tree.The HTML Document Object Model (DOM) enables you to alter the run-time contents of an HTML file in a number of ways. Use AppendChild to add new elements to an existing document, or to move an element on the page.
If an element has already been parented, appending an element to another element will automatically remove that element from its previous parent.
Any additions made to a document at run-time using AppendChild will not be persisted when you call the ShowSaveAsDialog method on the WebBrowser control.
The following code example creates a new hyperlink using the CreateElement method and adds it to end of a page using AppendChild on the BODY element. The example requires that your application contains a WebBrowser control named WebBrowser1.
Windows 98, Windows Server 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft Windows XP SP2, and Windows Server 2003 SP1.