Notifies the data flow designer at design time that the user interface of the component will manage the component viewer by itself.
네임스페이스: Microsoft.SqlServer.Dts.Pipeline.Design
어셈블리: Microsoft.SqlServer.Dts.Design (in microsoft.sqlserver.dts.design.dll)
구문
‘선언
<AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple:=False)> _
Public NotInheritable Class CustomComponentViewHandlerAttribute
Inherits Attribute
[AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false)]
public sealed class CustomComponentViewHandlerAttribute : Attribute
[AttributeUsageAttribute(AttributeTargets::Class, AllowMultiple=false)]
public ref class CustomComponentViewHandlerAttribute sealed : public Attribute
/** @attribute AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false) */
public final class CustomComponentViewHandlerAttribute extends Attribute
AttributeUsageAttribute(AttributeTargets.Class, AllowMultiple=false)
public final class CustomComponentViewHandlerAttribute extends Attribute
주의
This attribute is typically used by components where design-time modifications have side effects outside the component itself and where the component manages other components in the data flow. For example, the Slowly Changing Dimension Transformation creates an entire sequence of data flow components and may also delete other objects.
Inheritance Hierarchy
System.Object
System.Attribute
Microsoft.SqlServer.Dts.Pipeline.Design.CustomComponentViewHandlerAttribute
예
The following sample shows the CustomComponentViewHandlerAttribute attribute applied to a class.
[CustomComponentViewHandler]
public class MyComponentUI
{
...
]
<CustomComponentViewHandler> _
Public Class MyComponentUI
...
End Class
스레드 보안
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
플랫폼
개발 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
대상 플랫폼
지원되는 플랫폼 목록은 SQL Server 2005 설치를 위한 하드웨어 및 소프트웨어 요구 사항을 참조하십시오.
참고 항목
참조
CustomComponentViewHandlerAttribute Members
Microsoft.SqlServer.Dts.Pipeline.Design Namespace