TStringList = class(TStrings) property Duplicates: Integer read GetDuplicates write SetDuplicates; function Find(S: String; var Index: Integer): Boolean; function GetDuplicates: Integer; function GetSorted: Boolean; procedure SetDuplicates(Value: Integer); procedure SetSorted(Value: Boolean); procedure Sort; property Sorted: Boolean read GetSorted write SetSorted; end;Description
A wrapper for the Delphi class TStringList. See Delphi help for more information.
property Duplicates: Integer read GetDuplicates write SetDuplicates;Description
function Find(S: String; var Index: Integer): Boolean;Description
function GetDuplicates: Integer;Description
function GetSorted: Boolean;Description
procedure SetDuplicates(Value: Integer);Description
procedure SetSorted(Value: Boolean);Description
procedure Sort;Description
property Sorted: Boolean read GetSorted write SetSorted;Description