OverlappedPresenter.Minimize Method

Definition

Overloads

Minimize()

Minimizes the window that the presenter is applied to.

Minimize(Boolean)

Minimizes the window that the presenter is applied to and optionally makes it active.

Minimize()

Minimizes the window that the presenter is applied to.

public:
 virtual void Minimize() = Minimize;
void Minimize();
public void Minimize();
function minimize()
Public Sub Minimize ()

See also

Applies to

Minimize(Boolean)

Minimizes the window that the presenter is applied to and optionally makes it active.

public:
 virtual void Minimize(bool activateWindow) = Minimize;
/// [Windows.Foundation.Metadata.Overload("MinimizeWithActivation")]
void Minimize(bool const& activateWindow);
[Windows.Foundation.Metadata.Overload("MinimizeWithActivation")]
public void Minimize(bool activateWindow);
function minimize(activateWindow)
Public Sub Minimize (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.

Applies to