WindowsFormsComponentEditor.GetInitialComponentEditorPageIndex Method

Gets the index of the initial component editor page for the component editor to display.

Namespace: System.Windows.Forms.Design
Assembly: System.Windows.Forms (in system.windows.forms.dll)

protected:
virtual int GetInitialComponentEditorPageIndex ()
protected int GetInitialComponentEditorPageIndex ()
protected function GetInitialComponentEditorPageIndex () : int

Return Value

The index of the component editor page that the component editor will initially display.

The following code example demonstrates an example implementation of a GetInitialComponentEditorPageIndex method override.

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

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

Community Additions

ADD
Show: