HtmlElement::InsertAdjacentElement Method
Insert a new element into the Document Object Model (DOM).
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public:
HtmlElement^ InsertAdjacentElement(
HtmlElementInsertionOrientation orient,
HtmlElement^ newElement
)
Parameters
- orient
- Type: System.Windows.Forms::HtmlElementInsertionOrientation
Where to insert this element in relation to the current element.
- newElement
- Type: System.Windows.Forms::HtmlElement
The new element to insert.
Return Value
Type: System.Windows.Forms::HtmlElementThe HtmlElement that was just inserted. If insertion failed, this will return nullptr.
Do not call this method until after the DocumentCompleted event on the WebBrowser control has occurred. Calling this method before then can result in an exception, as the document will not have finished loading.
Whether a value of HtmlElementInsertionOrientation is valid will depend on the type of the element. For example, AfterBegin is valid if the element is a DIV, but not if it is a SCRIPT or IMG element, neither of which can contain child elements.
The following code example inserts a DIV element into the top of every page that users view outside of the ADatum.com server. The example requires that your form contains a WebBrowser control named WebBrowser1. Your sample must also import the namespace System.Text.RegularExpressions.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.