次の方法で共有


ToolboxItemWrapper コンストラクター

定義

ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

オーバーロード

名前 説明
ToolboxItemWrapper()

ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

ToolboxItemWrapper(Type)

ツールの型を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

ToolboxItemWrapper(Type, String)

ツールの種類と指定した表示名を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

ToolboxItemWrapper(Type, String, String)

ツールの種類とビットマップと表示の指定した名前を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

ToolboxItemWrapper(String, String, String, String)

ツール、アセンブリ、ビットマップ、および表示の名前を指定して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

ToolboxItemWrapper()

ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemWrapper();
public ToolboxItemWrapper();
Public Sub New ()

注釈

パラメーターなしのコンストラクターは、空のstringを使用して、ToolNameAssemblyNameBitmapName、およびDisplayNameプロパティを初期化します。

適用対象

ToolboxItemWrapper(Type)

ツールの型を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemWrapper(Type ^ toolType);
public ToolboxItemWrapper(Type toolType);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type)

パラメーター

toolType
Type

ツールの種類。

注釈

ToolNameプロパティとAssemblyName プロパティは、toolType パラメーターから抽出できます。 BitmapNameプロパティとDisplayName プロパティはそれぞれ、空のstringで初期化されます。

適用対象

ToolboxItemWrapper(Type, String)

ツールの種類と指定した表示名を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemWrapper(Type ^ toolType, System::String ^ displayName);
public ToolboxItemWrapper(Type toolType, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type, displayName As String)

パラメーター

toolType
Type

ツールの種類。

displayName
String

表示の名前。

注釈

ToolNameプロパティとAssemblyName プロパティは、toolType パラメーターから抽出できます。 BitmapName プロパティは、空のstringで初期化されます。

適用対象

ToolboxItemWrapper(Type, String, String)

ツールの種類とビットマップと表示の指定した名前を使用して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemWrapper(Type ^ toolType, System::String ^ bitmapName, System::String ^ displayName);
public ToolboxItemWrapper(Type toolType, string bitmapName, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : Type * string * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolType As Type, bitmapName As String, displayName As String)

パラメーター

toolType
Type

ツールの種類。

bitmapName
String

ビットマップの名前を含む string

displayName
String

ディスプレイの名前を含む string

注釈

ToolNameプロパティとAssemblyName プロパティは、toolType パラメーターから抽出できます。

適用対象

ToolboxItemWrapper(String, String, String, String)

ツール、アセンブリ、ビットマップ、および表示の名前を指定して、 ToolboxItemWrapper クラスの新しいインスタンスを初期化します。

public:
 ToolboxItemWrapper(System::String ^ toolName, System::String ^ assemblyName, System::String ^ bitmapName, System::String ^ displayName);
public ToolboxItemWrapper(string toolName, string assemblyName, string bitmapName, string displayName);
new System.Activities.Presentation.Toolbox.ToolboxItemWrapper : string * string * string * string -> System.Activities.Presentation.Toolbox.ToolboxItemWrapper
Public Sub New (toolName As String, assemblyName As String, bitmapName As String, displayName As String)

パラメーター

toolName
String

ツールの名前。

assemblyName
String

アセンブリの名前。

bitmapName
String

ビットマップの名前。

displayName
String

表示の名前。

適用対象