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の を使用してToolName、、AssemblyNameBitmapNameおよび 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

表示の名前。

適用対象