Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Creates a control (a child window) and associates it with the CTabCtrl object.
virtual BOOL CreateEx(
  DWORD dwExStyle,
  DWORD dwStyle,
  const RECT& rect,
  CWnd* pParentWnd,
  UINT nID 
);
Parameters
- dwExStyle 
 Specifies the extended style of the control being created. For a list of extended Windows styles, see the dwExStyle parameter for CreateWindowEx in the Windows SDK.
- dwStyle 
 Specifies the tab control's style. Apply any combination of tab control styles, described in the Windows SDK. See Remarks in Create for a list of window styles that you can also apply to the control.
- rect 
 A reference to a RECT structure describing the size and position of the window to be created, in client coordinates of pParentWnd.
- pParentWnd 
 A pointer to the window that is the control's parent.
- nID 
 The control's child-window ID.
Return Value
Nonzero if successful otherwise 0.
Remarks
Use CreateEx instead of Create to apply extended Windows styles, specified by the Windows extended style preface WS_EX_.
CreateEx creates the control with the extended Windows styles specified by dwExStyle. Set extended styles specific to a control using SetExtendedStyle. For example, use CreateEx to set such styles as WS_EX_CONTEXTHELP, but use SetExtendedStyle to set such styles as TCS_EX_FLATSEPARATORS. For more information, see the styles described in Tab Control Extended Styles in the Windows SDK.
Requirements
Header: afxcmn.h