WindowsFormsComponentEditor.GetComponentEditorPages メソッド

定義

コンポーネント エディターに関連付けられているコンポーネント エディター ページを取得します。

protected:
 virtual cli::array <Type ^> ^ GetComponentEditorPages();
protected virtual Type[] GetComponentEditorPages();
protected virtual Type[]? GetComponentEditorPages();
abstract member GetComponentEditorPages : unit -> Type[]
override this.GetComponentEditorPages : unit -> Type[]
Protected Overridable Function GetComponentEditorPages () As Type()

返品

Type[]

コンポーネント エディター ページの配列。

次のコード例は、 GetComponentEditorPages メソッドオーバーライドの実装例を示しています。

// This method override returns an type array containing the type of
// each component editor page to display.
protected override Type[] GetComponentEditorPages() => [typeof(ExampleComponentEditorPage), typeof(ExampleComponentEditorPage)];

注意 (継承者)

このメソッドの機能を実装するには、このメソッドをオーバーライドする必要があります。

適用対象