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
Copies an item to a new position in the tree control.
Deprecated - Provided for compatibility with earlier versions only - Use Items.Copy instead
VB.NET | NewIndex = object.CopyItem(ByVal FromIndex As Integer, ByVal ToIndex As Integer) As Integer |
VB | NewIndex = object.CopyItem(ByVal FromIndex As Long, ByVal ToIndex As Long) As Long |
C#.NET | int NewIndex = object.CopyItem(int FromIndex, int ToIndex); |
VC++ | long NewIndex = object->CopyItem(long FromIndex, long ToIndex); |
C | HRESULT object->raw_CopyItem(long FromIndex, long ToIndex, long* NewIndex); |
object
FromIndex
The zero-based index of the item to be copied.
ToIndex
The zero-based index of the position where the item is to be inserted. If ToIndex is -1, the item will be added at the end of the list.
NewIndex
Returns the zero-based index of the newly inserted item.
Deprecated - Provided for compatibility with earlier versions only - Use Items.Copy instead
The CopyItem method copies an item to a new position in the tree control.
The CopyItem method copies all item attributes, including cell text, graphics, level, row header contents, etc. Also copied are the properties Cell.Data, Cell.DataString, Item.Data, etc. If these values should remain unique in an application, they have to be explicitly changed after copying items. The Item.DataString property is copied based on the settings of the CopyItemDataString property.
A group of items can be copied using the Items.Copy method. Items can be moved using the Items.Move method.
See Also SftTree Object | Object Hierarchy