IDesignerFilter.PreFilterProperties メソッド
派生クラスでオーバーライドされた場合、デザイナが TypeDescriptor を通じて公開する一連のプロパティに項目を追加できるようにします。
Sub PreFilterProperties( _
ByVal properties As IDictionary _)
[C#]
void PreFilterProperties(
IDictionaryproperties);
[C++]
void PreFilterProperties(
IDictionary* properties);
[JScript]
function PreFilterProperties(
properties : IDictionary);
パラメータ
- properties
コンポーネントのクラスのプロパティを表す PropertyDescriptor オブジェクト。プロパティのディクショナリ内でのキーは、プロパティ名です。
解説
このメソッドは、 TypeDescriptor を通じてデザイナが公開するプロパティのディクショナリに項目を追加する手段を提供します。
プロパティのディクショナリ内でのキーは、プロパティの名前です。このオブジェクトは PropertyDescriptor 型です。このメソッドは、 PostFilterProperties の直前に呼び出されます。
実装時の注意: properties パラメータを通じてアクセスできるディクショナリは、直接変更するか、そのままにしておくことができます。このメソッドをオーバーライドする場合は、独自のフィルタ処理を実行する前に、基本の実装を呼び出します。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
IDesignerFilter インターフェイス | IDesignerFilter メンバ | System.ComponentModel.Design 名前空間 | FilterProperties