Microsoft DirectX 8.1 (C++) |
The get_Visible method queries whether the video window is visible.
Syntax
HRESULT get_Visible(
long *pVisible
);
Parameters
pVisible
[out] Pointer to a variable that receives the value OATRUE if the window is visible, or OAFALSE if the window is hidden.
Return Values
Possible return values include the following:
Value | Description |
E_POINTER | NULL pointer. |
S_OK | Success. |
VFW_E_NOT_CONNECTED | The pins are not connected. |
Remarks
This method checks for the WS_VISIBLE style bit, by calling the Windows IsWindowVisible method.
See Also