PartitionableListAddBehavior Enumeration |
Determines the behavior when an item is inserted in the PartitionableList
Namespace: Altaxo.CollectionsAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax public enum PartitionableListAddBehavior
Members Member name | Value | Description |
---|
KeepTogether_AddLastIfEmpty | 0 | If there are items in the partial view, the new item is added to the parent list immediately after the last item of the partial view. If the partial view is empty, the new item is added to the parent list as the last item. |
KeepTogether_AddFirstIfEmpty | 1 | If there are items in the partial view, the new item is added to the parent list immediately after the last item of the partial view. If the partial view is empty, the new item is inserted in the parent list at index 0. |
AddLast_AddLastIfEmpty | 2 | If there are items in the partial view, the new item is added to the parent list as the last item. If the partial view is empty, the new item is added to the parent list as the last item. |
AddLast_AddFirstIfEmpty | 3 | If there are items in the partial view, the new item is added to the parent list as the last item. If the partial view is empty, the new item is inserted in the parent list at index 0. |
See Also