Difference between revisions of "DuplicatesType"
Jump to navigation
Jump to search
(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...") |
(No difference)
|
Latest revision as of 18:31, 11 July 2025
The DuplicatesType enumeration is used by the Stringlist class to determine how duplicate entries are handled when the list is sorted.
Values[edit]
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. |