CBaseControlWindow::put_WindowStyleEx
Microsoft DirectShow 9.0 |
CBaseControlWindow::put_WindowStyleEx
The put_WindowStyleEx method sets the extended window styles.
Syntax
HRESULT put_WindowStyleEx( long WindowStyleEx );
Parameters
WindowStyleEx
[in] Value that specifies the style of the control window.
Return Value
Returns NOERROR.
Remarks
This method uses extended window styles. For a complete list of extended window styles, see the Microsoft Win32 CreateWindowEx function. To change the window style, retrieve the current window style, and then add or remove the necessary bit fields.
Do not use the following window styles because they are not validated.
- WS_DISABLED
- WS_HSCROLL
- WS_ICONIC
- WS_MAXIMIZE
- WS_MINIMIZE
- WS_VSCROLL
With some exceptions (noted here), the acceptable flags are the same as those allowed by the Win32 CreateWindow function.
Requirements
** Header:** Declared in Ctlutil.h; include Streams.h.
** Library:** Use Strmbase.lib (retail builds) or Strmbasd.lib (debug builds).
See Also