IDTWizard.Execute メソッド
ウィザードを [項目の追加] ダイアログ ボックスまたは [新しいプロジェクト] ダイアログ ボックスから起動したときに発生します。
名前空間: EnvDTE
アセンブリ: EnvDTE (EnvDTE.dll 内)
構文
'宣言
Sub Execute ( _
Application As Object, _
hwndOwner As Integer, _
ByRef ContextParams As Object(), _
ByRef CustomParams As Object(), _
<OutAttribute> ByRef retval As wizardResult _
)
void Execute(
Object Application,
int hwndOwner,
ref Object[] ContextParams,
ref Object[] CustomParams,
out wizardResult retval
)
void Execute(
[InAttribute] Object^ Application,
[InAttribute] int hwndOwner,
[InAttribute] array<Object^>^% ContextParams,
[InAttribute] array<Object^>^% CustomParams,
[InAttribute] [OutAttribute] wizardResult% retval
)
abstract Execute :
Application:Object *
hwndOwner:int *
ContextParams:Object[] byref *
CustomParams:Object[] byref *
retval:wizardResult byref -> unit
function Execute(
Application : Object,
hwndOwner : int,
ContextParams : Object[],
CustomParams : Object[],
retval : wizardResult
)
パラメーター
- Application
型 : System.Object
Visual Studio 環境の最上位オートメーション オブジェクトへのディスパッチ ポインター。
- hwndOwner
型 : System.Int32
ウィザード ウィンドウの親の hWnd ハンドル。
- ContextParams
型 : array<System.Object[]%
[項目の追加] ダイアログ ボックスまたは [新しいプロジェクト] ダイアログ ボックスのどちらからウィザードを起動したかによって異なる要素の配列。使用できる値については、ContextParams を参照してください。
- CustomParams
型 : array<System.Object[]%
ウィザードの .vsz ファイルの param= ステートメントで決定される、ユーザー定義パラメーターの配列。この配列で渡されるパラメーターを使用して、ウィザードの動作と役割をカスタマイズできます。
- retval
型 : EnvDTE.wizardResult%
ウィザードの結果を指定する wizardResult 定数です。
解説
ウィザードで実行するコードを Execute メソッドに挿入します。
.NET Framework セキュリティ
- 直前の呼び出し元に対する完全な信頼。このメンバーは、部分的に信頼されているコードから使用することはできません。詳細については、「部分信頼コードからのライブラリの使用」を参照してください。