HtmlWindowCollection::Item Property (String^)
.NET Framework (current version)
Retrieves a frame window by supplying the frame's name.
Assembly: System.Windows.Forms (in System.Windows.Forms.dll)
public: property HtmlWindow^ default[ String^ windowId ] { HtmlWindow^ get(String^ windowId); }
Parameters
- windowId
-
Type:
System::String^
The name of the HtmlWindow to retrieve.
Property Value
Type: System.Windows.Forms::HtmlWindow^The HtmlWindow element corresponding to the supplied name.
| Exception | Condition |
|---|---|
| ArgumentException | windowId is not the name of a Frame object in the current document or in any of its children. |
Item will return a single element whose Name property corresponds to elementId. If the document contains multiple elements with the same name, Item will return only the first one in the collection. If you need to retrieve all elements with a Name property of windowId, use the GetElementsByName method instead.
.NET Framework
Available since 2.0
Available since 2.0
Show: