Form GetInputElement Method (String, String)C# API
Gets the InputElement with the specified name and value.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public InputElement GetInputElement(
	string name,
	string value
)

Parameters

name
Type: System String
The name of the InputElement to retrieve.
value
Type: System String
The value of the InputElement to retrieve.

Return Value

The first InputElement in the form that has the specified name and value.
Exceptions

ExceptionCondition
Facilita.Exception NoSuchValueExceptionThe form does not contain an InputElement with the specified name and value.
Facilita.Exception BadValueExceptionThe HtmlElement with the specified name and value is not an InputElement.
See Also

Form GetInputElement(String, String)