CreateElement Method

WebKit .NET

[This is preliminary documentation and is subject to change.]

Creates a DOM Element with the specified tag name.

Namespace:  WebKit.DOM
Assembly:  WebKitBrowser (in WebKitBrowser.dll) Version: 0.5.0.0 (0.5.0.0)

Syntax

C#
public Element CreateElement(
	string TagName
)
Visual Basic (Declaration)
Public Function CreateElement ( _
	TagName As String _
) As Element
Visual C++
public:
Element^ CreateElement(
	String^ TagName
)

Parameters

TagName
Type: System..::.String
The tag name for the new element.

Return Value

The new element.

See Also