IVideoWindow::GetWindowPosition 方法 (control.h)

[与此页面关联的功能 DirectShow 是一项旧功能。 它已被 MediaPlayerIMFMediaEngine媒体基金会中的音频/视频捕获取代。 这些功能已针对Windows 10和Windows 11进行了优化。 Microsoft 强烈建议新代码尽可能使用 MediaPlayerIMFMediaEngineMedia Foundation 中的音频/视频捕获 ,而不是 DirectShow。 如果可能,Microsoft 建议重写使用旧 API 的现有代码以使用新 API。]

方法 GetWindowPosition 检索视频窗口的位置。

语法

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

参数

[out] pLeft

接收 x 坐标(以像素为单位)。

[out] pTop

接收 y 坐标(以像素为单位)。

[out] pWidth

接收窗口的宽度(以像素为单位)。

[out] pHeight

接收窗口的高度(以像素为单位)。

返回值

可能的返回值包括:

返回代码 说明
E_POINTER
NULL 指针。
S_OK
成功。
VFW_E_NOT_CONNECTED
视频呈现器筛选器未连接。

注解

此方法与调用 IVideoWindow::get_LeftIVideoWindow::get_TopIVideoWindow::get_WidthIVideoWindow::get_Height 方法具有相同的效果。

要求

要求
最低受支持的客户端 Windows 2000 Professional [仅限桌面应用]
最低受支持的服务器 Windows 2000 Server [仅限桌面应用]
目标平台 Windows
标头 control.h (包括 Dshow.h)
Library Strmiids.lib

另请参阅

错误和成功代码

IVideoWindow 接口

IVideoWindow::SetWindowPosition