CustomTypeDescriptor.GetProperties メソッド

定義

この型記述子によって表されるオブジェクトのプロパティ記述子のコレクションを返します。

オーバーロード

GetProperties()

この型記述子によって表されるオブジェクトのプロパティ記述子のコレクションを返します。

GetProperties(Attribute[])

この型記述子によって表されるオブジェクトのプロパティ記述子のフィルター処理されたコレクションを返します。

注釈

メソッドは GetProperties 、この型記述子が表すオブジェクトのプロパティ記述子のコレクションを返します。 返されるコレクションをフィルター処理するために、省略可能な属性配列を指定できます。 親が指定されていない場合、 メソッドは を返します Empty

GetProperties()

ソース:
CustomTypeDescriptor.cs
ソース:
CustomTypeDescriptor.cs
ソース:
CustomTypeDescriptor.cs

この型記述子によって表されるオブジェクトのプロパティ記述子のコレクションを返します。

public:
 virtual System::ComponentModel::PropertyDescriptorCollection ^ GetProperties();
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties ();
abstract member GetProperties : unit -> System.ComponentModel.PropertyDescriptorCollection
override this.GetProperties : unit -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function GetProperties () As PropertyDescriptorCollection

戻り値

この型記述子によって表されるオブジェクトのプロパティ記述子を格納している PropertyDescriptorCollection。 既定値は、Empty です。

実装

注釈

親カスタム型記述子がコンストラクターに CustomTypeDescriptor 渡された場合、 GetProperties メソッドは親の対応するメソッドを呼び出します。

こちらもご覧ください

適用対象

GetProperties(Attribute[])

ソース:
CustomTypeDescriptor.cs
ソース:
CustomTypeDescriptor.cs
ソース:
CustomTypeDescriptor.cs

この型記述子によって表されるオブジェクトのプロパティ記述子のフィルター処理されたコレクションを返します。

public:
 virtual System::ComponentModel::PropertyDescriptorCollection ^ GetProperties(cli::array <Attribute ^> ^ attributes);
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties (Attribute[] attributes);
public virtual System.ComponentModel.PropertyDescriptorCollection GetProperties (Attribute[]? attributes);
abstract member GetProperties : Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
override this.GetProperties : Attribute[] -> System.ComponentModel.PropertyDescriptorCollection
Public Overridable Function GetProperties (attributes As Attribute()) As PropertyDescriptorCollection

パラメーター

attributes
Attribute[]

フィルターとして使用される属性の配列。 これは null でもかまいません。

戻り値

この型記述子によって表されるオブジェクトのプロパティ記述子を格納している PropertyDescriptorCollection。 既定値は、Empty です。

実装

注釈

パラメーターを attributes 使用して、返されるコレクションをフィルター処理できます。 フィルタールールについては、「」を参照してください GetProperties

親カスタム型記述子がコンストラクターに CustomTypeDescriptor 渡された場合、 GetProperties メソッドは親の対応するメソッドを呼び出します。

こちらもご覧ください

適用対象