WizardFramework.OnValidityChanged Method

Definition

Confirms that a page has changed, and then refreshes the navigation panel and notifies the other pages.

Overloads

OnValidityChanged(Page)

Confirms that the specified page has changed, and then refreshes the navigation panel and notifies the other pages.

OnValidityChanged(Int32)

Confirms that the page that has the specified ID has changed, and then refreshes the navigation panel and notifies the other pages.

OnValidityChanged(Page)

Confirms that the specified page has changed, and then refreshes the navigation panel and notifies the other pages.

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

Parameters

page
Page

A Page object that represents the page that has changed.

Applies to

OnValidityChanged(Int32)

Confirms that the page that has the specified ID has changed, and then refreshes the navigation panel and notifies the other pages.

public:
 virtual void OnValidityChanged(int pageId);
public void OnValidityChanged (int pageId);
abstract member OnValidityChanged : int -> unit
override this.OnValidityChanged : int -> unit
Public Sub OnValidityChanged (pageId As Integer)

Parameters

pageId
Int32

The ID of the page that has changed.

Applies to