IDtsVariableService.PromptAndCreateVariable 메서드

정의

프롬프트를 표시한 다음 새 변수를 만듭니다.

오버로드

PromptAndCreateVariable(IWin32Window, DtsContainer)

프롬프트를 표시한 다음 새 변수를 만듭니다.

PromptAndCreateVariable(IWin32Window, DtsContainer, String)

프롬프트를 표시한 다음 지정한 창 및 컨테이너에 대한 변수를 만듭니다. 이 메서드는 사용자 인터페이스의 변수를 사용할 때 필요한 도우미 메서드입니다.

PromptAndCreateVariable(IWin32Window, DtsContainer, String, String, Type)

프롬프트를 표시한 다음 지정한 창, 컨테이너 및 네임스페이스에 대한 변수를 만듭니다. 이 메서드는 사용자 인터페이스의 변수를 사용할 때 필요한 도우미 메서드입니다.

PromptAndCreateVariable(IWin32Window, DtsContainer)

프롬프트를 표시한 다음 새 변수를 만듭니다.

public:
 Microsoft::SqlServer::Dts::Runtime::Variable ^ PromptAndCreateVariable(System::Windows::Forms::IWin32Window ^ parentWindow, Microsoft::SqlServer::Dts::Runtime::DtsContainer ^ dtsContainer);
public Microsoft.SqlServer.Dts.Runtime.Variable PromptAndCreateVariable (System.Windows.Forms.IWin32Window parentWindow, Microsoft.SqlServer.Dts.Runtime.DtsContainer dtsContainer);
abstract member PromptAndCreateVariable : System.Windows.Forms.IWin32Window * Microsoft.SqlServer.Dts.Runtime.DtsContainer -> Microsoft.SqlServer.Dts.Runtime.Variable
Public Function PromptAndCreateVariable (parentWindow As IWin32Window, dtsContainer As DtsContainer) As Variable

매개 변수

parentWindow
IWin32Window

디자이너의 IWin32Window입니다.

dtsContainer
DtsContainer

변수가 속한 기본 컨테이너입니다.

반환

Variable 인스턴스입니다.

적용 대상

PromptAndCreateVariable(IWin32Window, DtsContainer, String)

프롬프트를 표시한 다음 지정한 창 및 컨테이너에 대한 변수를 만듭니다. 이 메서드는 사용자 인터페이스의 변수를 사용할 때 필요한 도우미 메서드입니다.

public:
 Microsoft::SqlServer::Dts::Runtime::Variable ^ PromptAndCreateVariable(System::Windows::Forms::IWin32Window ^ parentWindow, Microsoft::SqlServer::Dts::Runtime::DtsContainer ^ dtsContainer, System::String ^ defaultName);
public Microsoft.SqlServer.Dts.Runtime.Variable PromptAndCreateVariable (System.Windows.Forms.IWin32Window parentWindow, Microsoft.SqlServer.Dts.Runtime.DtsContainer dtsContainer, string defaultName);
abstract member PromptAndCreateVariable : System.Windows.Forms.IWin32Window * Microsoft.SqlServer.Dts.Runtime.DtsContainer * string -> Microsoft.SqlServer.Dts.Runtime.Variable
Public Function PromptAndCreateVariable (parentWindow As IWin32Window, dtsContainer As DtsContainer, defaultName As String) As Variable

매개 변수

parentWindow
IWin32Window

디자이너의 IWin32Window입니다.

dtsContainer
DtsContainer

변수가 속한 기본 컨테이너입니다.

defaultName
String

변수의 기본 이름입니다.

반환

Variable 인스턴스입니다.

적용 대상

PromptAndCreateVariable(IWin32Window, DtsContainer, String, String, Type)

프롬프트를 표시한 다음 지정한 창, 컨테이너 및 네임스페이스에 대한 변수를 만듭니다. 이 메서드는 사용자 인터페이스의 변수를 사용할 때 필요한 도우미 메서드입니다.

public:
 Microsoft::SqlServer::Dts::Runtime::Variable ^ PromptAndCreateVariable(System::Windows::Forms::IWin32Window ^ parentWindow, Microsoft::SqlServer::Dts::Runtime::DtsContainer ^ dtsContainer, System::String ^ defaultName, System::String ^ defaultNamespace, Type ^ defaultType);
public Microsoft.SqlServer.Dts.Runtime.Variable PromptAndCreateVariable (System.Windows.Forms.IWin32Window parentWindow, Microsoft.SqlServer.Dts.Runtime.DtsContainer dtsContainer, string defaultName, string defaultNamespace, Type defaultType);
abstract member PromptAndCreateVariable : System.Windows.Forms.IWin32Window * Microsoft.SqlServer.Dts.Runtime.DtsContainer * string * string * Type -> Microsoft.SqlServer.Dts.Runtime.Variable
Public Function PromptAndCreateVariable (parentWindow As IWin32Window, dtsContainer As DtsContainer, defaultName As String, defaultNamespace As String, defaultType As Type) As Variable

매개 변수

parentWindow
IWin32Window

디자이너의 IWin32Window입니다.

dtsContainer
DtsContainer

변수가 속한 기본 컨테이너입니다.

defaultName
String

변수의 기본 이름입니다.

defaultNamespace
String

변수가 속할 기본 네임스페이스입니다.

defaultType
Type

변수의 기본 형식입니다.

반환

Variable 인스턴스입니다.

적용 대상