CustomComponentViewHandlerAttribute クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
設計時にデータフローデザイナーに、コンポーネントのユーザーインターフェースが単独でコンポーネントビューアを管理することを通知します。
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インスタンスを初期化します。 |