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
Defines whether a size box is shown in the tree control's lower-right corner so the user can resize the control by dragging it.
C
BOOL WINAPI SftTree_GetSizeBox(HWND hwndCtl); BOOL WINAPI SftTree_GetSizeBoxActive(HWND hwndCtl); void WINAPI SftTree_SetSizeBox(HWND hwndCtl, BOOL fSet); BOOL WINAPI SftTreeSplit_GetSizeBox(HWND hwndCtl); BOOL WINAPI SftTreeSplit_GetSizeBoxActive(HWND hwndCtl); void WINAPI SftTreeSplit_SetSizeBox(HWND hwndCtl, BOOL fSet);
C++
BOOL CSftTree::GetSizeBox() const; BOOL CSftTree::GetSizeBoxActive() const; void CSftTree::SetSizeBox(BOOL fSet = TRUE); BOOL CSftTreeSplit::GetSizeBox() const; BOOL CSftTreeSplit::GetSizeBoxActive() const; void CSftTreeSplit::SetSizeBox(BOOL fSet = TRUE);
hwndCtl
The window handle of the tree control.
fSet
TRUE to show a size box in the tree control's lower-right corner, FALSE to suppress it.
GetSizeBox returns TRUE if a size box is shown, otherwise FALSE.
GetSizeBoxActive returns TRUE while the user is actively dragging the size box to resize the control, otherwise FALSE.
SetSizeBox has no return value.
The GetSizeBox and SetSizeBox functions control whether a size box is shown in the tree control's lower-right corner. The size box is a small grip the user can drag to resize the tree control.
The size box is hidden by default.
GetSizeBoxActive can be polled to detect whether the user is currently dragging the size box. This is useful when the application needs to suppress operations (e.g., layout updates) for the duration of an interactive resize.
See Also C/C++ API | Categories | Notifications
