WindowsFormsComponentEditor.GetComponentEditorPages 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
구성 요소 편집기와 연결된 구성 요소 편집기 페이지를 가져옵니다.
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)];
상속자 참고
이 메서드의 기능을 구현하려면 이 메서드를 재정의해야 합니다.