11-19-2024, 01:53 PM
Hi,
1] You have to add the items in a loop one at a time, or if they can be set from an existing SB array (LDList.CreateFromIndices or LDList.CreateFromValues) or from a file (LDList.Read), so it depends on the source of the data for the list.
2] When an item is added to the List it is appended to the end. Internally the items in a list are re-ordered as the list changes, so the indices always run from 1 to LDList.Count.
1] You have to add the items in a loop one at a time, or if they can be set from an existing SB array (LDList.CreateFromIndices or LDList.CreateFromValues) or from a file (LDList.Read), so it depends on the source of the data for the list.
2] When an item is added to the List it is appended to the end. Internally the items in a list are re-ordered as the list changes, so the indices always run from 1 to LDList.Count.