DuplicatesType
Revision as of 18:31, 11 July 2025 by Leunsel (talk | contribs) (Created page with "Category:Lua The '''DuplicatesType''' enumeration is used by the Stringlist class to determine how duplicate entries are handled when the list is...")
The DuplicatesType enumeration is used by the Stringlist class to determine how duplicate entries are handled when the list is sorted.
Values
Name | Value | Description |
---|---|---|
dupIgnore | 0 | Ignore duplicate entries. New duplicates are not added to the list. |
dupAccept | 1 | Accept duplicate entries. Duplicates are allowed in the list. |
dupError | 2 | Raise an error if a duplicate entry is added. |