ICustomTypeDescriptor.GetEvents メソッド

定義

コンポーネントのこのインスタンスのイベントを返します。

オーバーロード

GetEvents()

コンポーネントのこのインスタンスのイベントを返します。

GetEvents(Attribute[])

フィルターとして指定された属性配列を使用して、コンポーネントのこのインスタンスのイベントを返します。

GetEvents()

コンポーネントのこのインスタンスのイベントを返します。

public:
 System::ComponentModel::EventDescriptorCollection ^ GetEvents();
public System.ComponentModel.EventDescriptorCollection GetEvents ();
abstract member GetEvents : unit -> System.ComponentModel.EventDescriptorCollection
Public Function GetEvents () As EventDescriptorCollection

戻り値

このコンポーネント インスタンスのイベントを表す EventDescriptorCollection

注釈

このインスタンスのイベントは、クラスが提供するイベントのセットとは異なる場合があります。 たとえば、コンポーネントがサイトベースの場合、サイトは追加のイベントを追加または削除できます。

プロパティが指定されていない場合、実装者は を返 EventDescriptorCollection.Empty すことができます。 このメソッドは、 を返 nullすべきではありません。

こちらもご覧ください

適用対象

GetEvents(Attribute[])

フィルターとして指定された属性配列を使用して、コンポーネントのこのインスタンスのイベントを返します。

public:
 System::ComponentModel::EventDescriptorCollection ^ GetEvents(cli::array <Attribute ^> ^ attributes);
public System.ComponentModel.EventDescriptorCollection GetEvents (Attribute[] attributes);
public System.ComponentModel.EventDescriptorCollection GetEvents (Attribute[]? attributes);
abstract member GetEvents : Attribute[] -> System.ComponentModel.EventDescriptorCollection
Public Function GetEvents (attributes As Attribute()) As EventDescriptorCollection

パラメーター

attributes
Attribute[]

フィルターとして使用される Attribute 型の配列。

戻り値

このコンポーネント インスタンスのフィルター処理したイベントを表す EventDescriptorCollection

注釈

このインスタンスのイベントは、クラスが提供するイベントのセットとは異なる場合があります。 たとえば、コンポーネントがサイトベースの場合、サイトは追加のイベントを追加または削除できます。

Attributeが配列でattributes指定され、イベントにその属性のクラスのインスタンスがない場合、 が既定のイベントである場合Attribute、返される配列には イベントが含まれます。

こちらもご覧ください

適用対象