TypeDescriptor.GetProperties メソッド (Object, Attribute , Boolean)
指定した属性配列をフィルタとして使用し、カスタムの型記述子を使用して、指定したコンポーネントのプロパティのコレクションを取得します。
Overloads Public Shared Function GetProperties( _
ByVal component As Object, _ ByVal attributes() As Attribute, _ ByVal noCustomTypeDesc As Boolean _) As PropertyDescriptorCollection
[C#]
public static PropertyDescriptorCollection GetProperties(objectcomponent,Attribute[] attributes,boolnoCustomTypeDesc);
[C++]
public: static PropertyDescriptorCollection* GetProperties(Object* component,Attribute* attributes[],boolnoCustomTypeDesc);
[JScript]
public static function GetProperties(
component : Object,attributes : Attribute[],noCustomTypeDesc : Boolean) : PropertyDescriptorCollection;
パラメータ
- component
プロパティを取得する対象のコンポーネント。 - attributes
フィルタとして使用される、 Attribute 型の配列。 - noCustomTypeDesc
ICustomTypeDescriptor のインスタンスが TypeDescriptor を呼び出す場合は true 。それ以外の場合は false 。
戻り値
指定したコンポーネントのプロパティのうち、指定した属性に一致するイベントを格納している PropertyDescriptorCollection 。
例外
例外の種類 | 条件 |
---|---|
ArgumentNullException | component パラメータが null 参照 (Visual Basic では Nothing) です。 |
解説
コンポーネントが配置された場合、その場所に応じてプロパティが追加または削除されることがあるため、コンポーネントのプロパティがクラスのプロパティとは異なる場合があります。
attributes の配列には、 Type オブジェクトと Attribute オブジェクトを組み合わせて指定できます。フィルタ処理は、次の規則で定義されます。
- Type オブジェクトはワイルドカードとして扱われます。このオブジェクトは、属性の 1 つとして Type を持つすべてのプロパティと一致します。
- プロパティが同じクラスの Attribute を持たない場合、返される配列にそのプロパティは含まれません。
- 属性が Attribute のインスタンスである場合、プロパティは厳密に一致している必要があります。厳密に一致しない場合、返される配列にそのプロパティは含まれません。
- Attribute インスタンスが指定され、そのインスタンスが既定のプロパティである場合は、プロパティが Attribute のインスタンスを持っていない場合でも、そのインスタンスは返される配列に含まれます。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
TypeDescriptor クラス | TypeDescriptor メンバ | System.ComponentModel 名前空間 | TypeDescriptor.GetProperties オーバーロードの一覧 | TypeDescriptor | EventDescriptor | PropertyDescriptor | PropertyDescriptorCollection | Attribute | ICustomTypeDescriptor