HtmlElement::Name Property

 

Gets or sets the name of the element.

Namespace:   System.Windows.Forms
Assembly:  System.Windows.Forms (in System.Windows.Forms.dll)

public:
property String^ Name {
	String^ get();
	void set(String^ value);
}

Property Value

Type: System::String^

A String representing the element's name.

Use the Name property to retrieve elements from a document using the GetElementsByName method on the All property of HtmlDocument.

When applied to INPUT elements, Name defines the variable name for that element's data when its form is submitted to the server.

.NET Framework
Available since 2.0
Return to top
Show: