SftButton/DLL 3.0 - Button Control (Coming Soon)
SftTabs/DLL 7.0 - Tab Control (Coming Soon)
SftTree/DLL 7.5 - Tree Control
SftTree/DLL 8.0 - Tree Control (Coming Soon)
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
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
SftTree/NET 2.0 - Tree Control
Returns the highest level parent index number for an item.
C
int WINAPI SftTree_GetTopParent(HWND hwndCtl, int index); int WINAPI SftTreeSplit_GetTopParent(HWND hwndCtl, int index);
C++
int CSftTree::GetTopParent(int index) const; int CSftTreeSplit::GetTopParent(int index) const;
hwndCtl
The window handle of the tree control.
index
The zero-based index of the item for which the top parent item index is to be retrieved.
The return value is the zero-based index of the top parent item. -1 is returned if the item requested doesn't have a parent or if an error occurred.
The GetTopParent function returns the highest level parent index number for an item.
The index returned is a direct or indirect parent, which itself has no parent. To retrieve an immediate parent, use GetParent instead.
See Also C/C++ API | Categories | Notifications
