ToolboxService.GetItemContainers 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
傳回 IList,其中包含工具箱的所有項目。
多載
GetItemContainers() |
傳回 IList,其中包含工具箱的所有項目。 |
GetItemContainers(String) |
傳回 IList,其中包含指定分類中的所有項目。 |
備註
清單中的項目必須是 ToolboxItemContainer 物件。 如果工具箱實作是以類別組織,這會擷取所有類別的合併清單。 清單必須是可擦寫的,因為新專案可以新增至清單。
當工具箱服務加入新專案時,它會先呼叫 CreateItemContainer 方法,然後將新專案新增至 IList 從 方法傳回的 GetItemContainers 。
如果提供類別名稱,則應該只傳回該類別中的專案。 如果未指定任何類別,則應該傳回所有專案。
GetItemContainers()
傳回 IList,其中包含工具箱的所有項目。
protected:
abstract System::Collections::IList ^ GetItemContainers();
protected abstract System.Collections.IList GetItemContainers ();
abstract member GetItemContainers : unit -> System.Collections.IList
Protected MustOverride Function GetItemContainers () As IList
傳回
IList,其中包含工具箱的所有項目。
適用於
GetItemContainers(String)
傳回 IList,其中包含指定分類中的所有項目。
protected:
abstract System::Collections::IList ^ GetItemContainers(System::String ^ categoryName);
protected abstract System.Collections.IList GetItemContainers (string categoryName);
abstract member GetItemContainers : string -> System.Collections.IList
Protected MustOverride Function GetItemContainers (categoryName As String) As IList
參數
- categoryName
- String
要擷取項目容器清單的分類。
傳回
IList,其中包含由 categoryName
指定之分類中的所有項目。
備註
如果參數指定的 categoryName
類別不存在, GetItemContainers 方法應該擲回有意義的例外狀況。