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 the type of a user-supplied callback routine, called by SftTree/DLL whenever an item is removed from the tree control.
typedef void (CALLBACK* SFTTREE_DELETEPROC)( HWND hwnd, int index, SFTTREE_DWORD_PTR itemData, SFTTREE_DWORD_PTR UserData);
hwnd
The window handle of the tree control.
index
The zero-based index of the item currently being deleted.
itemData
The application-specific value associated with the item being deleted, set using SetItemData and SetItemDataPtr.
UserData
An application-specific value, as supplied in the SFTTREE_DELETEPARM structure.
Defines the type of a user-supplied callback routine, called by SftTree/DLL whenever an item is removed from the tree control.
A deletion callback is defined using SetDeleteCallback. The callback receives control when an item is about to be deleted. The callback can then perform application specific cleanup processing for the item being deleted. The callback routine is called immediately before the item is deleted.
If cell item data is used, GetCellInfo can be used to retrieve the cell information.
The callback must not update the tree control in any way.
See Also C/C++ API | Categories | Notifications