TStringList.Duplicates

Describes the behaviour of a sorted list with respect to duplicate strings.

Declaration

Source position: classesh.inc line 866

public Property
  Duplicates : TDuplicates;

Description

Duplicates describes what to do in case a duplicate value is added to the list:

| dupIgnore | Duplicate values will not be added to the list, but no error will be triggered. | | dupError | If an attempt is made to add a duplicate value to the list, an EStringListError exception is raised. | | dupAccept | Duplicate values can be added to the list. |

If the stringlist is not sorted, the Duplicates setting is ignored.

See also

Name Description
TDuplicates Type to describe what to do with duplicate values in a TStringlist .