言語

CustomComponentViewHandlerAttribute クラス

定義

設計時にデータフローデザイナーに、コンポーネントのユーザーインターフェースが単独でコンポーネントビューアを管理することを通知します。

public ref class CustomComponentViewHandlerAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)]
public sealed class CustomComponentViewHandlerAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)>]
type CustomComponentViewHandlerAttribute = class
    inherit Attribute
Public NotInheritable Class CustomComponentViewHandlerAttribute
Inherits Attribute
継承
CustomComponentViewHandlerAttribute
属性

以下のサンプルはクラスに適用される CustomComponentViewHandlerAttribute 属性を示しています。

[CustomComponentViewHandler]  
public class MyComponentUI  
{  
   ...  
]  
<CustomComponentViewHandler> _  
Public Class MyComponentUI  
  ...  
End Class  

注釈

この属性は、設計時の変更がコンポーネント自体の外部に副作用を及ぼす場合や、そのコンポーネントがデータフロー内の他のコンポーネントを管理する場合に通常使われます。 例えば、Slowly Changing Dimension Transformationはデータフローコンポーネントのシーケンス全体を作成し、他のオブジェクトを削除することもあります。

コンストラクター

名前 説明
CustomComponentViewHandlerAttribute()

新しい CustomComponentViewHandlerAttributeインスタンスを初期化します。

適用対象