WindowsFormsComponentEditor.GetComponentEditorPages メソッド
コンポーネント エディタに関連付けられているコンポーネント エディタ ページを取得します。
Protected Overridable Function GetComponentEditorPages() As Type()
[C#]
protected virtual Type[] GetComponentEditorPages();
[C++]
protected: virtual Type* GetComponentEditorPages() [];
[JScript]
protected function GetComponentEditorPages() : Type[];
戻り値
コンポーネント エディタ ページの配列。
解説
継承時の注意: このメソッドの機能を実装するには、このメソッドをオーバーライドする必要があります。
使用例
[Visual Basic, C#, C++] GetComponentEditorPages メソッド オーバーライドを実装するコード例を次に示します。
' This method override returns an type array containing the type of
' each component editor page to display.
Protected Overrides Function GetComponentEditorPages() As Type()
Return New Type() {GetType(ExampleComponentEditorPage), GetType(ExampleComponentEditorPage)}
End Function
[C#]
// 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) };
}
[C++]
// This method override returns an type array containing the type of
// each component editor page to display.
protected:
Type*GetComponentEditorPages()[]
{
Type* temp0 [] = {__typeof(ExampleComponentEditorPage),
__typeof(ExampleComponentEditorPage)};
return temp0;
}
[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン をクリックします。
必要条件
プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ
参照
WindowsFormsComponentEditor クラス | WindowsFormsComponentEditor メンバ | System.Windows.Forms.Design 名前空間