XTree.Items has an index order for which one uses a for i := 0 to Pred(Count) loop to process.
Is this order always in the order of the visible tree?
Does this 'for' loop always process the items of the XTree in pre-order?
Does inserting, deleting, moving or exchanging items change the index order?
If an item is deleted with index = 2, are all the items with index > 2 renumbered so that 3 becomes 2, 4 becomes 3, and so on?
Is there anything that can change the pre-order nature of the for-loop?
Thanks
Raymond
Comments