Share via


IVideoWindow::GetWindowPosition (Compact 2013)

3/26/2014

This method retrieves the current window rectangle (not the client rectangle) in device coordinates.

Syntax

HRESULT GetWindowPosition(
  long* pLeft,
  long* pTop,
  long* pWidth,
  long* pHeight
);

Parameters

  • pLeft
    [out] Specifies the x-axis origin of the window.
  • pTop
    [out] Specifies the y-axis origin of the window.
  • pWidth
    [out] Width of the window in pixels.
  • pHeight
    [out] Height of the window in pixels.

Return Value

Returns an HRESULT value.

Remarks

This method has the same effect as individually calling the IVideoWindow::get_Left, IVideoWindow::get_Top, IVideoWindow::get_Width, and IVideoWindow::get_Height methods.

Requirements

Header

dshow.h

Library

Strmiids.lib

See Also

Reference

IVideoWindow Interface