GetElementById Method

WebKit .NET

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

Returns the first element with the specified id.

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

Syntax

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

Parameters

id
Type: System..::.String
The id of the element.

Return Value

Element with the specified id.

See Also