IDtsDesignerUtilitiesService 인터페이스

Provides methods that let Integration Services developers invoke the Expression Builder dialog box programmatically.

네임스페이스:  Microsoft.SqlServer.Dts.Design
어셈블리:  Microsoft.SqlServer.Dts.Design(Microsoft.SqlServer.Dts.Design.dll)

구문

‘선언
Public Interface IDtsDesignerUtilitiesService
‘사용 방법
Dim instance As IDtsDesignerUtilitiesService
public interface IDtsDesignerUtilitiesService
public interface class IDtsDesignerUtilitiesService
type IDtsDesignerUtilitiesService =  interface end
public interface IDtsDesignerUtilitiesService

IDtsDesignerUtilitiesService 유형에서 다음 멤버를 표시합니다.

메서드

  이름 설명
공용 메서드 EditExpression Displays the Expression Builder dialog box that lets the end user use the Integration Services expression language to create and test an expression.
공용 메서드 EditPropertyExpression Displays the Expression Builder dialog box that lets the end user use the Integration Services expression language to create and test a property expression.

맨 위로 이동

주의

The IDtsDesignerUtilitiesService interface provides two methods, EditExpression and EditPropertyExpression, that let you invoke the Expression Builder dialog box programmatically. You might incorporate these methods into a custom user interface for an Integration Services connection manager, foreach enumerator, task, or data flow component.

Use the EditExpression method whenever you want to let the user create or modify an expression. However, to modify a property expression, the EditPropertyExpression method might be more useful. The EditPropertyExpression method determines the return type of the expression from the data type of the property and assigns the expression to the property for you.

The following example shows how to cache a reference to a ServiceProvider whose type is IDtsDesignerUtilitiesService.

Dim designerUtilitiesService As IDtsDesignerUtilitiesService
designerUtilitiesService = _
      DirectCast(_serviceProvider.GetService(GetType(IDtsDesignerUtilitiesService)), IDtsDesignerUtilitiesService)
IDtsDesignerUtilitiesService designerUtilitiesService;
designerUtilitiesService = (IDtsDesignerUtilitiesService)_serviceProvider.GetService(typeof(IDtsDesignerUtilitiesService));

참고 항목

참조

Microsoft.SqlServer.Dts.Design 네임스페이스