WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex Método

Definición

Obtiene el índice de la página inicial del editor de componentes que este va a mostrar.

protected:
 virtual int GetInitialComponentEditorPageIndex();
protected virtual int GetInitialComponentEditorPageIndex ();
abstract member GetInitialComponentEditorPageIndex : unit -> int
override this.GetInitialComponentEditorPageIndex : unit -> int
Protected Overridable Function GetInitialComponentEditorPageIndex () As Integer

Devoluciones

Índice de la página del editor de componentes que este mostrará inicialmente.

Ejemplos

En el ejemplo de código siguiente se muestra una implementación de ejemplo de una GetInitialComponentEditorPageIndex invalidación de método.

// This method override returns the index of the page to display when the 
// component editor is first displayed.
protected override int GetInitialComponentEditorPageIndex()
{
    return 1;
}

Se aplica a