SftTabs/DLL 6.0

Create

Softel vdm, Inc.

Creates a tab control window and attaches it to the CSftTabs object.

C++

BOOL CSftTabs::Create(DWORD dwStyle, const RECT& rect, CWnd* pParentWnd, UINT nID);

Parameters

dwStyle

Specifies the window style of the tab control.

rect

Specifies the tab control size and location. Can be a CRect object or a RECT structure.

pParentWnd

Specifies the tab control's parent window (usually a CDialog or a CView object).

nID

Specifies the tab control's ID.

Returns

The return value is TRUE if the function was successful, otherwise FALSE is returned.

Comments

The Create function creates a tab control window and attaches it to the CSftTabs object.

A CSftTabs object is created in two steps. First the CSftTabs constructor is called, then the CSftTabs::Create member function, which initializes the tab control window and attaches it to the CSftTabs object.

Example

This example creates a tab control:

C++

CSftTabs Tab; 
Tab.Create(WS_CHILD|WS_VISIBLE|SFTTABSSTYLE_STANDARD_LEFT,
     CRect(250, 200, 400, 700), 
     pParentWnd, 
     IDC_TAB);

See Also  C/C++ API  |  C++ Classes  |  Notifications


Feedback / comments / error reports for this topic
© 2016 - Softel vdm, Inc. - www.softelvdm.com