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()
{
    return new Type[] { typeof(ExampleComponentEditorPage),
                        typeof(ExampleComponentEditorPage) };
}

注意 (継承者)

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

適用対象