SEC3DTabWnd::Create
BOOLSEC3DTabWnd::Create(CWnd*pParentWnd, DWORDdwStyle, UINTnID)
You construct an SEC3DTabWnd object in two steps. First call the constructor SEC3DTabWnd, then call Create, which initializes the Windows window, attaches it to the SEC3DTabWnd object, and creates the fonts used to draw tab labels.
Apply the following window styles to an SEC3DTabWnd object:
WS_CHILD - Always.
WS_VISIBLE - Usually.
TWS_TABS_ON_BOTTOM - Creates the window with tabs on the bottom.
TWS_TABS_ON_TOP - Creates the window with tabs on the top.
TWS_TABS_ON_LEFT - Creates the window with tabs on the left.
TWS_TABS_ON_RIGHT - Creates the window with tabs on the right.
TWS_NOACTIVE_TAB_ENLARGED - When set, the active tab will not be drawn with emphasis.
Defined in: tabwnd3.cpp
Return Value
Returns TRUE on success; FALSE otherwise.
Parameters
pParentWnd
Specifies the tabbed window’s parent window.
dwStyle
Specifies the style of the tabbed window.
nID
Specifies the tabbed window’s window ID.
See Also