|
|
|
SftTreeItems.Remove Method |
Removes an item.
Syntax
VB.NET |
object.Remove(ByVal ItemIndex As Integer) |
||
VB |
object.Remove(ByVal ItemIndex As Long) |
||
C#.NET |
void object.Remove(int ItemIndex); |
||
VC++ |
HRESULT object->Remove(long ItemIndex); |
||
C |
HRESULT object->raw_Remove(long ItemIndex); |
||
Delphi |
procedure object.Remove(ItemIndex : Integer); |
object
A SftTreeItems object.
ItemIndex
The zero-based index of the item to remove.
Comments
The Remove method removes an item.
If a parent item is deleted, dependents are deleted if the parent item is collapsed (dependents are not visible). If the parent item is expanded when it is deleted, its dependents are not deleted. The Item.Expanded property can be used to determine if an item is expanded. The Item.DeleteDependents method can be used to delete an item's dependents.
If many items have to be deleted, the BulkUpdate property can be used to indicate a mass-update, which is significantly faster.
See Also SftTreeItems Object | Object Hierarchy