OverlappedPresenter.Restore Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Restore() |
Restores the window to the size and position it had before it was minimized or maximized. |
Restore(Boolean) |
Restores the window that the presenter is applied to and optionally makes it active. |
Restore()
Restores the window to the size and position it had before it was minimized or maximized.
public:
virtual void Restore() = Restore;
void Restore();
public void Restore();
function restore()
Public Sub Restore ()
See also
Applies to
Restore(Boolean)
Restores the window that the presenter is applied to and optionally makes it active.
public:
virtual void Restore(bool activateWindow) = Restore;
/// [Windows.Foundation.Metadata.Overload("RestoreWithActivation")]
void Restore(bool const& activateWindow);
[Windows.Foundation.Metadata.Overload("RestoreWithActivation")]
public void Restore(bool activateWindow);
function restore(activateWindow)
Public Sub Restore (activateWindow As Boolean)
Parameters
- activateWindow
-
Boolean
bool
true
if the window should be made active; otherwise, false
.
- Attributes
Remarks
If the activateWindow
parameter is true
, the window is activated; if false
, there is no change to its activation state.