ApplicationView.GetForCurrentView Method

Definition

Gets the view state and behavior settings of the active application.

public:
 static ApplicationView ^ GetForCurrentView();
 static ApplicationView GetForCurrentView();
public static ApplicationView GetForCurrentView();
function getForCurrentView()
Public Shared Function GetForCurrentView () As ApplicationView

Returns

An ApplicationView instance that can be used to get and set app display properties.

Remarks

This is a static member of the ApplicationView class. For JavaScript this means that it is a method of the ApplicationView class, not of the window object that getForCurrentView creates.

Caution

You can call ApplicationView.GetForCurrentView only after the CoreWindow has been constructed, so it is not safe to call this method in an app's constructor. Instead, the call should be deferred until Application.OnLaunched.

Applies to