ICoreWindow.Bounds Property

Definition

Specifies the property that gets the bounding rectangle of the window.

public:
 property Rect Bounds { Rect get(); };
Rect Bounds();
public Rect Bounds { get; }
var rect = iCoreWindow.bounds;
Public ReadOnly Property Bounds As Rect

Property Value

The bounding rectangle of the window, in device-independent pixel (DIP).

Remarks

To convert from device-independent pixel (DIP) to physical pixels (and back), use the following equations (where DPI is the dots per inch value for the screen):

  • DIP value = (physical pixel x 96) / DPI
  • physical pixel value = (DIP x DPI) / 96

Applies to

See also