共用方式為


ToolboxService.GetToolboxItem 方法

定義

傳回指定型別的工具箱項目。

多載

GetToolboxItem(Type)

傳回指定型別的工具箱項目。

GetToolboxItem(Type, Boolean)

傳回指定型別的工具箱項目。

GetToolboxItem(Type)

傳回指定型別的工具箱項目。

public:
 static System::Drawing::Design::ToolboxItem ^ GetToolboxItem(Type ^ toolType);
public static System.Drawing.Design.ToolboxItem GetToolboxItem (Type toolType);
static member GetToolboxItem : Type -> System.Drawing.Design.ToolboxItem
Public Shared Function GetToolboxItem (toolType As Type) As ToolboxItem

參數

toolType
Type

要擷取工具箱項目的元件型別。

傳回

與指定型別關聯的工具箱項目,但如果該型別沒有對應的工具箱項目,則為 null

例外狀況

toolTypenull

適用於

GetToolboxItem(Type, Boolean)

傳回指定型別的工具箱項目。

public:
 static System::Drawing::Design::ToolboxItem ^ GetToolboxItem(Type ^ toolType, bool nonPublic);
public static System.Drawing.Design.ToolboxItem GetToolboxItem (Type toolType, bool nonPublic);
static member GetToolboxItem : Type * bool -> System.Drawing.Design.ToolboxItem
Public Shared Function GetToolboxItem (toolType As Type, nonPublic As Boolean) As ToolboxItem

參數

toolType
Type

要擷取工具箱項目的元件型別。

nonPublic
Boolean

若要在型別上搜尋非公用建構函式 (Constructor),則為 true,但若要搜尋公用建構函式,則為 false

傳回

與指定型別關聯的工具箱項目,但如果該型別沒有對應的工具箱項目,則為 null

例外狀況

toolTypenull

適用於