WizardFramework.AddPage Method

Definition

Adds a page to the wizard.

Overloads

AddPage(Page)

Adds the specified page to the wizard.

AddPage(String)

Adds all the pages that are defined in the specified assembly to the wizard.

AddPage(Page, Page)

Adds a subpage to the wizard.

AddPage(String, Type)

Searches the specified assembly for pages whose type matches the specified type, and adds them to the wizard.

AddPage(Page)

Adds the specified page to the wizard.

public:
 virtual void AddPage(Microsoft::SqlServer::Management::SqlWizardFramework::Page ^ page);
public void AddPage (Microsoft.SqlServer.Management.SqlWizardFramework.Page page);
abstract member AddPage : Microsoft.SqlServer.Management.SqlWizardFramework.Page -> unit
override this.AddPage : Microsoft.SqlServer.Management.SqlWizardFramework.Page -> unit
Public Sub AddPage (page As Page)

Parameters

page
Page

The Page object to add.

Applies to

AddPage(String)

Adds all the pages that are defined in the specified assembly to the wizard.

public:
 virtual void AddPage(System::String ^ assemblyName);
public void AddPage (string assemblyName);
abstract member AddPage : string -> unit
override this.AddPage : string -> unit
Public Sub AddPage (assemblyName As String)

Parameters

assemblyName
String

The name of the assembly.

Applies to

AddPage(Page, Page)

Adds a subpage to the wizard.

public:
 virtual void AddPage(Microsoft::SqlServer::Management::SqlWizardFramework::Page ^ parentPage, Microsoft::SqlServer::Management::SqlWizardFramework::Page ^ page);
public void AddPage (Microsoft.SqlServer.Management.SqlWizardFramework.Page parentPage, Microsoft.SqlServer.Management.SqlWizardFramework.Page page);
abstract member AddPage : Microsoft.SqlServer.Management.SqlWizardFramework.Page * Microsoft.SqlServer.Management.SqlWizardFramework.Page -> unit
override this.AddPage : Microsoft.SqlServer.Management.SqlWizardFramework.Page * Microsoft.SqlServer.Management.SqlWizardFramework.Page -> unit
Public Sub AddPage (parentPage As Page, page As Page)

Parameters

parentPage
Page

A Page object that is the parent of the page to add.

page
Page

The Page object to add.

Applies to

AddPage(String, Type)

Searches the specified assembly for pages whose type matches the specified type, and adds them to the wizard.

public:
 virtual void AddPage(System::String ^ assemblyName, Type ^ typeSearch);
public void AddPage (string assemblyName, Type typeSearch);
abstract member AddPage : string * Type -> unit
override this.AddPage : string * Type -> unit
Public Sub AddPage (assemblyName As String, typeSearch As Type)

Parameters

assemblyName
String

The name of the assembly.

typeSearch
Type

The type of the page to search for.

Applies to