다음을 통해 공유


VsWizardClass.Execute 메서드

마법사가 Add New Item 또는 New Project 대화 상자에서 시작될 때 호출됩니다.

네임스페이스:  Microsoft.VisualStudio.VsWizard
어셈블리:  Microsoft.VisualStudio.VsWizard(Microsoft.VisualStudio.VsWizard.dll)

구문

‘선언
Public Overridable Sub Execute ( _
    Application As Object, _
    hwndOwner As Integer, _
    ByRef ContextParams As Object(), _
    ByRef CustomParams As Object(), _
    <OutAttribute> ByRef retval As wizardResult _
)
public virtual void Execute(
    Object Application,
    int hwndOwner,
    ref Object[] ContextParams,
    ref Object[] CustomParams,
    out wizardResult retval
)
public:
virtual 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  
override Execute : 
        Application:Object * 
        hwndOwner:int * 
        ContextParams:Object[] byref * 
        CustomParams:Object[] byref * 
        retval:wizardResult byref -> unit
public function Execute(
    Application : Object, 
    hwndOwner : int, 
    ContextParams : Object[], 
    CustomParams : Object[], 
    retval : wizardResult
)

매개 변수

  • Application
    형식: Object

    필수입니다. Visual Studio 환경의 최상위 수준 자동화 개체에 대한 디스패치 포인터입니다.

  • hwndOwner
    형식: Int32

    필수입니다. 이 마법사 창의 부모에 대한 hWnd 핸들입니다.

  • ContextParams
    형식: array<Object[]%

    필수입니다. 마법사가 새 항목 추가 대화 상자에서 시작되었는지 새 프로젝트 대화 상자에서 시작되었는지에 따라 변하는 요소 배열입니다. 사용할 수 있는 값 목록에 대한 ContextParams Enum을 참조하십시오.

  • CustomParams
    형식: array<Object[]%

    필수입니다. 마법사의 .vsz 파일에 있는 param= 문에 의해 결정되는 사용자 정의 매개 변수 배열입니다. 이 배열로 전달된 매개 변수를 사용하여 마법사의 동작과 역할을 사용자 지정할 수 있습니다. 사용 가능한 값 목록은 미리 정의된 CustomWizard Symbols를 참조하십시오.

  • retval
    형식: wizardResult%

    작업 결과입니다. wizardResult 열거형의 값입니다.

구현

IDTWizard.Execute(Object, Int32, Object, Object, wizardResult)

설명

Execute해당 마법사를 표시 하는 마법사 작성기에 의해 구현 됩니다. 마법사를 시작할 때 호출 되는 새 항목 추가 또는 새 프로젝트 대화 상자.

.NET Framework 보안

참고 항목

참조

VsWizardClass 클래스

Microsoft.VisualStudio.VsWizard 네임스페이스

기타 리소스

마법사 디자인

Visual C++ 확장성 개체 모델