Called to update which page is shown.

Namespace: System.Extensions.Windows.Forms
Assembly: System.Extensions (in System.Extensions.dll) Version: 0.0.0.5 (0.0.0.5)

Syntax

C#
protected virtual void DoUpdatePage(
	int newIndex,
	bool forceRefresh
)
Visual Basic
Protected Overridable Sub DoUpdatePage ( 
	newIndex As Integer,
	forceRefresh As Boolean
)
Visual C++
protected:
virtual void DoUpdatePage(
	int newIndex, 
	bool forceRefresh
)
F#
abstract DoUpdatePage : 
        newIndex : int * 
        forceRefresh : bool -> unit 
override DoUpdatePage : 
        newIndex : int * 
        forceRefresh : bool -> unit 

Parameters

newIndex
Type: System..::..Int32
The index of the page that will be shown.
forceRefresh
Type: System..::..Boolean
Whether to forcefully cause a refresh even if it doesn't seem to need one.

See Also