언어

IDtsVariableService.PromptAndCreateVariable 메서드

정의

새로운 변수를 생성하는 프롬프트를 생성합니다.

오버로드

Name Description
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 인스턴스입니다.

적용 대상