HtmlWindowCollection.Item[] 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
透過某項目的 name
屬性或是它在集合中的位置來擷取該項目。
多載
Item[Int32] |
藉由提供集合中的框架位置來擷取框架視窗。 |
Item[String] |
藉由提供框架的名稱來擷取框架視窗。 |
備註
Item[] 可讓您使用數位語法存取集合的專案。
Item[Int32]
藉由提供集合中的框架位置來擷取框架視窗。
public:
property System::Windows::Forms::HtmlWindow ^ default[int] { System::Windows::Forms::HtmlWindow ^ get(int index); };
public System.Windows.Forms.HtmlWindow this[int index] { get; }
public System.Windows.Forms.HtmlWindow? this[int index] { get; }
member this.Item(int) : System.Windows.Forms.HtmlWindow
Default Public ReadOnly Property Item(index As Integer) As HtmlWindow
參數
- index
- Int32
HtmlWindow 在集合中的位置。
屬性值
HtmlWindow,對應到要求的框架。
例外狀況
index
大於集合中的項目數。
備註
HtmlWindowCollection 是以零起始的集合。 如果集合中有 N 個元素,則的有效自變數 Item[] 是從 0 到 N-1 的整數。
Windows 不會以 HtmlWindowCollection 任何預先決定的順序配置。
另請參閱
適用於
Item[String]
藉由提供框架的名稱來擷取框架視窗。
public:
property System::Windows::Forms::HtmlWindow ^ default[System::String ^] { System::Windows::Forms::HtmlWindow ^ get(System::String ^ windowId); };
public System.Windows.Forms.HtmlWindow this[string windowId] { get; }
public System.Windows.Forms.HtmlWindow? this[string windowId] { get; }
member this.Item(string) : System.Windows.Forms.HtmlWindow
Default Public ReadOnly Property Item(windowId As String) As HtmlWindow
參數
- windowId
- String
要擷取之 HtmlWindow 的名稱。
屬性值
HtmlWindow 項目,對應到提供的名稱。
例外狀況
windowId
不是目前文件中或是其任何子系中的 Frame
物件名稱。
備註
Item[] 會傳回單一元素,其 Name 屬性對應至 elementId
。 如果檔包含多個具有相同名稱的專案, Item[] 則只會傳回集合中的第一個專案。 如果您需要擷 Name 取具有 屬性 windowId
的所有專案,請改用 GetElementsByName 方法。