SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftMask/OCX 7.0 - Masked Edit Control
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftPrintPreview/DLL 2.0 - Print Preview Control (discontinued)
SftTree/DLL 7.5 - Tree Control
SftBox/OCX 5.0 - Combo Box Control
SftButton/OCX 3.0 - Button Control
SftDirectory 3.5 - File/Folder Control (discontinued)
SftMask/OCX 7.0 - Masked Edit Control
SftOptions 1.0 - Registry/INI Control (discontinued)
SftPrintPreview/OCX 1.0 - Print Preview Control (discontinued)
SftTabs/OCX 6.5 - Tab Control (VB6 only)
SftTree/OCX 7.5 - Tree Control
SftTabs/NET 6.0 - Tab Control (discontinued)
SftTree/NET 2.0 - Tree Control
Retrieves tab control attributes.
C
BOOL SftTabs_GetControlInfo(HWND hwndCtl, LPSFTTABS_CONTROL lpCtl);
C++
BOOL CSftTabs::GetControlInfo(LPSFTTABS_CONTROL lpCtl) const;
hwndCtl
The window handle of the tab control.
lpCtl
A pointer to a SFTTABS_CONTROL structure. This structure will be updated with the current tab control attributes.
The return value is TRUE if the function was successful, otherwise FALSE is returned.
The GetControlInfo function retrieves tab control attributes.
Some of the structure values returned can be modified and updated using SetControlInfo. See SFTTABS_CONTROL for more information.
C
SFTTABS_CONTROL Ctl; SftTabs_GetControlInfo(hwndTab, &Ctl); Ctl.nRows = 1; SftTabs_SetControlInfo(hwndTab, &Ctl);
C++
SFTTABS_CONTROL Ctl; m_Tab.GetControlInfo(&Ctl); Ctl.nRows = 1; m_Tab.SetControlInfo(&Ctl);
See Also C/C++ API | C++ Classes | Notifications