ApplicationView.AdjacentToLeftDisplayEdge Property
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.
Gets a value that indicates whether the current window is in close proximity to the left edge of the screen.
public:
property bool AdjacentToLeftDisplayEdge { bool get(); };
bool AdjacentToLeftDisplayEdge();
public bool AdjacentToLeftDisplayEdge { get; }
var boolean = applicationView.adjacentToLeftDisplayEdge;
Public ReadOnly Property AdjacentToLeftDisplayEdge As Boolean
Property Value
bool
true if the current window is in close proximity to the left edge of the screen; otherwise, false.
Remarks
The system raises the CoreWindow.SizeChanged event when the value of this property changes. This is exposed to XAML apps as the Window.SizeChanged event and to HTML apps as the window.resize event.
The property is a nonstatic member of the window object. For JavaScript, this means that it is a method of the window object that getForCurrentView creates, not of the ApplicationView class.