DuplicatesType

From Cheat Engine
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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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.

See also[edit]